List of commits:
Subject Hash Author Date (UTC)
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
Add a minimap 3da6d1001bcd89a903cd761492eab1cc23dbd0d6 mse 2021-12-05 16:04:36
Fix special item increment bug 8e7425924c63f56351357e6690d25ee6ecf3048a mse 2021-12-04 06:41:02
Bump version to v0.7.2 a4ccb6ce137ec34ec5852d95f8bff545f8b4b85c mse 2021-12-02 11:41:27
Make interact button also place items 3f1f27d32e162fc9e0cbe5e420b0ec78ef705d15 mse 2021-12-01 13:33:37
Switch entity button to interact a409b707d3e704e4370702bdb77a2a9841e624d3 mse 2021-11-30 06:37:25
Translate Continue button to Greek & bump version to 0.7.1 5dfb837cb70a16a71dc9338e1126f1cd69ada1a2 mse 2021-11-29 09:22:04
Bump version to v0.7.0 e303b764c874b5e61bedc64b634f4ac80d5f27e5 mse 2021-11-28 07:48:29
Add CSL functions, syntax enhancements, OnPlayerEat, & remove init.json a484c33465821c194fe5d34cfef6716de198aaa6 mse 2021-11-27 04:24:46
Fix libs.cpp c736b9be42a871adc4827431961e8b769572c26b mse 2021-11-20 02:34:34
Fix tile seams ae09d59880997b3e1fd1cdf2083f83b3f0f73312 mse 2021-11-20 00:29:03
Make particle light follow sun angle ef944efffd223dd843a1471d6b651f5dc46d871b mse 2021-11-19 22:14:29
Work on particle light and bump version to v0.6.5 73b7b68133f7767f78c47492f693c5e9e965e214 mse 2021-11-19 08:04:32
Improve rim lighting and flatten floor gibs 4a7082e02eda370dba12bb44089777552859c5bd mse 2021-11-18 04:30:05
Commit d20c5a67477446ba3676d9a47610c3fa03e185b9 - Support function calls from Talk::go
Author: mse
Author date (UTC): 2021-12-09 08:42
Committer name: mse
Committer date (UTC): 2021-12-09 08:42
Parent(s): 644696f99298c8ed0fd0b5544cefcf15074ac23e
Signer:
Signing key:
Signing status: N
Tree: 0b4da8edadc3666c59cb65855d6c41315d9df588
File Lines added Lines deleted
include/dialogue.h 21 7
File include/dialogue.h changed (mode: 100644) (index 3dbdb18..77ae04a)
... ... class Talk {
80 80 int parseJSON( std::string &text ); int parseJSON( std::string &text );
81 81 int parseCSL( std::string &text ); int parseCSL( std::string &text );
82 82 CSLDynamic callFunction( const std::string &func, const std::vector<std::string> &args ); CSLDynamic callFunction( const std::string &func, const std::vector<std::string> &args );
83 std::vector<std::string> tokenize( const std::string &str, const std::string &sep );
83 std::vector<std::string> tokenize( const std::string &str, const std::string &sep = "\t\x20()," );
84 84 std::string stringifyNumber( double n ); std::string stringifyNumber( double n );
85 85 std::string stringifyArray( const std::vector<std::string> &arr ); std::string stringifyArray( const std::vector<std::string> &arr );
86 86 Operation getOperation( std::string key, double valueNumber, const std::string &valueKey ); Operation getOperation( std::string key, double valueNumber, const std::string &valueKey );
 
... ... class Talk {
89 89 Talk( const std::string &filePath = "" ); Talk( const std::string &filePath = "" );
90 90 }; };
91 91
92 // Load a file, go to a screen, or call a function.
92 93 CSLDynamic Talk::go( const std::string &id ){ CSLDynamic Talk::go( const std::string &id ){
94 // go returns 0.0 instead of nil.
95 CSLDynamic zeroDynamic = { 0, 0.0, "", {} };
93 96 if( ( id.length() >= 5 && id.substr( id.length() - 5 ) == ".json" ) if( ( id.length() >= 5 && id.substr( id.length() - 5 ) == ".json" )
94 97 || ( id.length() >= 4 && id.substr( id.length() - 4 ) == ".csl" ) ){ || ( id.length() >= 4 && id.substr( id.length() - 4 ) == ".csl" ) ){
98 // Load the file specified by id.
95 99 screens.clear(); screens.clear();
96 100 std::string filePath = file.substr( 0, file.find_last_of( '/' ) + 1 ) + id; std::string filePath = file.substr( 0, file.find_last_of( '/' ) + 1 ) + id;
97 101 append( filePath ); append( filePath );
 
... ... CSLDynamic Talk::go( const std::string &id ){
99 103 screen = getScreen( "init" ); screen = getScreen( "init" );
100 104 } }
101 105 std::srand( std::time( NULL ) ); std::srand( std::time( NULL ) );
102 }else{
106 }else if( id.find( ")" ) == std::string::npos ){
107 // Go to the screen specified by id.
103 108 screen = getScreen( id ); screen = getScreen( id );
109 }else{
110 // Call a function.
111 auto tokens = tokenize( id );
112 if( tokens.size() > 0 ){
113 const std::string &func = tokens[0];
114 tokens.erase( tokens.begin() );
115 auto result = callFunction( func, tokens );
116 if( result.type >= 0 ) return result;
117 }
118 return zeroDynamic;
104 119 } }
105 120 transformString( screen.caption ); transformString( screen.caption );
106 121 for( std::string &s : screen.lines ){ for( std::string &s : screen.lines ){
 
... ... CSLDynamic Talk::go( const std::string &id ){
115 130 auto result = operate( o ); auto result = operate( o );
116 131 if( result.type >= 0 ) return result; if( result.type >= 0 ) return result;
117 132 } }
118 // go returns 0.0 instead of nil.
119 return { 0, 0.0, "", {} };
133 return zeroDynamic;
120 134 } }
121 135
122 136 void Talk::append( std::string filePath ){ void Talk::append( std::string filePath ){
 
... ... double Talk::getVariable( std::string key ){
234 248 return go( arg ).valueNumber; return go( arg ).valueNumber;
235 249 }else if( key.find( ")" ) != std::string::npos ){ }else if( key.find( ")" ) != std::string::npos ){
236 250 // Calls the specified function and returns its numeric result. // Calls the specified function and returns its numeric result.
237 auto tokens = tokenize( key, "\t\x20()," );
251 auto tokens = tokenize( key );
238 252 if( tokens.size() > 0 ){ if( tokens.size() > 0 ){
239 253 const std::string &func = tokens[0]; const std::string &func = tokens[0];
240 254 tokens.erase( tokens.begin() ); tokens.erase( tokens.begin() );
 
... ... int Talk::parseCSL( std::string &text ){
398 412 }else if( line.length() >= 6 && line.substr( 0, 3 ) == "fun" }else if( line.length() >= 6 && line.substr( 0, 3 ) == "fun"
399 413 && ( line[3] == '\t' || line[3] == '\x20' ) ){ && ( line[3] == '\t' || line[3] == '\x20' ) ){
400 414 // Function declaration. // Function declaration.
401 auto tokens = tokenize( line.substr( 4 ), "\t\x20()," );
415 auto tokens = tokenize( line.substr( 4 ) );
402 416 // The line should end with a single colon. // The line should end with a single colon.
403 417 // However, the tokenizer technically allows things like: // However, the tokenizer technically allows things like:
404 418 // fun foo(bar):),( // fun foo(bar):),(
 
... ... void Talk::transformString( std::string &str ){
715 729 std::string key = str.substr( start + 1, i - start - 1 ); std::string key = str.substr( start + 1, i - start - 1 );
716 730 if( key.back() == ')' ){ if( key.back() == ')' ){
717 731 // Call a function. // Call a function.
718 auto tokens = tokenize( key, "\t\x20()," );
732 auto tokens = tokenize( key );
719 733 if( tokens.size() > 0 ){ if( tokens.size() > 0 ){
720 734 const std::string &func = tokens[0]; const std::string &func = tokens[0];
721 735 tokens.erase( tokens.begin() ); tokens.erase( tokens.begin() );
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