-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitmapgenerator.cpp
188 lines (158 loc) · 4.22 KB
/
bitmapgenerator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#include <SFML/Graphics.hpp>
#include <iostream>
#include <fstream>
#include <math.h>
#include <array>
#include <sstream>
using namespace sf;
using namespace std;
const int X_TILES = 8;
const int Y_TILES = 8;
const int WIDTH = 400;
const int HEIGHT = 400;
const Vector2f tileSize(WIDTH/X_TILES, HEIGHT/Y_TILES);
const Color gridColor(255, 255, 255, 80);
// state vars
RectangleShape rect(tileSize);
RenderWindow win(VideoMode(WIDTH, HEIGHT), "win", Style::Titlebar);
array<array<bool, X_TILES>, Y_TILES> selection;
vector<array<uint8_t, Y_TILES>> output;
char current = '!';
Font font;
void fill()
{
for (int y = 0; y < selection.size(); ++y)
for (int x = 0; x < selection[y].size(); ++x)
selection[y][x] = false;
}
void processMouse(bool left, Vector2i pos)
{
if (pos.x >= 0 && pos.y >= 0 && pos.x < WIDTH && pos.y < HEIGHT)
{
int x = floor(pos.x/tileSize.x);
int y = floor(pos.y/tileSize.y);
selection[y][x] = left;
}
}
array<uint8_t, Y_TILES> getVal()
{
array<uint8_t, Y_TILES> out;
for (int y = 0; y < out.size(); ++y)
{
out[Y_TILES-y-1] = 0;
for (int x = 0; x < X_TILES; ++x)
if (selection[y][x])
out[Y_TILES-y-1] += pow(2, x);
}
return out;
}
void draw()
{
RectangleShape lineH(Vector2f(WIDTH, 2));
RectangleShape lineV(Vector2f(2, HEIGHT));
lineH.setFillColor(gridColor);
lineV.setFillColor(gridColor);
for (int y = 0; y < Y_TILES; ++y)
{
// grid lines
if (y > 0)
{
lineH.setPosition(Vector2f(0, y * tileSize.x - 1));
lineV.setPosition(Vector2f(y * tileSize.y - 1, 0));
win.draw(lineH);
win.draw(lineV);
}
// tiles
for (int x = 0; x < X_TILES; ++x)
if (selection[y][x])
{
rect.setPosition(Vector2f(x*tileSize.x, y*tileSize.y));
win.draw(rect);
}
}
// draw char
Text t;
t.setFont(font);
t.setString(current);
t.setCharacterSize(24);
t.setPosition(10, 10);
win.draw(t);
}
string toHex(uint8_t val)
{
stringstream ss;
ss << hex << unsigned(val);
string hex = ss.str();
if (hex.size() == 1)
return "0x0"+hex;
else
return "0x"+hex;
}
void writeToFile()
{
ofstream File("output.txt");
File << "unsigned char bitmap[" << (output.size()+1) << "][" << Y_TILES << "] = {" << endl;
// hardcode space
File << " {0x00";
for (int i = 1; i < Y_TILES; ++i)
File << ", 0x00";
File << "}," << endl;
// rest of characters
for (int i = 0; i < output.size(); ++i)
{
File << " {" << toHex(output[i][0]);
for (int n = 1; n < Y_TILES; ++n)
File << ", " << toHex(output[i][n]);
File << "}," << endl;
}
File << "};" << endl;
File.close();
}
int main()
{
Event event;
if (!font.loadFromFile("/usr/share/fonts/CascadiaCode.ttf"))
{
printf("Error loading font!");
return -1;
}
fill();
rect.setOutlineThickness(0);
rect.setFillColor(Color::White);
while (win.isOpen())
{
while (win.pollEvent(event))
{
if (event.type == Event::KeyPressed)
{
int code = event.key.code;
if (code == Keyboard::Enter)
{
output.push_back(getVal());
++current;
fill();
}
else if (code == Keyboard::S && event.key.control)
{
writeToFile();
return 0;
}
else if (code == Keyboard::Z && event.key.control)
{
fill();
--current;
output.pop_back();
}
}
else if (event.type == Event::Closed)
win.close();
}
if (Mouse::isButtonPressed(Mouse::Left))
processMouse(true, Mouse::getPosition(win));
if (Mouse::isButtonPressed(Mouse::Right))
processMouse(false, Mouse::getPosition(win));
win.clear();
draw();
win.display();
}
}