test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

Committer:
th_mbed
Date:
Mon Dec 12 10:19:12 2016 +0000
Revision:
23:33d7efd62537
Parent:
14:5da230069776
add converter

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pypy_o8o 14:5da230069776 1 #ifndef integrate_H
pypy_o8o 14:5da230069776 2 #define integrate_H
pypy_o8o 14:5da230069776 3 #include "C12832_lcd.h"
pypy_o8o 14:5da230069776 4 #include "models.h"
pypy_o8o 14:5da230069776 5
pypy_o8o 14:5da230069776 6
pypy_o8o 14:5da230069776 7 class GraphicBuilder
pypy_o8o 14:5da230069776 8 {
pypy_o8o 14:5da230069776 9 private:
pypy_o8o 14:5da230069776 10 point pe;
pypy_o8o 14:5da230069776 11 point bu;
pypy_o8o 14:5da230069776 12 point st[];
pypy_o8o 14:5da230069776 13 Bitmap bitmap_all;
pypy_o8o 14:5da230069776 14 // char map[];
pypy_o8o 14:5da230069776 15 public:
pypy_o8o 14:5da230069776 16 Bitmap integrateBitmap(point pe, point bu, point st[]);
pypy_o8o 14:5da230069776 17 void init();
pypy_o8o 14:5da230069776 18 // char map[];
pypy_o8o 14:5da230069776 19 };
pypy_o8o 14:5da230069776 20
pypy_o8o 14:5da230069776 21 static char map[] = {
pypy_o8o 14:5da230069776 22 };
pypy_o8o 14:5da230069776 23
pypy_o8o 14:5da230069776 24 Bitmap bitmap_all = {
pypy_o8o 14:5da230069776 25 LCD_X,
pypy_o8o 14:5da230069776 26 LCD_Y,
pypy_o8o 14:5da230069776 27 LCD_X/8,
pypy_o8o 14:5da230069776 28 map,
pypy_o8o 14:5da230069776 29 };
pypy_o8o 14:5da230069776 30
pypy_o8o 14:5da230069776 31 #endif