Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Add controlKey function | 6997d5afe5971694fe0222917f8125dd44b23aa3 | mse | 2022-01-21 17:23:00 |
Start CSL function library | 4f2a3417450dc7389548cb39e245939c17f03fe9 | mse | 2021-12-28 19:16:57 |
Fix non-owning reference bug | 65e4d1a89c656acbaced0923dd5f64fd8908b025 | mse | 2021-12-28 18:45:37 |
Translate 'Get closer' | 86563edde1ef9fd574382b772b34ee78636af82b | mse | 2021-12-18 16:06:58 |
Bump version to v0.7.7 | e1e9703ff5eec4b0003082052f9035a46a82767a | mse | 2021-12-18 04:23:49 |
Add item translation system & change trading text | de19b57c624f0317b4fe57086eff3e57f16e3361 | mse | 2021-12-17 22:32:45 |
Fix fg3 depth buffer format | 65eef1b171eb937c6c213f7af1f1206053183832 | mse | 2021-12-16 00:57:55 |
Upgrade fg3 depth precision | 153ff3855ec6f47b18eef4b262e42e4c4ccee90b | mse | 2021-12-15 16:20:26 |
Translate confec_select and confec_name to Greek | 285a98c703de8afd92129cd08147562573785a29 | mse | 2021-12-15 01:51:04 |
Update game controller DB | 1bc318197ae0f77693da7b7b4f754d7c89f800f6 | mse | 2021-12-14 14:22:51 |
Bump version to v0.7.6 | 53d47f1b30d2e87a4b72456220b813848af22ba1 | mse | 2021-12-14 14:03:20 |
Bump version to v0.7.5 | 97863be956f3af1cd5fb76fdc304d69a343289fc | mse | 2021-12-12 05:40:46 |
Update fg2/fg3 lighting functionality | d46bc128f5d2ff38193c26d1465ef6f33a83f7bb | mse | 2021-12-12 05:20:39 |
Support function calls from Talk::go | d20c5a67477446ba3676d9a47610c3fa03e185b9 | mse | 2021-12-09 08:42:57 |
Clear minimap background | 644696f99298c8ed0fd0b5544cefcf15074ac23e | mse | 2021-12-08 15:42:53 |
Pause game on focus loss | 2357bfbdc13df8caa49da487ab2094803458aec5 | mse | 2021-12-08 15:32:58 |
Hide minimap during character select & text input | 14baf3d18e3e3a1f012064e04386279d920b6c75 | mse | 2021-12-07 12:59:19 |
Add tileset mipmap support & bump version to 0.7.4 | 9b10dbc7ae66493b87c53feddc600a8dda514802 | mse | 2021-12-06 11:38:53 |
Change UV behavior | 7817fbe285427dd2c71a8460cf9a6adc5b58628c | mse | 2021-12-06 02:46:32 |
Bump version to v0.7.3 | d5ec7a787af02be5e4e89236b62f7c69326a7166 | mse | 2021-12-06 00:50:25 |
File | Lines added | Lines deleted |
---|---|---|
include/fg2/fg2.h | 5 | 0 |
include/fg3/fg3.h | 5 | 0 |
File include/fg2/fg2.h changed (mode: 100755) (index 06d61ae..e496f85) | |||
... | ... | int shiftKey(){ | |
2147 | 2147 | || keystates[ SDL_SCANCODE_RSHIFT ]; | || keystates[ SDL_SCANCODE_RSHIFT ]; |
2148 | 2148 | } | } |
2149 | 2149 | ||
2150 | int controlKey(){ | ||
2151 | return keystates[ SDL_SCANCODE_LCTRL ] | ||
2152 | || keystates[ SDL_SCANCODE_RCTRL ]; | ||
2153 | } | ||
2154 | |||
2150 | 2155 | int enterKey(){ | int enterKey(){ |
2151 | 2156 | return keystates[ SDL_SCANCODE_RETURN ] | return keystates[ SDL_SCANCODE_RETURN ] |
2152 | 2157 | || keystates[ SDL_SCANCODE_KP_ENTER ]; | || keystates[ SDL_SCANCODE_KP_ENTER ]; |
File include/fg3/fg3.h changed (mode: 100644) (index 116f98e..813cded) | |||
... | ... | int shiftKey(){ | |
2266 | 2266 | || keystates[ SDL_SCANCODE_RSHIFT ]; | || keystates[ SDL_SCANCODE_RSHIFT ]; |
2267 | 2267 | } | } |
2268 | 2268 | ||
2269 | int controlKey(){ | ||
2270 | return keystates[ SDL_SCANCODE_LCTRL ] | ||
2271 | || keystates[ SDL_SCANCODE_RCTRL ]; | ||
2272 | } | ||
2273 | |||
2269 | 2274 | int enterKey(){ | int enterKey(){ |
2270 | 2275 | return keystates[ SDL_SCANCODE_RETURN ] | return keystates[ SDL_SCANCODE_RETURN ] |
2271 | 2276 | || keystates[ SDL_SCANCODE_KP_ENTER ]; | || keystates[ SDL_SCANCODE_KP_ENTER ]; |