Przeglądaj źródła

* TODO: New stuff to do.

* src/io.c: left and right arrow keys were swapped.
tags/v0.99.beta14
Sam Hocevar sam 22 lat temu
rodzic
commit
72b545abce
2 zmienionych plików z 15 dodań i 7 usunięć
  1. +13
    -5
      TODO
  2. +2
    -2
      src/io.c

+ 13
- 5
TODO Wyświetl plik

@@ -1,13 +1,21 @@
$Id$ $Id$


o Sprite library

o Clip graphics

o Fix the thin ellipse rendering
Low level stuff


o Write a Linux console output for the drawing library o Write a Linux console output for the drawing library
See also BUGS as to why it's very slow in console mode See also BUGS as to why it's very slow in console mode


o Better keyboard driver in an X terminal, see
http://groups.yahoo.com/group/zepp/message/381

o DONE 12 Nov 2003: Port to conio.h o DONE 12 Nov 2003: Port to conio.h



High level stuff

o Sprite library

o Clip all graphics primitives

o Fix the thin ellipse rendering


+ 2
- 2
src/io.c Wyświetl plik

@@ -89,8 +89,8 @@ int caca_get_event(void)
{ {
case 'A': return CACA_EVENT_KEY_PRESS | CACA_KEY_UP; case 'A': return CACA_EVENT_KEY_PRESS | CACA_KEY_UP;
case 'B': return CACA_EVENT_KEY_PRESS | CACA_KEY_DOWN; case 'B': return CACA_EVENT_KEY_PRESS | CACA_KEY_DOWN;
case 'C': return CACA_EVENT_KEY_PRESS | CACA_KEY_LEFT;
case 'D': return CACA_EVENT_KEY_PRESS | CACA_KEY_RIGHT;
case 'C': return CACA_EVENT_KEY_PRESS | CACA_KEY_RIGHT;
case 'D': return CACA_EVENT_KEY_PRESS | CACA_KEY_LEFT;
} }


key[3] = _read_key(); key[3] = _read_key();


Ładowanie…
Anuluj
Zapisz