Compare commits
2 commits
5e5ff6950c
...
8fda53cb35
Author | SHA1 | Date | |
---|---|---|---|
8fda53cb35 | |||
36df133905 |
6 changed files with 59 additions and 23 deletions
10
TODO.txt
10
TODO.txt
|
@ -1,10 +1,14 @@
|
||||||
=========== GENERAL ==============
|
=========== GENERAL ==============
|
||||||
|
|
||||||
|
- FPS logging for optim
|
||||||
|
- use 332 in SDL with potato?
|
||||||
|
- option to turn on simple 332 colors?
|
||||||
|
- c99 may impose limit 4095 chars on str literal, gives warning on internal
|
||||||
|
data file, try to somehow hack around it
|
||||||
|
- add ifdefs that change car color?
|
||||||
- add indicator that menu can be scrolled down
|
- add indicator that menu can be scrolled down
|
||||||
- car deglitch idea: deglitch only if the middle joint collided this frame?
|
- car deglitch idea: deglitch only if the middle joint collided this frame?
|
||||||
- some kinda easteregg in menu or smt
|
- some kinda easteregg in menu or smt
|
||||||
- on 1st map the camera is obscured by the wall at the start, fix it somehow
|
|
||||||
(not the best first impression)
|
|
||||||
- culling is very slow now, it showed that distance bailout can accelerate it
|
- culling is very slow now, it showed that distance bailout can accelerate it
|
||||||
a lot, try to make a more accurate bailaout and see if it's faster (watch
|
a lot, try to make a more accurate bailaout and see if it's faster (watch
|
||||||
out for bugs due to false positives)
|
out for bugs due to false positives)
|
||||||
|
@ -72,6 +76,8 @@
|
||||||
those nasty piercing bugs
|
those nasty piercing bugs
|
||||||
- replays are bugged, seem to not steer
|
- replays are bugged, seem to not steer
|
||||||
- make the U-ramp map taller due to new physics
|
- make the U-ramp map taller due to new physics
|
||||||
|
- on 1st map the camera is obscured by the wall at the start, fix it somehow
|
||||||
|
(not the best first impression) <-- shifted start pos.
|
||||||
- replay format should probably record game version
|
- replay format should probably record game version
|
||||||
- also there should probably be some version system that says version of
|
- also there should probably be some version system that says version of
|
||||||
physics vs version of everything else; replay could only record physics
|
physics vs version of everything else; replay could only record physics
|
||||||
|
|
26
assets.h
26
assets.h
|
@ -106,7 +106,7 @@ static const char *LCR_internalDataFile =
|
||||||
|
|
||||||
// MAP 1:
|
// MAP 1:
|
||||||
"#MLC1;4321 0 "
|
"#MLC1;4321 0 "
|
||||||
":*B2mL:!x6G:+L2H:+D38" // start, finish, CPs
|
":*C2mL:!x6G:+L2H:+D38" // start, finish, CPs
|
||||||
// pillars:
|
// pillars:
|
||||||
":nw0w2L:f151:m151"
|
":nw0w2L:f151:m151"
|
||||||
":nz0w2L:f151:m151"
|
":nz0w2L:f151:m151"
|
||||||
|
@ -369,8 +369,22 @@ static const char *LCR_internalDataFile =
|
||||||
":=y0F1:fb15:^y0F1:fb11:^y0J1I:fb11" // end
|
":=y0F1:fb15:^y0F1:fb11:^y0J1I:fb11" // end
|
||||||
|
|
||||||
// TINY MAP 2:
|
// TINY MAP 2:
|
||||||
|
"#MLCtiny2;4321 1"
|
||||||
|
":*w@v-:!v0u:f313"
|
||||||
|
// tunnel:
|
||||||
|
":=wct:f1K1:=wcx:f1K1:=ucv:f1K1:=ycv:f1K1"
|
||||||
|
":Avcw:f1K1:AucwI:f1K1:AvcxI:f1K1"
|
||||||
|
":AxcwJ:f1K1:AycwL:f1K1:AxcxL:f1K1"
|
||||||
|
":AvcuL:f1K1:AucuJ:f1K1:AvctJ:f1K1"
|
||||||
|
":AxcuI:f1K1:Aycu:f1K1:Axct:f1K1"
|
||||||
|
":xukt:f6c6:xuEt:f6c6" // splits
|
||||||
|
//obstacles:
|
||||||
|
":~wUv3-:~wVv3:\\xDv2J|:.vQv:,wAu1"
|
||||||
|
":f113:~xnw3-:~xow3:~weu3-:~wfu3:\\vcv2L|"
|
||||||
|
|
||||||
"#MLCtiny2;4321 2"
|
// TINY MAP 3:
|
||||||
|
|
||||||
|
"#MLCtiny3;4321 2"
|
||||||
":*w1d:!w1d:+w1A"
|
":*w1d:!w1d:+w1A"
|
||||||
// big bumps:
|
// big bumps:
|
||||||
":vw1hJ:m111"
|
":vw1hJ:m111"
|
||||||
|
@ -394,9 +408,9 @@ static const char *LCR_internalDataFile =
|
||||||
// small bumps:
|
// small bumps:
|
||||||
":~y1i1:~w1j3:~x1l:~x1p3:~u1q2:~w1s2:~x1v:~v1w1:~x1x3"
|
":~y1i1:~w1j3:~x1l:~x1p3:~u1q2:~w1s2:~x1v:~v1w1:~x1x3"
|
||||||
|
|
||||||
// TINY MAP 3:
|
// TINY MAP 4:
|
||||||
|
|
||||||
"#MLCtiny3;4321 2"
|
"#MLCtiny4;4321 2"
|
||||||
":*M2AJ"
|
":*M2AJ"
|
||||||
// box:
|
// box:
|
||||||
":=C2w:faca"
|
":=C2w:faca"
|
||||||
|
@ -423,9 +437,9 @@ static const char *LCR_internalDataFile =
|
||||||
// finish:
|
// finish:
|
||||||
":!Hex:!HeE"
|
":!Hex:!HeE"
|
||||||
|
|
||||||
// TINY MAP 4:
|
// TINY MAP 5:
|
||||||
|
|
||||||
"#MLCtiny4;4321 1"
|
"#MLCtiny5;4321 1"
|
||||||
":*x1q:+u1F:!x1o"
|
":*x1q:+u1F:!x1o"
|
||||||
// platform:
|
// platform:
|
||||||
":=j0o:fg1j"
|
":=j0o:fg1j"
|
||||||
|
|
5
data
5
data
|
@ -32,3 +32,8 @@ ramps
|
||||||
|
|
||||||
finish
|
finish
|
||||||
:!vdt :!vdA
|
:!vdt :!vdA
|
||||||
|
#RLC1;00LC1;8bd6e314 0000630:0011:0349:00a1:0049:0041:00c9:0041:0089:0071:0063:0061:00a5:0051:0069:0121:0063:0061:0039:0058:0050:0012:00d8:002c:0194:0016:00e2:0010:0018:006c:0070:0022:0033:00d1:00f9:00a1:0049:0051:0039:0051:0039:0031:0039:0041:0039:0031:0059:0041:0079:0021:0063:0031:0099:0031:0215:0031:01d9:0011:00b9:0031:0043:0031:0013:0021:0033:0111:0043:00d1:0119:0051:00a3:0041:0305:0031:0099:0031:0093:0031:0079:0031:00b3:0031
|
||||||
|
#BLC1;
|
||||||
|
#RLC1;00LC1;8bd6e314 0000500:0011:01c9:0021:00d9:0071:0059:0041:0029:0051:0039:0031:0049:0031:0039:0031:0039:0041:0049:0021:0179:0045:0011:0019:01e1:0043:0081:0079:0051:0059:0041:0049:0041:0029:0041:0119:0031:0093:0031:0079:0021:0099:0021:00a5:0031:0209:0021:0193:00c1:0033:00b1:0033:0051:0033:0071:0023:0041:0159:0031:03a9:0021
|
||||||
|
#RLCtiny2;00LCtiny2;833ee4b2 0000176:0041:0210:0094:0040:0061:00c0:0084:0045:0011:0204:0030:00a1:0040:00f4:0040
|
||||||
|
#BLCtiny2;
|
||||||
|
|
1
game.h
1
game.h
|
@ -1677,6 +1677,7 @@ uint8_t LCR_gameStep(uint32_t time)
|
||||||
LCR_rendererDrawMenu(LCR_texts[LCR_TEXTS_TABS
|
LCR_rendererDrawMenu(LCR_texts[LCR_TEXTS_TABS
|
||||||
+ LCR_game.menu.selectedTab],LCR_game.menu.itemNamePtrs,
|
+ LCR_game.menu.selectedTab],LCR_game.menu.itemNamePtrs,
|
||||||
LCR_game.menu.itemCount + 1,LCR_game.menu.selectedItem);
|
LCR_game.menu.itemCount + 1,LCR_game.menu.selectedItem);
|
||||||
|
|
||||||
else
|
else
|
||||||
LCR_gameDraw3DView();
|
LCR_gameDraw3DView();
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@ WORK IN PROGRESS
|
||||||
|
|
||||||
-._.-'"'-._.-'"'- LICAR MANUAL -'"'-._.-'"'-._.-
|
-._.-'"'-._.-'"'- LICAR MANUAL -'"'-._.-'"'-._.-
|
||||||
|
|
||||||
by drummyfish, released under CC0 1.0, public domain
|
libre racing video game by drummyfish
|
||||||
|
released under CC0 1.0, public domain
|
||||||
|
|
||||||
~~~ GENERAL ~~~
|
~~~ GENERAL ~~~
|
||||||
|
|
||||||
Licar is a relatively simple 3D stunt racing game inspired by other popular
|
Licar is a relatively simple 3D stunt racing game inspired by other popular
|
||||||
games of this genre. Unlike most games in existence, Licar is completely libre,
|
games of the genre such as Trackmania and Stunts. Unlike mainstream video games,
|
||||||
free as in freedom (meaning its source code is available for any use
|
Licar is completely libre, i.e. free as in freedom (meaning its source code is
|
||||||
whatsoever), gratis (free of cost), and its focus lies on being well programmed
|
available for any use whatsoever), gratis (free of cost) and its focus lies on
|
||||||
by employing minimalism and rejecting harmful "modern" programming practice. The
|
being well programmed by utilizing minimalism and rejecting harmful "modern"
|
||||||
game aims to seflessly bring happiness to all people who might enjoy it, even
|
programming practice. The game aims to seflessly bring joy and entertainment to
|
||||||
those who have no money, own only very old and weak computers etc. It is not a
|
all people who might enjoy it, even those who have no money, own only very old
|
||||||
commercial product and has been made purely out of love by a single man. It is
|
and weak computers and so on. It is not a commercial product and has been made
|
||||||
also more than a game, for example it can be used for educational purposes.
|
purely out of love by a single man. Licar is also more than a game, for example
|
||||||
|
it can be used for educational purposes or as a basis for new projects.
|
||||||
|
|
||||||
The game runs on many platforms and comes in different versions depending on
|
The game runs on many platforms and comes in different versions depending on
|
||||||
what the platforms allow. Some versions may have more features or visual
|
what the platforms allow. Some versions may have more features or visual
|
||||||
|
@ -80,10 +82,14 @@ PRO TIP: pressing brake while in air stops the car's horizontal rotation!
|
||||||
|
|
||||||
~~~ DATA FILE ~~~
|
~~~ DATA FILE ~~~
|
||||||
|
|
||||||
The game uses so called data file to store data such as maps and replays (if the
|
Where supported, the game uses a so called data file to store data such as maps,
|
||||||
platform allows it). The file is usually located in the same directory as the
|
replays, information about map completion etc. On platforms that don't support
|
||||||
game and is called just "data". It's a single text file, so it can be opened in
|
the feature the game still has its own internal data file with very basic maps,
|
||||||
any plain text editor. If you just want to casually play the game, you may
|
so that there is still "content" to play, but it won't be possible to add new
|
||||||
|
maps or save replays. If the feature IS supported, the game will use a file
|
||||||
|
that's usually located in the same directory as the game's executable and which
|
||||||
|
is called just "data". It's a single text file, and so it's possible to open it
|
||||||
|
with any plain text editor. If you just want to casually play the game, you may
|
||||||
safely ignore the file. You will need to edit the file if you want to add new
|
safely ignore the file. You will need to edit the file if you want to add new
|
||||||
maps and replays, or if you want to share your replays and maps with others.
|
maps and replays, or if you want to share your replays and maps with others.
|
||||||
|
|
||||||
|
@ -233,6 +239,10 @@ A few tips for making maps:
|
||||||
time needed to load the map slows down quadratically with the number of
|
time needed to load the map slows down quadratically with the number of
|
||||||
triangles.
|
triangles.
|
||||||
|
|
||||||
|
~~~ COMPILING AND MODIFYING ~~~
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
~~~ FAQ ~~~
|
~~~ FAQ ~~~
|
||||||
|
|
||||||
Q: This game is free? Do I have to pay for it? What can I legally do with it?
|
Q: This game is free? Do I have to pay for it? What can I legally do with it?
|
||||||
|
|
|
@ -44,12 +44,12 @@
|
||||||
#ifndef LCR_SETTING_MAX_MAP_VERTICES
|
#ifndef LCR_SETTING_MAX_MAP_VERTICES
|
||||||
/** Maximum number of vertices for 3D rendering. Lower number will decrease
|
/** Maximum number of vertices for 3D rendering. Lower number will decrease
|
||||||
RAM usage but will prevent larger maps from being loaded. */
|
RAM usage but will prevent larger maps from being loaded. */
|
||||||
#define LCR_SETTING_MAX_MAP_VERTICES 10000
|
#define LCR_SETTING_MAX_MAP_VERTICES 4096
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LCR_SETTING_MAX_MAP_TRIANGLES
|
#ifndef LCR_SETTING_MAX_MAP_TRIANGLES
|
||||||
/** Like LCR_SETTING_MAX_MAP_VERTICES but for the number of triangles. */
|
/** Like LCR_SETTING_MAX_MAP_VERTICES but for the number of triangles. */
|
||||||
#define LCR_SETTING_MAX_MAP_TRIANGLES 10000
|
#define LCR_SETTING_MAX_MAP_TRIANGLES 8192
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LCR_SETTING_SKY_SIZE
|
#ifndef LCR_SETTING_SKY_SIZE
|
||||||
|
|
Loading…
Reference in a new issue