Home
last modified time | relevance | path

Searched refs:sexp_variable_index (Results 1 – 7 of 7) sorted by relevance

/dports/games/fs2open/fs2open.github.com-release_21_4_1/fred2/
H A Dmodifyvariabledlg.cpp270 int sexp_variable_index = get_sexp_var_index(); in OnSelchangeModifyVariableName() local
273 …m_type_number = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_NUMBER) != 0) ? true : … in OnSelchangeModifyVariableName()
274 …m_type_on_mission_progress = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_SAVE_ON_MI… in OnSelchangeModifyVariableName()
275 …m_type_on_mission_close = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_SAVE_ON_MISSI… in OnSelchangeModifyVariableName()
276 …m_type_network_variable = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_NETWORK) != 0… in OnSelchangeModifyVariableName()
277 …m_type_eternal = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_SAVE_TO_PLAYER_FILE) !… in OnSelchangeModifyVariableName()
281 if (sexp_variable_index > -1) { in OnSelchangeModifyVariableName()
283 edit->SetWindowText(Sexp_variables[sexp_variable_index].text); in OnSelchangeModifyVariableName()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/fred2/
H A Dmodifyvariabledlg.cpp243 int sexp_variable_index = get_sexp_var_index(); in OnSelchangeModifyVariableName() local
246 …m_type_number = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_NUMBER) != 0) ? true : … in OnSelchangeModifyVariableName()
247 …m_type_campaign_persistent = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_CAMPAIGN_P… in OnSelchangeModifyVariableName()
248 …m_type_player_persistent = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_PLAYER_PERSI… in OnSelchangeModifyVariableName()
249 …m_type_network_variable = ((Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_NETWORK) != 0… in OnSelchangeModifyVariableName()
253 if (sexp_variable_index > -1) { in OnSelchangeModifyVariableName()
255 edit->SetWindowText(Sexp_variables[sexp_variable_index].text); in OnSelchangeModifyVariableName()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/parse/
H A Dparselo.cpp1074 int sexp_variable_index = get_index_sexp_variable_name(str); in get_string_or_variable() local
1077 Assertion (sexp_variable_index != -1, "Didn't find variable name \"%s\"", str); in get_string_or_variable()
1078 Assert (Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_STRING); in get_string_or_variable()
1109 int sexp_variable_index = get_index_sexp_variable_name(str); in get_string_or_variable() local
1112 Assertion (sexp_variable_index != -1, "Didn't find variable name \"%s\"", str.c_str()); in get_string_or_variable()
1113 Assert (Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_STRING); in get_string_or_variable()
2766 int index, sexp_variable_index, variable_found; in stuff_loadout_list() local
2785 sexp_variable_index = NOT_SET_BY_SEXP_VARIABLE; in stuff_loadout_list()
2792 sexp_variable_index = get_index_sexp_variable_name(str); in stuff_loadout_list()
2793 strcpy_s (str, Sexp_variables[sexp_variable_index].text); in stuff_loadout_list()
[all …]
H A Dsexp.cpp19675 int i, sexp_variable_index; in sexp_int_to_string() local
19709 int sexp_variable_index; in sexp_string_concatenate() local
19760 int sexp_variable_index; in sexp_string_get_substring() local
19813 int sexp_variable_index; in sexp_string_set_substring() local
27945 int sexp_variable_index = -1; in CTEXT() local
27983 if (sexp_variable_index != -1) in CTEXT()
28156 int sexp_variable_index; in sexp_modify_variable() local
28217 int sexp_variable_index; in sexp_set_variable_by_index() local
28232 if (sexp_variable_index < 0 || sexp_variable_index >= MAX_SEXP_VARIABLES) in sexp_set_variable_by_index()
28271 int sexp_variable_index; in sexp_get_variable_by_index() local
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/parse/sexp/
H A DLuaSEXP.cpp157 auto sexp_variable_index = sexp_get_variable_index(node); in sexpToLua() local
160 …n LuaValue::createValue(_action.getLuaState(), l_SEXPVariable.Set(sexpvar_h(sexp_variable_index))); in sexpToLua()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/parse/
H A Dsexp.cpp21041 int i, sexp_variable_index; in sexp_int_to_string() local
21075 int sexp_variable_index; in sexp_string_concatenate() local
21115 int sexp_variable_index; in sexp_string_concatenate_block() local
29863 return sexp_variable_index; in check_text_for_variable_name()
29871 int sexp_variable_index = -1; in CTEXT() local
29917 if (sexp_variable_index >= 0) in CTEXT()
29929 Assert(sexp_variable_index != -1); in CTEXT()
30090 int sexp_variable_index; in sexp_modify_variable() local
30162 if (sexp_variable_index < 0 || sexp_variable_index >= MAX_SEXP_VARIABLES) in sexp_set_variable_by_index()
30204 int sexp_variable_index; in sexp_get_variable_by_index() local
[all …]
H A Dparselo.cpp1070 int sexp_variable_index = get_index_sexp_variable_name(str); in get_string_or_variable() local
1073 Assertion (sexp_variable_index != -1, "Didn't find variable name \"%s\"", str); in get_string_or_variable()
1074 Assert (Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_STRING); in get_string_or_variable()
1105 int sexp_variable_index = get_index_sexp_variable_name(str); in get_string_or_variable() local
1108 Assertion (sexp_variable_index != -1, "Didn't find variable name \"%s\"", str.c_str()); in get_string_or_variable()
1109 Assert (Sexp_variables[sexp_variable_index].type & SEXP_VARIABLE_STRING); in get_string_or_variable()