Kaynağa Gözat

* TODO: New stuff to do.

* src/io.c: left and right arrow keys were swapped.
tags/v0.99.beta14
Sam Hocevar sam 23 yıl önce
ebeveyn
işleme
72b545abce
2 değiştirilmiş dosya ile 15 ekleme ve 7 silme
  1. +13
    -5
      TODO
  2. +2
    -2
      src/io.c

+ 13
- 5
TODO Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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();


Yükleniyor…
İptal
Kaydet