-
Notifications
You must be signed in to change notification settings - Fork 0
/
pikachu.c
503 lines (495 loc) · 17.7 KB
/
pikachu.c
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
#include <mlx.h>
typedef struct s_data {
void *img;
char *addr;
int bits_per_pixel;
int line_length;
int endian;
} t_data;
void my_mlx_put_pixel(t_data *data, int x, int y, int color)
{
char *dst;
y *= 6;
x *= 6;
y += 4;
x += 4;
dst = data->addr + (y * data->line_length + x * (data->bits_per_pixel / 8));
*(unsigned int *)dst = color;
}
void print_bg(t_data *data,int x, int y)
{
while(y < 29)
{
while(x <= 44)
{
my_mlx_put_pixel(data, x, y , 0xffffff);
x++;
}
x = 0;
y++;
}
}
int main()
{
void *mlx;
t_data img;
void *mlx_win;
int i;
int j;
unsigned int white;
unsigned int black;
unsigned int yellow;
unsigned int red;
unsigned int pink;
black = 0x000000;
white = 0xffffff;
yellow = 0xeef10a;
red = 0xfc0000;
pink = 0xe955d5;
mlx = mlx_init();
mlx_win = mlx_new_window(mlx,270, 180, "pika!");
img.img = mlx_new_image(mlx, 270, 180);
img.addr = mlx_get_data_addr(img.img, &img.bits_per_pixel,
&img.line_length, &img.endian);
i = 0;
j = 0;
print_bg(&img,i,j);
my_mlx_put_pixel(&img, 9, 3,black);
my_mlx_put_pixel(&img, 10, 3,black);
my_mlx_put_pixel(&img, 9, 4,black);
my_mlx_put_pixel(&img, 9, 5,black);
my_mlx_put_pixel(&img, 9, 6,black);
my_mlx_put_pixel(&img, 10, 4,black);
my_mlx_put_pixel(&img, 10, 5,black);
my_mlx_put_pixel(&img, 10, 6,black);
my_mlx_put_pixel(&img, 10, 7,black);
my_mlx_put_pixel(&img, 10, 8,black);
my_mlx_put_pixel(&img, 11, 4,black);
my_mlx_put_pixel(&img, 11, 5,black);
my_mlx_put_pixel(&img, 11, 6,black);
my_mlx_put_pixel(&img, 11, 7,black);
my_mlx_put_pixel(&img, 11, 8,black);
my_mlx_put_pixel(&img, 11, 9,black);
my_mlx_put_pixel(&img, 11, 10,black);
my_mlx_put_pixel(&img, 12, 4,black);
my_mlx_put_pixel(&img, 12, 11,black);
my_mlx_put_pixel(&img, 13, 5,black);
my_mlx_put_pixel(&img, 13, 12,black);
my_mlx_put_pixel(&img, 14, 6,black);
my_mlx_put_pixel(&img, 15, 6,black);
my_mlx_put_pixel(&img, 14, 13,black);
my_mlx_put_pixel(&img, 14, 14,black);
my_mlx_put_pixel(&img, 15, 12,black);
my_mlx_put_pixel(&img, 16, 7,black);
my_mlx_put_pixel(&img, 13, 15,black);
my_mlx_put_pixel(&img, 13, 16,black);
my_mlx_put_pixel(&img, 13, 17,black);
my_mlx_put_pixel(&img, 13, 18,black);
my_mlx_put_pixel(&img, 12, 19,black);
my_mlx_put_pixel(&img, 12, 20,black);
my_mlx_put_pixel(&img, 12, 21,black);
my_mlx_put_pixel(&img, 17, 8,black);
my_mlx_put_pixel(&img, 18, 8,black);
my_mlx_put_pixel(&img, 19, 9,black);
my_mlx_put_pixel(&img, 20, 9,black);
my_mlx_put_pixel(&img, 21, 8,black);
my_mlx_put_pixel(&img, 22, 8,black);
my_mlx_put_pixel(&img, 23, 8,black);
my_mlx_put_pixel(&img, 24, 8,black);
my_mlx_put_pixel(&img, 25, 9,black);
my_mlx_put_pixel(&img, 26, 9,black);
my_mlx_put_pixel(&img, 27, 8,black);
my_mlx_put_pixel(&img, 28, 8,black);
my_mlx_put_pixel(&img, 29, 7,black);
my_mlx_put_pixel(&img, 30, 6,black);
my_mlx_put_pixel(&img, 31, 6,black);
my_mlx_put_pixel(&img, 32, 5,black);
my_mlx_put_pixel(&img, 33, 4,black);
my_mlx_put_pixel(&img, 34, 4,black);
my_mlx_put_pixel(&img, 35, 3,black);
my_mlx_put_pixel(&img, 34, 5,black);
my_mlx_put_pixel(&img, 34, 6,black);
my_mlx_put_pixel(&img, 34, 7,black);
my_mlx_put_pixel(&img, 34, 8,black);
my_mlx_put_pixel(&img, 34, 9,black);
my_mlx_put_pixel(&img, 34, 10,black);
my_mlx_put_pixel(&img, 35, 4,black);
my_mlx_put_pixel(&img, 35, 5,black);
my_mlx_put_pixel(&img, 35, 6,black);
my_mlx_put_pixel(&img, 35, 8,black);
my_mlx_put_pixel(&img, 36, 3,black);
my_mlx_put_pixel(&img, 36, 4,black);
my_mlx_put_pixel(&img, 36, 6,black);
my_mlx_put_pixel(&img, 33, 11,black);
my_mlx_put_pixel(&img, 32, 12,black);
my_mlx_put_pixel(&img, 31, 13,black);
my_mlx_put_pixel(&img, 31, 14,black);
my_mlx_put_pixel(&img, 30, 12,black);
my_mlx_put_pixel(&img, 32, 15,black);
my_mlx_put_pixel(&img, 32, 16,black);
my_mlx_put_pixel(&img, 32, 17,black);
my_mlx_put_pixel(&img, 32, 18,black);
my_mlx_put_pixel(&img, 33, 19,black);
my_mlx_put_pixel(&img, 33, 20,black);
my_mlx_put_pixel(&img, 33, 21,black);
my_mlx_put_pixel(&img, 32, 22,black);
my_mlx_put_pixel(&img, 31, 23,black);
my_mlx_put_pixel(&img, 30, 24,black);
my_mlx_put_pixel(&img, 29, 24,black);
my_mlx_put_pixel(&img, 28, 25,black);
my_mlx_put_pixel(&img, 27, 25,black);
my_mlx_put_pixel(&img, 26, 25,black);
my_mlx_put_pixel(&img, 25, 26,black);
my_mlx_put_pixel(&img, 24, 26,black);
my_mlx_put_pixel(&img, 23, 26,black);
my_mlx_put_pixel(&img, 22, 26,black);
my_mlx_put_pixel(&img, 21, 26,black);
my_mlx_put_pixel(&img, 20, 26,black);
my_mlx_put_pixel(&img, 19, 25,black);
my_mlx_put_pixel(&img, 18, 25,black);
my_mlx_put_pixel(&img, 17, 25,black);
my_mlx_put_pixel(&img, 16, 24,black);
my_mlx_put_pixel(&img, 15, 24,black);
my_mlx_put_pixel(&img, 14, 23,black);
my_mlx_put_pixel(&img, 13, 22,black);
my_mlx_put_pixel(&img, 12, 21,black);
my_mlx_put_pixel(&img, 12, 20,black);
my_mlx_put_pixel(&img, 12, 19,black);
my_mlx_put_pixel(&img, 12, 18,black);
my_mlx_put_pixel(&img, 12, 5,yellow);
my_mlx_put_pixel(&img, 12, 6,yellow);
my_mlx_put_pixel(&img, 12, 7,yellow);
my_mlx_put_pixel(&img, 12, 8,yellow);
my_mlx_put_pixel(&img, 12, 9,yellow);
my_mlx_put_pixel(&img, 12, 10,yellow);
my_mlx_put_pixel(&img, 13, 6,yellow);
my_mlx_put_pixel(&img, 13, 7,yellow);
my_mlx_put_pixel(&img, 13, 8,yellow);
my_mlx_put_pixel(&img, 13, 9,yellow);
my_mlx_put_pixel(&img, 13, 10,yellow);
my_mlx_put_pixel(&img, 13, 11,yellow);
my_mlx_put_pixel(&img, 14, 7,yellow);
my_mlx_put_pixel(&img, 14, 8,yellow);
my_mlx_put_pixel(&img, 14, 9,yellow);
my_mlx_put_pixel(&img, 14, 10,yellow);
my_mlx_put_pixel(&img, 14, 11,yellow);
my_mlx_put_pixel(&img, 14, 12,yellow);
my_mlx_put_pixel(&img, 15, 7,yellow);
my_mlx_put_pixel(&img, 15, 8,yellow);
my_mlx_put_pixel(&img, 15, 9,yellow);
my_mlx_put_pixel(&img, 15, 10,yellow);
my_mlx_put_pixel(&img, 15, 11,yellow);
my_mlx_put_pixel(&img, 16, 8,yellow);
my_mlx_put_pixel(&img, 16, 9,yellow);
my_mlx_put_pixel(&img, 16, 10,yellow);
my_mlx_put_pixel(&img, 16, 11,yellow);
my_mlx_put_pixel(&img, 16, 12,yellow);
my_mlx_put_pixel(&img, 16, 13,yellow);
my_mlx_put_pixel(&img, 16, 14,yellow);
my_mlx_put_pixel(&img, 16, 15,yellow);
my_mlx_put_pixel(&img, 16, 18,yellow);
my_mlx_put_pixel(&img, 16, 23,yellow);
my_mlx_put_pixel(&img, 15, 13,yellow);
my_mlx_put_pixel(&img, 15, 14,yellow);
my_mlx_put_pixel(&img, 15, 15,yellow);
my_mlx_put_pixel(&img, 15, 16,yellow);
my_mlx_put_pixel(&img, 15, 17,yellow);
my_mlx_put_pixel(&img, 15, 18,yellow);
my_mlx_put_pixel(&img, 15, 23,yellow);
my_mlx_put_pixel(&img, 14, 15,yellow);
my_mlx_put_pixel(&img, 14, 16,yellow);
my_mlx_put_pixel(&img, 14, 17,yellow);
my_mlx_put_pixel(&img, 14, 18,yellow);
my_mlx_put_pixel(&img, 13, 19,yellow);
my_mlx_put_pixel(&img, 13, 20,yellow);
my_mlx_put_pixel(&img, 13, 21,yellow);
my_mlx_put_pixel(&img, 17, 9,yellow);
my_mlx_put_pixel(&img, 17, 10,yellow);
my_mlx_put_pixel(&img, 17, 11,yellow);
my_mlx_put_pixel(&img, 17, 12,yellow);
my_mlx_put_pixel(&img, 17, 13,yellow);
my_mlx_put_pixel(&img, 17, 14,yellow);
my_mlx_put_pixel(&img, 17, 19,yellow);
my_mlx_put_pixel(&img, 17, 22,yellow);
my_mlx_put_pixel(&img, 17, 23,yellow);
my_mlx_put_pixel(&img, 17, 24,yellow);
my_mlx_put_pixel(&img, 18, 9,yellow);
my_mlx_put_pixel(&img, 18, 10,yellow);
my_mlx_put_pixel(&img, 18, 11,yellow);
my_mlx_put_pixel(&img, 18, 12,yellow);
my_mlx_put_pixel(&img, 18, 13,yellow);
my_mlx_put_pixel(&img, 18, 14,yellow);
my_mlx_put_pixel(&img, 18, 19,yellow);
my_mlx_put_pixel(&img, 18, 20,yellow);
my_mlx_put_pixel(&img, 18, 21,yellow);
my_mlx_put_pixel(&img, 18, 22,yellow);
my_mlx_put_pixel(&img, 18, 23,yellow);
my_mlx_put_pixel(&img, 18, 24,yellow);
my_mlx_put_pixel(&img, 19, 10,yellow);
my_mlx_put_pixel(&img, 19, 11,yellow);
my_mlx_put_pixel(&img, 19, 12,yellow);
my_mlx_put_pixel(&img, 19, 13,yellow);
my_mlx_put_pixel(&img, 19, 14,yellow);
my_mlx_put_pixel(&img, 19, 15,yellow);
my_mlx_put_pixel(&img, 19, 18,yellow);
my_mlx_put_pixel(&img, 19, 19,yellow);
my_mlx_put_pixel(&img, 19, 20,yellow);
my_mlx_put_pixel(&img, 19, 21,yellow);
my_mlx_put_pixel(&img, 19, 22,yellow);
my_mlx_put_pixel(&img, 19, 23,yellow);
my_mlx_put_pixel(&img, 19, 24,yellow);
my_mlx_put_pixel(&img, 20, 10,yellow);
my_mlx_put_pixel(&img, 20, 11,yellow);
my_mlx_put_pixel(&img, 20, 12,yellow);
my_mlx_put_pixel(&img, 20, 13,yellow);
my_mlx_put_pixel(&img, 20, 14,yellow);
my_mlx_put_pixel(&img, 20, 15,yellow);
my_mlx_put_pixel(&img, 20, 16,yellow);
my_mlx_put_pixel(&img, 20, 17,yellow);
my_mlx_put_pixel(&img, 20, 18,yellow);
my_mlx_put_pixel(&img, 20, 19,yellow);
my_mlx_put_pixel(&img, 20, 21,yellow);
my_mlx_put_pixel(&img, 20, 22,yellow);
my_mlx_put_pixel(&img, 20, 23,yellow);
my_mlx_put_pixel(&img, 20, 24,yellow);
my_mlx_put_pixel(&img, 21, 9,yellow);
my_mlx_put_pixel(&img, 21, 10,yellow);
my_mlx_put_pixel(&img, 21, 11,yellow);
my_mlx_put_pixel(&img, 21, 12,yellow);
my_mlx_put_pixel(&img, 21, 13,yellow);
my_mlx_put_pixel(&img, 21, 14,yellow);
my_mlx_put_pixel(&img, 21, 15,yellow);
my_mlx_put_pixel(&img, 21, 16,yellow);
my_mlx_put_pixel(&img, 21, 17,yellow);
my_mlx_put_pixel(&img, 21, 18,yellow);
my_mlx_put_pixel(&img, 21, 19,yellow);
my_mlx_put_pixel(&img, 21, 24,yellow);
my_mlx_put_pixel(&img, 21, 25,yellow);
my_mlx_put_pixel(&img, 22, 9,yellow);
my_mlx_put_pixel(&img, 22, 10,yellow);
my_mlx_put_pixel(&img, 22, 11,yellow);
my_mlx_put_pixel(&img, 22, 12,yellow);
my_mlx_put_pixel(&img, 22, 13,yellow);
my_mlx_put_pixel(&img, 22, 14,yellow);
my_mlx_put_pixel(&img, 22, 15,yellow);
my_mlx_put_pixel(&img, 22, 16,yellow);
my_mlx_put_pixel(&img, 22, 17,yellow);
my_mlx_put_pixel(&img, 22, 19,yellow);
my_mlx_put_pixel(&img, 22, 25,yellow);
my_mlx_put_pixel(&img, 23, 9,yellow);
my_mlx_put_pixel(&img, 23, 10,yellow);
my_mlx_put_pixel(&img, 23, 11,yellow);
my_mlx_put_pixel(&img, 23, 12,yellow);
my_mlx_put_pixel(&img, 23, 13,yellow);
my_mlx_put_pixel(&img, 23, 14,yellow);
my_mlx_put_pixel(&img, 23, 15,yellow);
my_mlx_put_pixel(&img, 23, 16,yellow);
my_mlx_put_pixel(&img, 23, 17,yellow);
my_mlx_put_pixel(&img, 23, 19,yellow);
my_mlx_put_pixel(&img, 23, 25,yellow);
my_mlx_put_pixel(&img, 24, 9,yellow);
my_mlx_put_pixel(&img, 24, 10,yellow);
my_mlx_put_pixel(&img, 24, 11,yellow);
my_mlx_put_pixel(&img, 24, 12,yellow);
my_mlx_put_pixel(&img, 24, 13,yellow);
my_mlx_put_pixel(&img, 24, 14,yellow);
my_mlx_put_pixel(&img, 24, 15,yellow);
my_mlx_put_pixel(&img, 24, 16,yellow);
my_mlx_put_pixel(&img, 24, 17,yellow);
my_mlx_put_pixel(&img, 24, 18,yellow);
my_mlx_put_pixel(&img, 24, 19,yellow);
my_mlx_put_pixel(&img, 24, 20,yellow);
my_mlx_put_pixel(&img, 24, 24,yellow);
my_mlx_put_pixel(&img, 24, 25,yellow);
my_mlx_put_pixel(&img, 25, 10,yellow);
my_mlx_put_pixel(&img, 25, 11,yellow);
my_mlx_put_pixel(&img, 25, 12,yellow);
my_mlx_put_pixel(&img, 25, 13,yellow);
my_mlx_put_pixel(&img, 25, 14,yellow);
my_mlx_put_pixel(&img, 25, 15,yellow);
my_mlx_put_pixel(&img, 25, 16,yellow);
my_mlx_put_pixel(&img, 25, 17,yellow);
my_mlx_put_pixel(&img, 25, 18,yellow);
my_mlx_put_pixel(&img, 25, 19,yellow);
my_mlx_put_pixel(&img, 25, 21,yellow);
my_mlx_put_pixel(&img, 25, 22,yellow);
my_mlx_put_pixel(&img, 25, 23,yellow);
my_mlx_put_pixel(&img, 25, 24,yellow);
my_mlx_put_pixel(&img, 25, 25,yellow);
my_mlx_put_pixel(&img, 26, 10,yellow);
my_mlx_put_pixel(&img, 26, 11,yellow);
my_mlx_put_pixel(&img, 26, 12,yellow);
my_mlx_put_pixel(&img, 26, 12,yellow);
my_mlx_put_pixel(&img, 26, 13,yellow);
my_mlx_put_pixel(&img, 26, 14,yellow);
my_mlx_put_pixel(&img, 26, 15,yellow);
my_mlx_put_pixel(&img, 26, 18,yellow);
my_mlx_put_pixel(&img, 26, 19,yellow);
my_mlx_put_pixel(&img, 26, 20,yellow);
my_mlx_put_pixel(&img, 26, 21,yellow);
my_mlx_put_pixel(&img, 26, 22,yellow);
my_mlx_put_pixel(&img, 26, 23,yellow);
my_mlx_put_pixel(&img, 26, 24,yellow);
my_mlx_put_pixel(&img, 27, 9,yellow);
my_mlx_put_pixel(&img, 27, 10,yellow);
my_mlx_put_pixel(&img, 27, 11,yellow);
my_mlx_put_pixel(&img, 27, 12,yellow);
my_mlx_put_pixel(&img, 27, 13,yellow);
my_mlx_put_pixel(&img, 27, 14,yellow);
my_mlx_put_pixel(&img, 27, 19,yellow);
my_mlx_put_pixel(&img, 27, 20,yellow);
my_mlx_put_pixel(&img, 27, 21,yellow);
my_mlx_put_pixel(&img, 27, 22,yellow);
my_mlx_put_pixel(&img, 27, 23,yellow);
my_mlx_put_pixel(&img, 27, 24,yellow);
my_mlx_put_pixel(&img, 28, 9,yellow);
my_mlx_put_pixel(&img, 28, 10,yellow);
my_mlx_put_pixel(&img, 28, 11,yellow);
my_mlx_put_pixel(&img, 28, 12,yellow);
my_mlx_put_pixel(&img, 28, 13,yellow);
my_mlx_put_pixel(&img, 28, 14,yellow);
my_mlx_put_pixel(&img, 28, 19,yellow);
my_mlx_put_pixel(&img, 28, 22,yellow);
my_mlx_put_pixel(&img, 28, 23,yellow);
my_mlx_put_pixel(&img, 28, 24,yellow);
my_mlx_put_pixel(&img, 29, 8,yellow);
my_mlx_put_pixel(&img, 29, 9,yellow);
my_mlx_put_pixel(&img, 29, 10,yellow);
my_mlx_put_pixel(&img, 29, 11,yellow);
my_mlx_put_pixel(&img, 29, 12,yellow);
my_mlx_put_pixel(&img, 29, 13,yellow);
my_mlx_put_pixel(&img, 29, 14,yellow);
my_mlx_put_pixel(&img, 29, 15,yellow);
my_mlx_put_pixel(&img, 29, 18,yellow);
my_mlx_put_pixel(&img, 29, 23,yellow);
my_mlx_put_pixel(&img, 30, 7,yellow);
my_mlx_put_pixel(&img, 30, 8,yellow);
my_mlx_put_pixel(&img, 30, 9,yellow);
my_mlx_put_pixel(&img, 30, 10,yellow);
my_mlx_put_pixel(&img, 30, 11,yellow);
my_mlx_put_pixel(&img, 30, 13,yellow);
my_mlx_put_pixel(&img, 30, 14,yellow);
my_mlx_put_pixel(&img, 30, 15,yellow);
my_mlx_put_pixel(&img, 30, 16,yellow);
my_mlx_put_pixel(&img, 30, 17,yellow);
my_mlx_put_pixel(&img, 30, 18,yellow);
my_mlx_put_pixel(&img, 30, 23,yellow);
my_mlx_put_pixel(&img, 31, 8,yellow);
my_mlx_put_pixel(&img, 31, 9,yellow);
my_mlx_put_pixel(&img, 31, 10,yellow);
my_mlx_put_pixel(&img, 31, 11,yellow);
my_mlx_put_pixel(&img, 31, 12,yellow);
my_mlx_put_pixel(&img, 31, 15,yellow);
my_mlx_put_pixel(&img, 31, 16,yellow);
my_mlx_put_pixel(&img, 31, 17,yellow);
my_mlx_put_pixel(&img, 31, 18,yellow);
my_mlx_put_pixel(&img, 31, 19,yellow);
my_mlx_put_pixel(&img, 31, 22,yellow);
my_mlx_put_pixel(&img, 32, 6,yellow);
my_mlx_put_pixel(&img, 32, 7,yellow);
my_mlx_put_pixel(&img, 32, 8,yellow);
my_mlx_put_pixel(&img, 32, 9,yellow);
my_mlx_put_pixel(&img, 32, 10,yellow);
my_mlx_put_pixel(&img, 32, 11,yellow);
my_mlx_put_pixel(&img, 32, 19,yellow);
my_mlx_put_pixel(&img, 32, 20,yellow);
my_mlx_put_pixel(&img, 32, 21,yellow);
my_mlx_put_pixel(&img, 33, 5,yellow);
my_mlx_put_pixel(&img, 33, 6,yellow);
my_mlx_put_pixel(&img, 33, 7,yellow);
my_mlx_put_pixel(&img, 33, 8,yellow);
my_mlx_put_pixel(&img, 33, 9,yellow);
my_mlx_put_pixel(&img, 33, 10,yellow);
my_mlx_put_pixel(&img, 33, 11,yellow);
my_mlx_put_pixel(&img, 15, 19,red);
my_mlx_put_pixel(&img, 16, 19,red);
my_mlx_put_pixel(&img, 14, 20,red);
my_mlx_put_pixel(&img, 15, 20,red);
my_mlx_put_pixel(&img, 16, 20,red);
my_mlx_put_pixel(&img, 17, 20,red);
my_mlx_put_pixel(&img, 14, 21,red);
my_mlx_put_pixel(&img, 15, 21,red);
my_mlx_put_pixel(&img, 16, 21,red);
my_mlx_put_pixel(&img, 17, 21,red);
my_mlx_put_pixel(&img, 15, 22,red);
my_mlx_put_pixel(&img, 16, 22,red);
my_mlx_put_pixel(&img, 22, 22,red);
my_mlx_put_pixel(&img, 23, 22,red);
my_mlx_put_pixel(&img, 22, 23,red);
my_mlx_put_pixel(&img, 23, 23,red);
my_mlx_put_pixel(&img, 29, 19,red);
my_mlx_put_pixel(&img, 30, 19,red);
my_mlx_put_pixel(&img, 28, 20,red);
my_mlx_put_pixel(&img, 29, 20,red);
my_mlx_put_pixel(&img, 30, 20,red);
my_mlx_put_pixel(&img, 31, 20,red);
my_mlx_put_pixel(&img, 28, 21,red);
my_mlx_put_pixel(&img, 29, 21,red);
my_mlx_put_pixel(&img, 30, 21,red);
my_mlx_put_pixel(&img, 31, 21,red);
my_mlx_put_pixel(&img, 29, 22,red);
my_mlx_put_pixel(&img, 30, 22,red);
my_mlx_put_pixel(&img, 17, 15,black);
my_mlx_put_pixel(&img, 18, 15,black);
my_mlx_put_pixel(&img, 16, 16,black);
my_mlx_put_pixel(&img, 18, 16,black);
my_mlx_put_pixel(&img, 19, 16,black);
my_mlx_put_pixel(&img, 16, 17,black);
my_mlx_put_pixel(&img, 17, 17,black);
my_mlx_put_pixel(&img, 18, 17,black);
my_mlx_put_pixel(&img, 19, 17,black);
my_mlx_put_pixel(&img, 17, 18,black);
my_mlx_put_pixel(&img, 18, 18,black);
my_mlx_put_pixel(&img, 22, 18,black);
my_mlx_put_pixel(&img, 23, 18,black);
my_mlx_put_pixel(&img, 22, 20,black);
my_mlx_put_pixel(&img, 23, 20,black);
my_mlx_put_pixel(&img, 20, 20,black);
my_mlx_put_pixel(&img, 25, 20,black);
my_mlx_put_pixel(&img, 21, 21,black);
my_mlx_put_pixel(&img, 22, 21,black);
my_mlx_put_pixel(&img, 23, 21,black);
my_mlx_put_pixel(&img, 24, 21,black);
my_mlx_put_pixel(&img, 21, 22,black);
my_mlx_put_pixel(&img, 24, 22,black);
my_mlx_put_pixel(&img, 21, 23,black);
my_mlx_put_pixel(&img, 21, 24,black);
my_mlx_put_pixel(&img, 24, 23,black);
my_mlx_put_pixel(&img, 24, 24,black);
my_mlx_put_pixel(&img, 22, 24,black);
my_mlx_put_pixel(&img, 23, 24,black);
my_mlx_put_pixel(&img, 27, 15,black);
my_mlx_put_pixel(&img, 28, 15,black);
my_mlx_put_pixel(&img, 26, 16,black);
my_mlx_put_pixel(&img, 27, 16,black);
my_mlx_put_pixel(&img, 29, 16,black);
my_mlx_put_pixel(&img, 26, 17,black);
my_mlx_put_pixel(&img, 27, 17,black);
my_mlx_put_pixel(&img, 28, 17,black);
my_mlx_put_pixel(&img, 29, 17,black);
my_mlx_put_pixel(&img, 27, 18,black);
my_mlx_put_pixel(&img, 28, 18,black);
my_mlx_put_pixel(&img, 33, 11,black);
my_mlx_put_pixel(&img, 34, 10,black);
my_mlx_put_pixel(&img, 32, 12,black);
my_mlx_put_pixel(&img, 35, 6,pink);
my_mlx_put_pixel(&img, 36, 6,pink);
my_mlx_put_pixel(&img, 35, 7,pink);
my_mlx_put_pixel(&img, 36, 7,pink);
my_mlx_put_pixel(&img, 35, 8,pink);
my_mlx_put_pixel(&img, 36, 8,pink);
my_mlx_put_pixel(&img, 36, 9,pink);
my_mlx_put_pixel(&img, 37, 9,pink);
my_mlx_put_pixel(&img, 38, 9,pink);
my_mlx_put_pixel(&img, 37, 8,pink);
my_mlx_put_pixel(&img, 38, 8,pink);
my_mlx_put_pixel(&img, 39, 8,pink);
my_mlx_put_pixel(&img, 37, 7,pink);
my_mlx_put_pixel(&img, 38, 7,pink);
my_mlx_put_pixel(&img, 39, 7,pink);
my_mlx_put_pixel(&img, 38, 6,pink);
my_mlx_put_pixel(&img, 39, 6,pink);
my_mlx_put_pixel(&img, 37, 10,pink);
mlx_put_image_to_window(mlx, mlx_win, img.img, 0,0);
mlx_loop(mlx);
}