List of commits:
Subject Hash Author Date (UTC)
Add commandKey() function 066858b9a80610248bed69ac7095129a9f142a78 mse 2022-03-14 00:05:46
Fix a multiple selection bug on the trading screen 0c64d03fed96234183bf7bb69819f48472c1aafd mse 2022-03-10 07:14:13
Right joystick moves mouse f59369b8be29e9910ef3e5e807495b46a6403c19 mse 2022-03-06 09:50:35
Add CLEARSCREEN command 57f55faa0fec4c558e8c9a7942cb0f47ddca07d7 mse 2022-03-01 09:35:11
Tint rain ambient color & bump version to v0.7.8 56888b00706faddf9aea8a1930ee784b535c50bf mse 2022-01-31 03:02:45
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
Commit 066858b9a80610248bed69ac7095129a9f142a78 - Add commandKey() function
Author: mse
Author date (UTC): 2022-03-14 00:05
Committer name: mse
Committer date (UTC): 2022-03-14 00:05
Parent(s): 0c64d03fed96234183bf7bb69819f48472c1aafd
Signer:
Signing key:
Signing status: N
Tree: 27f6aa191e71ea2b13c94fee0111b3964197ff5b
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 e496f85..3cc8ef4)
... ... int shiftKey(){
2147 2147 || keystates[ SDL_SCANCODE_RSHIFT ]; || keystates[ SDL_SCANCODE_RSHIFT ];
2148 2148 } }
2149 2149
2150 int commandKey(){
2151 return keystates[ SDL_SCANCODE_LGUI ]
2152 || keystates[ SDL_SCANCODE_RGUI ];
2153 }
2154
2150 2155 int controlKey(){ int controlKey(){
2151 2156 return keystates[ SDL_SCANCODE_LCTRL ] return keystates[ SDL_SCANCODE_LCTRL ]
2152 2157 || keystates[ SDL_SCANCODE_RCTRL ]; || keystates[ SDL_SCANCODE_RCTRL ];
File include/fg3/fg3.h changed (mode: 100644) (index 813cded..644f0f3)
... ... int shiftKey(){
2266 2266 || keystates[ SDL_SCANCODE_RSHIFT ]; || keystates[ SDL_SCANCODE_RSHIFT ];
2267 2267 } }
2268 2268
2269 int commandKey(){
2270 return keystates[ SDL_SCANCODE_LGUI ]
2271 || keystates[ SDL_SCANCODE_RGUI ];
2272 }
2273
2269 2274 int controlKey(){ int controlKey(){
2270 2275 return keystates[ SDL_SCANCODE_LCTRL ] return keystates[ SDL_SCANCODE_LCTRL ]
2271 2276 || keystates[ SDL_SCANCODE_RCTRL ]; || keystates[ SDL_SCANCODE_RCTRL ];
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using git:
git clone git://git.rocketgit.com/user/mse/ConfectionerEngine

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main