2024-07-08 22:05:15 +02:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* *
|
|
|
|
* Gem-graph client *
|
|
|
|
* *
|
2024-07-22 15:42:24 +02:00
|
|
|
* Finite State Machine (fsm) header *
|
2024-07-08 22:05:15 +02:00
|
|
|
* *
|
|
|
|
* Copyright © 2021 Libre en Communs <contact@a-lec.org> *
|
|
|
|
* Copyright © 2021 Adrien Bourmault <neox@a-lec.org> *
|
|
|
|
* Copyright © 2021 Jean Sirmai <jean@a-lec.org> *
|
|
|
|
* *
|
|
|
|
* This file is part of Gem-graph. *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Affero General Public License *
|
|
|
|
* as published by the Free Software Foundation, *
|
|
|
|
* either version 3 of the License, *
|
|
|
|
* or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; *
|
|
|
|
* without even the implied warranty of MERCHANTABILITY *
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
|
|
* See the GNU Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
|
2024-07-18 23:51:04 +02:00
|
|
|
#pragma once
|
2024-07-08 22:05:15 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* S T A T E M A C H I N E */
|
|
|
|
/******************************************************************************/
|
2024-07-22 18:02:14 +02:00
|
|
|
// called by widgets through signal functions
|
2024-07-08 22:05:15 +02:00
|
|
|
|
2024-07-21 23:17:01 +02:00
|
|
|
enum fsm_choice_EXEC_EDIT { EXEC, EDIT }; // xor
|
|
|
|
enum fsm_choice_STATE_RULES_DATA { STATE, RULES, DATA }; // xor
|
2024-07-08 22:05:15 +02:00
|
|
|
|
2024-07-21 12:33:29 +02:00
|
|
|
int fsm_get_exec_edit ();
|
|
|
|
int fsm_get_state_rules_data ();
|
2024-07-21 13:01:30 +02:00
|
|
|
int fsm_get_objects_box_reset_value ();
|
|
|
|
int fsm_get_situations_box_reset_value ();
|
2024-07-19 00:17:19 +02:00
|
|
|
|
2024-07-21 12:33:29 +02:00
|
|
|
void fsm_set_exec_edit (int value);
|
|
|
|
void fsm_set_state_rules_data (int value);
|
2024-07-20 19:04:08 +02:00
|
|
|
|
|
|
|
void fsm_reset_all_objects_transparencies_at_value (int value);
|
|
|
|
void fsm_reset_all_situations_transparencies_at_value (int value);
|
2024-07-09 23:03:11 +02:00
|
|
|
|
2024-07-08 22:05:15 +02:00
|
|
|
|