diff options
author | bd <bdunahu@operationnull.com> | 2025-04-21 14:04:25 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-21 14:04:25 -0400 |
commit | 7528ad6291e6521127cf0e2a503be97095246bb0 (patch) | |
tree | 1c3dd247691d78518c847933cb64c2874b14e2fe /gui | |
parent | 9fe7235d7c06677f152e20b9deac85e633f429a6 (diff) |
Add some new messages
Diffstat (limited to 'gui')
-rw-r--r-- | gui/messages.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/gui/messages.h b/gui/messages.h index 03c0ab3..f0cc504 100644 --- a/gui/messages.h +++ b/gui/messages.h @@ -9,16 +9,23 @@ #define RANDOM_MESSAGE(v) (v[std::rand() % v.size()]) const std::vector<std::string> waiting = { - "WAITING FOR USER", "IDLE", "BORED", "SLEEPING"}; -const std::vector<std::string> running = {"COMPUTING", "WORKING", "BUSY"}; -const std::vector<std::string> load_file = {"FILE LOADED"}; + "WAITING FOR USER", "IDLE", "BORED", "SLEEPING", + "TAKING A BREAK", "IDLING", "DAYDREAMING", "WAITING FOR INPUT"}; +const std::vector<std::string> running = { + "COMPUTING", "WORKING", "BUSY", "RUNNING"}; +const std::vector<std::string> load_file = { + "FILE LOADED", "FILE PARSED", "FILE READ", "READING... DONE"}; const std::vector<std::string> no_instructions = { - "NO PROGRAM PROVIDED", "NOTHING TO DO, GIVING UP"}; + "NO PROGRAM PROVIDED", "NOTHING TO DO, GIVING UP", "INSTRUCTIONS MISSING", + "404 INSTRUCTIONS NOT FOUND"}; const std::vector<std::string> bad_cache = { - "WAYS CANNOT BE BELOW 0 OR ABOVE 5"}; -const std::vector<std::string> no_pipeline = {"SIMULATION READY: NO PIPE"}; -const std::vector<std::string> no_cache = {"SIMULATION READY: NO CACHE"}; -const std::vector<std::string> initialize = {"SIMULATION READY"}; + "WAYS CANNOT BE BELOW 0 OR ABOVE 4"}; +const std::vector<std::string> no_pipeline = { + "SIMULATION READY: NO PIPE", "PIPE OFF, SIMULATION READY"}; +const std::vector<std::string> no_cache = { + "SIMULATION READY: NO CACHE", "CACHE OFF, SIMULATION READY"}; +const std::vector<std::string> initialize = { + "SIMULATION READY", "ALL MODULES LOADED, SIMULATION READY"}; /** * @return an unsolicited status messages |