implemented an install target in scons
[supertux.git] / TODO
1
2 - To do for Milestone2 -
3 http://super-tux.sf.net/
4
5 High priority: milestone goals that should be implemented for next milestone
6 Medium priority: would be nice to have for next milestone, but should
7     be secondary to high priority goals
8 Low priority: things that should be fixed sometime
9 ?: Things that need to be discussed to determine whether or not they should be
10     implemented
11
12 Todo
13 ----
14 H: high priority
15 M: medium priority
16 L: low priority
17 ?: bug or feature?
18     - needs discussion
19
20 --Scons--
21  * [H] Add an install target - done (however scons is creating stupid .sconsign
22                                      files at the install location :-/)
23  * [M] improve opengl check to work on win32 and eventually more strange
24    systems again
25  * [H] Make sure compilation on win32 and cross-compilation works
26  * [M] compile some test executables to test for SDL, SDL_mixer and SDL_image.
27    Also test for version of SDL_mixer and SDL_image
28  * [M] Create a distclean target
29  * [M] Create a dist target
30  * [M] Add instructions to the README
31  * [L] If all of the [H] and [M] issues are fixed, remove autoconf/automake
32  * [L] Take a look if it is possible to make it a bit more quiet. (Similar to
33      linux kernel, samba or jam output would be optimum, ie.
34        C++ build/linux/src/bla.o
35        C++ build/linux/src/blup.o
36        C++ build/linux/src/error.o
37           Error on line xx in error.o: This source contained an error
38
39        g++ -Wall .... -o build/linux/src/error.o src/error.cpp
40
41 --Collision Detection Rewrite (all [H])--
42  * make blocks bounce again - ok
43  * bonusblocks don't always bounce back to their original position (but stay a
44     few pixels higher)
45  * it's impossible to go into passages that have exactly the size of tux,
46    either reduce collision rectangle by DELTA or round collision coordinates to
47    integers... 
48  ** implement 1up - ok
49  ** implement star - ok
50  * bring back the enemies
51     - add activation again
52     - make api simpler
53     - implement jumpy - ok
54     -* implement spiky - ok
55     - implement snowball - ok
56     - implement fish
57     - implement bouncingsnowball - ok
58     -* implement mriceblock - ~ok
59     - implement flame - ok
60     -* implement mrbomb - ok
61     - implement flyingsnowball
62     - implement wingling
63     - implement tree (really?)
64     - bring back stay on platform flag
65     - make enemies bounce of upon each other again
66     - make enemies fall again
67     -* activate/deactive enemies when on screen/away again - ok
68  ** implement ability to cary mriceblock (and other objects) around - delayed
69     for  after big commit...
70  * smoke clouds are too fast
71  * some shots disappear in the ground with a "max collision depth reached"
72    message
73  * rework collision detection to take movement into account - this should fix
74     the egg suddenly turning directions and the somtimes strange behaviour
75     when hitting a block from the side when falling.
76  * rethink slopes collision feedback... tux becomes too slow when walking up
77     and starts jumping when walking down
78  * think about an attachement mechanism for moving platforms
79  * implement paths for the moving platform, implement simple moving platforms
80  ** activate level end sequence again - ok
81  ** make bullets kill enemies - ok
82  * fix bullet speed/behaviour
83  ** fix ducking - ok
84  * check if unducking is actually possible or if something is in the way
85  * fix flapping
86  ** having a star doesn't kill enemies - ok
87
88 --Code Refactoring/Cleanup/Optimisation--
89 [H] make the title using GameSession instead of reimplementing all the stuff
90 [L] rename gameloop.* files to gamesession.*
91 [L] rename GameObject::action to GameObject::update()
92 [L] use physfs for loading files
93 [L] eventually move over new lispreader code from tuxkart
94 [L] change physics class y-velocity-coordinate to be like all other
95     y-coordinates again (positive y to go down)
96 [M] harmonize to 1 single gameloop that switches between title, worldmap,
97     ingame mode and eventually leveleditor mode
98 [H] introduce a special mode in DrawingContext for objects that want to draw
99     themselfes. This could speed up rendering of tilemaps.
100 [H] implement quadtree to speed up collision detection
101 [?] remove badguyspecs and bitmask files
102
103 --Miscelaneous--
104 [?] think about how to implement scripting, and how to make a simple and easy to
105   use api for the scripting interface
106   (language will probably be lua - just have to figure out how well we can do
107    without OO support in the scripting language.
108    Other candidates are python, ruby and less likely java, mono/.net,
109    surely no own invention, perl or 1 of these c-like scripting languages)
110
111 [?] Default keyboard setup should change. Up will be needed for other features
112     like going through doors and looking up, etc.
113   Up arrow    - Look up / activate
114   Down arrow  - Look down / duck
115   Left arrow  - Left move
116   Right arrow - Right move
117   Ctrl        - Run / Power
118   Space       - Jump
119
120 [H] Worldmap should have a flag to allow to go to another map after finishing
121     a level from that one.
122     It might be cool to have a (place group in the worldmap file that would
123     allow such stuff as: levels, messages, wrapping and worldmap changing
124     (or even combinations).
125 [H] Change resolution to 800x600
126      - Levels need to be updated to resolution
127         - half of the levels have been already updated
128         - some fixed levels still have "glitches". See the menu level where
129           some of the tiles are "wrong" and don't fit
130 [H] Buttjump related things
131      - Should kill enemies with a certain range
132         - Done--now needs to be tweaked
133      - Animation (need images)
134      - Should be a powerup item (still to be discussed)
135      - Should break bricks if Tux is on top of bricks, otherwise it should
136        kill enemies within a close range.
137         - After enemy-kill is used, powerup should be removed from Tux
138 [H] Icebullet related things
139      - we should decide on specifics
140 [H] Tux should fall while walking in tiles that have a space between.
141      - Possible solution: reduce Tux's width when checking collision with tiles
142 [H] Graphics
143      - New forest tileset
144      - Badguy sprites
145      - Tux's buttjump animation
146 [H] Background code have the following bugs:
147  - Gradient in software rendering doesn't currently work (at least here).
148     Matze: can you give more details? The code looks perfectly fine to me
149
150 [M] There are some weird graphical glitches when Tux bumps more than one block
151     at the same time
152 [M] Save score on per-level basis to make high-score
153 [M] Save time on per-level basis to make low-time-score
154 [M] Add bonus score for extra time left when finishing a level
155 [M] when bumping a special with 2 blocks at once, it won't change direction
156 [M] tux get killed if he kicks a iceblock while at the same time bouncing on
157 [M] You shouldn't be able to stand on invisible blocks, before you bumped them
158     the roof
159 [M] Implement Unisolid type for tiles (where collisions from below are ignored).
160     - done
161
162 [L] Allow any object to be inside of a [?] box, ie. trampoline or badguy
163     - Not sure if this would be gameplay wise.
164 [L] in the "Welcome to Antarctica" level, the blocks next to the first growup
165     look like there are 2 blocks above each other when bumping against them as
166     small tux...
167 [L] time runs while being in in-game menu, at least a bit (jump, go to
168     menu, wait a bit, leave menu, Tux will 'flip' to the ground,
169     instead of fall, pause mode doesn't seem to have this problem, only
170     menu)
171 [L] catch exceptions thrown by lispreader
172
173 Beyond Milestone2
174 -----------------
175 - More things than just levels on the worldmap (similar to SMB3)