diff options
-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 |