| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- #include "u8g2.h"
- #include <stdio.h>
- #include <string.h>
- u8g2_t u8g2;
- /*
- Linear Congruential Generator (LCG)
- z = (a*z + c) % m;
- m = 256*256 (16 Bit)
-
- for period:
- a-1: dividable by 2
- a-1: multiple of 4
- c: not dividable by 2
-
- c = 17
- a-1 = 64 --> a = 65
- */
- uint16_t rndz = 127; // start value
- uint16_t lcg(void) {
- rndz = ((uint16_t)65*(uint16_t)rndz + (uint16_t)17);
- return rndz;
- }
- uint16_t get_counter_y_pos(uint16_t x)
- {
- #define ELEMENTS 7
- /*
- wolframalpha.com: plot ((0,0), (25, 10), (50,38), (80, 100), (100,128), (114, 137), (127, 128))
- */
- static const int16_t xa[ELEMENTS] = { 0, 25, 50, 80, 100, 114, 127 } ;
- static const int16_t ya[ELEMENTS] = { 0, 10, 38, 100 , 128, 137, 128};
- int i = 1;
- if ( x > xa[ELEMENTS-1] )
- return ya[ELEMENTS-1];
- while( xa[i] < x )
- i++;
- return ((x-xa[i-1]) * (ya[i]-ya[i-1])) / (xa[i]-xa[i-1]) + ya[i-1];
- }
- void draw_mech_counter(u8g2_t *u8g2, u8g2_uint_t x, u8g2_uint_t y, int16_t step, const char *prev, const char *next)
- {
- u8g2_uint_t h = u8g2_GetAscent(u8g2) - u8g2_GetDescent(u8g2);
- u8g2_uint_t shift = 0;
- if ( step >= 0 )
- {
- shift = (get_counter_y_pos(step)*h)/128;
- }
- y += shift;
- if ( prev[0] == '1' )
- u8g2_DrawStr(u8g2, x+4, y, prev);
- else
- u8g2_DrawStr(u8g2, x, y, prev);
- y -= h;
- if ( next[0] == '1' )
- u8g2_DrawStr(u8g2, x+4, y, next);
- else
- u8g2_DrawStr(u8g2, x, y, next);
- }
- void draw_4_counter(u8g2_t *u8g2, uint16_t rnd, u8g2_uint_t x, u8g2_uint_t dx, u8g2_uint_t y, uint8_t step, const char *prev, const char *next)
- {
- u8g2_uint_t ex = 3;
- u8g2_uint_t h = u8g2_GetAscent(u8g2);
- uint8_t i;
-
- char p[2] = "0";
- char n[2] = "0";
-
- u8g2_DrawFrame(u8g2, x-1, y-h-ex-1, 4*dx+3, h+2*ex+2);
- u8g2_SetClipWindow(u8g2, x, y-h-ex, x+4*dx, y+ex);
- for( i = 0; i < 4; i++ )
- {
- p[0] = prev[i];
- n[0] = next[i];
- draw_mech_counter(u8g2, x, y, step + (rnd & 31), p, n);
- rnd >>= 2;
- x += dx;
- }
-
- u8g2_SetMaxClipWindow(u8g2);
- }
- char prev_counter[] = " ";
- char next_counter[] = " ";
- uint16_t rnd_counter = 0;
- void init_counter(uint16_t value)
- {
- strcpy(prev_counter, next_counter);
- strcpy(next_counter, u8x8_u16toa(value, 4));
- rnd_counter = lcg();
- }
- void draw_counter(u8g2_t *u8g2, u8g2_uint_t x, u8g2_uint_t dx, u8g2_uint_t y, uint8_t step)
- {
- draw_4_counter(u8g2, rnd_counter, x, dx, y, step, prev_counter, next_counter);
- }
- int main(void)
- {
- int x, y;
- int k;
- int i;
- int step = 0;
- //uint16_t rnd;
- char prev[5];
- char next[5];
-
- u8g2_SetupBuffer_SDL_128x64_4(&u8g2, &u8g2_cb_r0);
- u8x8_InitDisplay(u8g2_GetU8x8(&u8g2));
- u8x8_SetPowerSave(u8g2_GetU8x8(&u8g2), 0);
-
- u8g2_SetFont(&u8g2, u8g2_font_helvB18_tn);
-
- strcpy(prev, u8x8_u16toa(lcg(), 4));
- strcpy(next, u8x8_u16toa(lcg(), 4));
-
- //rnd = lcg();
- init_counter(lcg());
-
- x = 2;
- y = 32;
-
-
- for(;;)
- {
- #ifdef U8G2_WITH_HVLINE_COUNT
- u8g2.hv_cnt = 0UL;
- #endif /* U8G2_WITH_HVLINE_COUNT */
-
- /*
- u8g2_ClearBuffer(&u8g2);
-
- u8g2_SetFontDirection(&u8g2, 0);
- u8g2_DrawStr(&u8g2, x, y, "ABC");
- u8g2_SetFontDirection(&u8g2, 1);
- u8g2_DrawStr(&u8g2, x, y, "abc");
- u8g2_SetFontDirection(&u8g2, 2);
- u8g2_DrawStr(&u8g2, x, y, "abc");
- u8g2_SetFontDirection(&u8g2, 3);
- u8g2_DrawStr(&u8g2, x, y, "abc");
-
- u8g2_SendBuffer(&u8g2);
- */
-
- u8g2_FirstPage(&u8g2);
- i = 0;
- do
- {
- u8g2_SetFont(&u8g2, u8g2_font_mystery_quest_32_tr);
- // u8g2_draw_counter(&u8g2, rnd, x, 16, y, step, prev, next);
- draw_counter(&u8g2, x, 16, y, step);
-
- u8g2_SetFont(&u8g2, u8g2_font_mystery_quest_24_tr);
- u8g2_DrawStr(&u8g2, x+74,y-2, "RPM");
-
- //u8g2_SetFont(&u8g2, u8g2_font_mystery_quest_32_tr);
- //u8g2_draw_mech_counter(&u8g2, x+48, y, step, "5","6");
-
- // u8g2_SetFont(&u8g2, u8g2_font_mystery_quest_32_tr);
- //u8g2_DrawStr(&u8g2, x,y+32, "3210");
- //u8g2_SetFont(&u8g2, u8g2_font_mystery_quest_24_tr);
- //u8g2_DrawStr(&u8g2, x+74,y+30, "mV");
-
- i++;
- } while( u8g2_NextPage(&u8g2) );
- #ifdef U8G2_WITH_HVLINE_COUNT
- printf("hv cnt: %ld\n", u8g2.hv_cnt);
- #endif /* U8G2_WITH_HVLINE_COUNT */
-
- do
- {
- k = u8g_sdl_get_key();
-
- } while( k < 0 );
-
- if ( k == 273 ) y -= 7;
- if ( k == 274 ) y += 7;
- if ( k == 276 ) x -= 7;
- if ( k == 275 ) x += 7;
-
- if ( k == 'e' ) y -= 1;
- if ( k == 'x' ) y += 1;
- if ( k == 's' ) x -= 1;
- if ( k == 'd' ) x += 1;
- if ( k == ' ' ) step += 3;
- if ( step > 160 )
- {
- init_counter(lcg());
- /*
- rnd = lcg();
- strcpy(prev, next);
- strcpy(next, u8x8_u16toa(lcg(), 4));
- */
- step = 0;
- }
-
- if ( k == 'q' ) break;
-
- //printf("%u\n", lcg());
-
- }
-
- //u8x8_Set8x8Font(u8g2_GetU8x8(&u8g2), bdf_font);
- //u8x8_Draw8x8String(u8g2_GetU8x8(&u8g2), 0, 0, "Hello World!");
-
-
-
-
-
-
- return 0;
- }
|