summaryrefslogtreecommitdiff
path: root/gui/messages.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-21 13:41:45 -0400
committerbd <bdunahu@operationnull.com>2025-04-21 13:41:45 -0400
commit9fe7235d7c06677f152e20b9deac85e633f429a6 (patch)
tree3277706d1e8893c75872c1710bd0a375809f925e /gui/messages.h
parentdbf5d3986e5fe271b072cd3d32e73e4fa26a5fae (diff)
Add some expression
Diffstat (limited to 'gui/messages.h')
-rw-r--r--gui/messages.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/gui/messages.h b/gui/messages.h
index adae777..03c0ab3 100644
--- a/gui/messages.h
+++ b/gui/messages.h
@@ -9,19 +9,15 @@
#define RANDOM_MESSAGE(v) (v[std::rand() % v.size()])
const std::vector<std::string> waiting = {
- "WAITING FOR USER", "READY", "BORED", "SLEEPING"};
-const std::vector<std::string> running = {
- "COMPUTING", "WORKING", "BUSY"};
+ "WAITING FOR USER", "IDLE", "BORED", "SLEEPING"};
+const std::vector<std::string> running = {"COMPUTING", "WORKING", "BUSY"};
const std::vector<std::string> load_file = {"FILE LOADED"};
const std::vector<std::string> no_instructions = {
- "NO PROGRAM PROVIDED", "INSTRUCTIONS NOT INCLUDED",
- "NOTHING TO DO, GIVING UP"};
+ "NO PROGRAM PROVIDED", "NOTHING TO DO, GIVING UP"};
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 :(", "SIMULATION READY"};
-const std::vector<std::string> no_cache = {
- "SIMULATION READY: NO WAYS", "SIMULATION READY"};
+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"};
/**