SQCSimulator2023/SQCSim-srv/define.h

32 lines
1.0 KiB
C
Raw Permalink Normal View History

2023-09-24 11:07:03 -04:00
#ifndef SRV_DEFINE_H__
#define SRV_DEFINE_H__
2023-09-24 08:45:40 -04:00
#include "../SQCSim-common/define.h"
#include <iostream>
#include <sstream>
#include <cctype>
#include <string>
2023-09-24 11:07:03 -04:00
#define MAX_CONNECTIONS 16
2023-09-28 09:15:39 -04:00
#define ID_LIST_SIZE 127
2023-10-18 09:33:56 -04:00
#define SRV_MANUAL_SETUP true
2023-09-28 09:15:39 -04:00
2023-12-06 11:16:39 -05:00
// @ = Dead guy, $ = Killer.
2023-12-05 15:02:31 -05:00
const std::vector<std::string> DEATHMESSAGES = { "@ has gone to meet their maker.",
"@ has bit the dust, if you know what I mean.",
"@ has ceased to be.",
"@ is no more.",
"@ is like, super dead.",
2023-12-06 11:16:39 -05:00
"Requiescat In Pace, @.",
2023-12-05 15:02:31 -05:00
"So long, @, and thanks for all the lols!",
2023-12-06 11:16:39 -05:00
"@ has a bad case of being dead.",
"@ has finally seen the light!",
2023-12-18 13:29:38 -05:00
"$ sees dead people; in this case they see a dead @.",
2023-12-06 11:16:39 -05:00
"Thought @ was hot; guess what? He's not. He is dead, dead, dead.",
"@ did not want to live forever.",
"$ made @ die for their country.",
"$ has become death, destroyer of @.",
"$ did not make @ feel lucky." };
2023-12-05 14:25:21 -05:00
#endif