浏览代码

* TODO: New stuff to do.

* src/io.c: left and right arrow keys were swapped.
tags/v0.99.beta14
Sam Hocevar sam 22 年前
父节点
当前提交
72b545abce
共有 2 个文件被更改,包括 15 次插入7 次删除
  1. +13
    -5
      TODO
  2. +2
    -2
      src/io.c

+ 13
- 5
TODO 查看文件

@@ -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 查看文件

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


正在加载...
取消
保存