mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Toggles the solution setup screen on/off
|
|
*
|
|
* Arguments:
|
|
* Apply new data? <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* 1 call ace_atragmx_fnc_toggle_solution_setup
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (ctrlVisible 15000) then {
|
|
false call FUNC(show_solution_setup);
|
|
true call FUNC(show_main_page);
|
|
|
|
if (_this == 1) then {
|
|
GVAR(currentScopeClickUnit) = GVAR(currentScopeClickUnitTemp);
|
|
GVAR(currentScopeClickNumber) = GVAR(currentScopeClickNumberTemp);
|
|
GVAR(workingMemory) set [7, GVAR(currentScopeClickUnit)];
|
|
GVAR(workingMemory) set [8, GVAR(currentScopeClickNumber)];
|
|
[] call FUNC(update_scope_unit);
|
|
[] call FUNC(update_result);
|
|
};
|
|
} else {
|
|
true call FUNC(show_solution_setup);
|
|
false call FUNC(show_main_page);
|
|
|
|
GVAR(currentScopeClickUnitTemp) = GVAR(currentScopeClickUnit);
|
|
GVAR(currentScopeClickNumberTemp) = GVAR(currentScopeClickNumber);
|
|
|
|
[] call FUNC(update_solution_setup);
|
|
};
|