make supertux accepts normal paths on the commandline
[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  * enemies:
43     - implement fish
44     - implement flyingsnowball
45     - implement wingling
46     - implement tree (really?)
47     - bring back stay on platform flag
48     - make enemies bounce of upon each other again
49     - make enemies fall again - ok
50  ** implement ability to cary mriceblock (and other objects) around - delayed
51     for  after big commit...
52  * smoke clouds are too fast
53  * rethink slopes collision feedback... tux becomes too slow when walking up
54     and starts jumping when walking down
55  * think about an attachement mechanism for moving platforms
56  * implement paths for the moving platform, implement simple moving platforms
57  * fix bullet speed/behaviour
58  * check if unducking is actually possible or if something is in the way
59  * fix flapping
60  * what to do when stuck under tiles (after using duck-sliding)
61  * do we want multi hit scores again?
62  * tux doesn't stop at igloo anymore
63  * buttjump is deactivated
64  * implement quadtree or grid to speedup collision detection
65
66 --Code Refactoring/Cleanup/Optimisation--
67 [H] make the title using GameSession instead of reimplementing all the stuff
68 [L] rename gameloop.* files to gamesession.*
69 [L] rename GameObject::action to GameObject::update()
70 [L] use physfs for loading files
71 [L] eventually move over new lispreader code from tuxkart
72 [L] change physics class y-velocity-coordinate to be like all other
73     y-coordinates again (positive y to go down)
74 [M] harmonize to 1 single gameloop that switches between title, worldmap,
75     ingame mode and eventually leveleditor mode
76 [H] introduce a special mode in DrawingContext for objects that want to draw
77     themselfes. This could speed up rendering of tilemaps.
78 [?] remove badguyspecs and bitmask files
79 [M] Make the gamelogic run in a fixed logical framerate
80
81 --Miscellaneous--
82 [?] think about how to implement scripting, and how to make a simple and easy to
83   use api for the scripting interface
84   (language will probably be lua - just have to figure out how well we can do
85    without OO support in the scripting language.
86    Other candidates are python, ruby and less likely java, mono/.net,
87    surely no own invention, perl or 1 of these c-like scripting languages)
88
89 [?] Default keyboard setup should change. Up will be needed for other features
90     like going through doors and looking up, etc.
91   Up arrow    - Look up / activate
92   Down arrow  - Look down / duck
93   Left arrow  - Left move
94   Right arrow - Right move
95   Ctrl        - Run / Power
96   Space       - Jump
97
98 [H] Worldmap should have a flag to allow to go to another map after finishing
99     a level from that one.
100     It might be cool to have a (place group in the worldmap file that would
101     allow such stuff as: levels, messages, wrapping and worldmap changing
102     (or even combinations).
103 [H] Change resolution to 800x600
104      - Levels need to be updated to resolution
105         - half of the levels have been already updated
106         - some fixed levels still have "glitches". See the menu level where
107           some of the tiles are "wrong" and don't fit
108 [H] Buttjump related things
109      - Should kill enemies with a certain range
110         - Done--now needs to be tweaked
111      - Animation (need images)
112      - Should be a powerup item (still to be discussed)
113      - Should break bricks if Tux is on top of bricks, otherwise it should
114        kill enemies within a close range.
115         - After enemy-kill is used, powerup should be removed from Tux
116 [H] Icebullet related things
117      - we should decide on specifics
118 [H] Tux should fall while walking in tiles that have a space between.
119      - Possible solution: reduce Tux's width when checking collision with tiles
120 [H] Graphics
121      - New forest tileset
122      - Badguy sprites
123      - Tux's buttjump animation
124 [H] Tiles constructed with image-region are not drawn coordinates < 0
125
126 [M] Save score on per-level basis to make high-score
127 [M] Save time on per-level basis to make low-time-score
128 [M] Add bonus score for extra time left when finishing a level
129 [M] when bumping a special with 2 blocks at once, it won't change direction
130 [M] tux get killed if he kicks a iceblock while at the same time bouncing on
131
132 [L] Allow any object to be inside of a [?] box, ie. trampoline or badguy
133     - Not sure if this would be gameplay wise.
134
135 Beyond Milestone2
136 -----------------
137 - More things than just levels on the worldmap (similar to SMB3)