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() ); |