From 16527cb3fb91c253b4511ae7af8b48f5873398d2 Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 27 Jan 2024 10:23:45 -0800 Subject: [PATCH] terminal colors --- README.md | 4 +++ .../index/Main.cpp.59B438EDC5609780.idx | Bin 432 -> 718 bytes client/src/Main.cpp | 13 +++++++++- client/src/include/colors.h | 24 ++++++++++++++++++ 4 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 README.md create mode 100644 client/src/include/colors.h diff --git a/README.md b/README.md new file mode 100644 index 0000000..07f332e --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# How it works + +1. run local server within network +2. run client on different computers within network diff --git a/client/.cache/clangd/index/Main.cpp.59B438EDC5609780.idx b/client/.cache/clangd/index/Main.cpp.59B438EDC5609780.idx index fc7a046843bbc673d376c6cfe19ccd96b52a3005..bb9b014ab66b9ff61e3b1820916260e05d117b36 100644 GIT binary patch delta 418 zcmdnMe2$eZ$kWa37}G{J6~_7$Mh1p!TLNYNS5M()WZ~iD<>WUIzasJYT~XvYO~UiwQ%4SRa$O6>E$07g|2I}EsN8)kwaU=6oxz%ARi&AqE8GxX;D7jc1#NY)HV8F<8 k@8i5B>_x`>jJyoVxhXk3415d>99&#X%&ctOEbNS&0H~38YXATM delta 151 zcmX@dx`CN3$kWYj1>;6G6~=m31_p+WF*l4B_3#TZ^6;>5vhW&+Uy*qHt|$^lGjj1T zu`qD}6@r14+{aVdY>6KkS$J6ZSOj3I7>ZJJ5`CfnmDwMD bGV(Gc=ceTF0EIcYxR{vPS=qQ**cmwiauXq| diff --git a/client/src/Main.cpp b/client/src/Main.cpp index d494d7a..9a04faf 100644 --- a/client/src/Main.cpp +++ b/client/src/Main.cpp @@ -1,7 +1,18 @@ +#include "include/colors.h" #include int main() { - std::cout << "Hello World!\n"; + std::cout << "Hello World!" << std::endl; + + // ask for name of person + std::cout << "Please enter your first name: "; + char *name = new char[100]; + std::cin >> name; + + std::string welcome_message = "Welcome, " + std::string(name) + "!"; + + std::cout << std::endl << BOLDGREEN << welcome_message << RESET << std::endl; + return 0; } diff --git a/client/src/include/colors.h b/client/src/include/colors.h new file mode 100644 index 0000000..54da148 --- /dev/null +++ b/client/src/include/colors.h @@ -0,0 +1,24 @@ +// You need the terminal color codes. For linux it's the following (your system might be different, look it up): + +//the following are UBUNTU/LINUX, and MacOS ONLY terminal color codes. +#define RESET "\033[0m" +#define BLACK "\033[30m" /* Black */ +#define RED "\033[31m" /* Red */ +#define GREEN "\033[32m" /* Green */ +#define YELLOW "\033[33m" /* Yellow */ +#define BLUE "\033[34m" /* Blue */ +#define MAGENTA "\033[35m" /* Magenta */ +#define CYAN "\033[36m" /* Cyan */ +#define WHITE "\033[37m" /* White */ +#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */ +#define BOLDRED "\033[1m\033[31m" /* Bold Red */ +#define BOLDGREEN "\033[1m\033[32m" /* Bold Green */ +#define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */ +#define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */ +#define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */ +#define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */ +#define BOLDWHITE "\033[1m\033[37m" /* Bold White */ + +// Note: If you don't use RESET the color will remain changed until the next time you use a color code. + +// from: https://stackoverflow.com/questions/9158150/colored-output-in-c/9158263