Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Add IFGOSUB | db52bc04bac0af4d668696580b1312920a47d9e5 | mse | 2022-03-19 17:11:36 |
Remove Poco from the makefile | e6274074304b40f0eaae0e591acadc604388fbaa | mse | 2022-03-19 17:00:54 |
Disable texture wrapping in VN | 75ed1c845f4643fa4e012f22f5a2bbeacca9d51e | mse | 2022-03-18 21:39:00 |
Menu improvements | 2ee4efdb3fedb69cbf56711841fc961bd1b4877c | mse | 2022-03-17 19:32:45 |
Menu navigation fixes | 362878a56a72a43f671d4c6022e53ce124a0cf99 | mse | 2022-03-17 18:47:50 |
Rewrite VN engine | 4c88d574d4f72794ab17fb5ecdc57fbd2a93cb7e | mse | 2022-03-16 07:19:06 |
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 |
File | Lines added | Lines deleted |
---|---|---|
include/dialogue.h | 14 | 1 |
File include/dialogue.h changed (mode: 100644) (index 0fe5548..af2d2d6) | |||
... | ... | double Talk::getVariable( std::string key ){ | |
249 | 249 | if( it != arrays.end() ) return it->second.size(); | if( it != arrays.end() ) return it->second.size(); |
250 | 250 | } | } |
251 | 251 | }else if( key.length() >= 5 && key.substr( 0, 5 ) == "GOSUB" ){ | }else if( key.length() >= 5 && key.substr( 0, 5 ) == "GOSUB" ){ |
252 | // Executes the specified dialogue, then returns 0. | ||
252 | // Executes the specified dialogue, then returns a number. | ||
253 | 253 | std::string arg = key.length() >= 7 ? key.substr( 6 ) : ""; | std::string arg = key.length() >= 7 ? key.substr( 6 ) : ""; |
254 | 254 | // Screens returning non-numeric types default to 0.0. | // Screens returning non-numeric types default to 0.0. |
255 | 255 | return go( arg ).valueNumber; | return go( arg ).valueNumber; |
256 | }else if( key.length() >= 7 && key.substr( 0, 7 ) == "IFGOSUB" ){ | ||
257 | // :IFGOSUB condition sub | ||
258 | // If condition value is nonzero, executes sub and returns a number. | ||
259 | // Multiple spaces between params will break the parser, so avoid them. | ||
260 | if( key.length() >= 9 ){ | ||
261 | std::string arg = key.substr( 8 ); | ||
262 | size_t space_at = arg.find_first_of( "\t\x20" ); | ||
263 | if( space_at != std::string::npos | ||
264 | && space_at + 1 < arg.length() | ||
265 | && getVariable( arg.substr( 0, space_at ) ) ){ | ||
266 | return go( arg.substr( space_at + 1 ) ).valueNumber; | ||
267 | } | ||
268 | } | ||
256 | 269 | }else if( key.find( ")" ) != std::string::npos ){ | }else if( key.find( ")" ) != std::string::npos ){ |
257 | 270 | // Calls the specified function and returns its numeric result. | // Calls the specified function and returns its numeric result. |
258 | 271 | auto tokens = tokenize( key ); | auto tokens = tokenize( key ); |