Mystic -- the Halloween version. Haunted!

bugz 967cb941e2 Storing ANSI in notes directory. 4 gadi atpakaļ
hh 73f1efc423 I See U 4 gadi atpakaļ
notes 967cb941e2 Storing ANSI in notes directory. 4 gadi atpakaļ
.gitignore f47cec4328 Trying to keep git status cleaned up. 4 gadi atpakaļ
.gitmodules d9fa0e92f7 Added googletest, zf_log README.md to fix. 4 gadi atpakaļ
CMakeLists.txt 7f1227f2c2 "Fixed" issue where build would always build. 4 gadi atpakaļ
README.md bae1290bc1 Update git merge notes. 4 gadi atpakaļ
TODO.md bb9a193fa7 Directions on setting this up. 4 gadi atpakaļ
ansi-color.c 391202b7c6 Example ANSI color file from 4 gadi atpakaļ
ansi-to-src.cpp bcdf438f40 Make the char * output a const char * output. 4 gadi atpakaļ
bat.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
build_images.sh 7caee2c0a6 Clean up the temp file. 4 gadi atpakaļ
charman.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. 4 gadi atpakaļ
charman.h 5f226410a7 Ok, there's lots of changes here. 4 gadi atpakaļ
ghead.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
ghost.ans 756c36a132 Updated Beanzilla's ghost.ans 4 gadi atpakaļ
hharry.cpp b302c0b7ef No more using namespace std; 4 gadi atpakaļ
icu.ans bbbaa2b560 Added icu to images.h Cleaned up images.cpp (DRY) 4 gadi atpakaļ
images.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. 4 gadi atpakaļ
input-int.cpp b302c0b7ef No more using namespace std; 4 gadi atpakaļ
lastseen.cpp 5b83c281c0 Updated using C++ objects. Tests next to do. 4 gadi atpakaļ
lastseen.h 5b83c281c0 Updated using C++ objects. Tests next to do. 4 gadi atpakaļ
logs_utils.cpp 98c59dcca7 Fixed issue with charman, inserting at end of string. 4 gadi atpakaļ
logs_utils.h 98c59dcca7 Fixed issue with charman, inserting at end of string. 4 gadi atpakaļ
mystic.py a9e00446bb Sample "mystic" to test with. 4 gadi atpakaļ
panther.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
render.cpp 5761a6c3db console.posx/posy working. 4 gadi atpakaļ
render.h bc540d5cef Harry level > 2, mangles intro. 4 gadi atpakaļ
rsync_list.txt b453b5da1f I'm including my update script. 4 gadi atpakaļ
show 930ebe20ff Ansi file to .c/.cpp. show ansi file in linux console 4 gadi atpakaļ
show_bat_issue.sh 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
show_icu_issue.sh bbbaa2b560 Added icu to images.h Cleaned up images.cpp (DRY) 4 gadi atpakaļ
show_skull_issue.sh 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
skull-blink.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
skull.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
terminal.cpp 5761a6c3db console.posx/posy working. 4 gadi atpakaļ
terminal.h d5e670bc96 Ok, harry looks at node number passed -SL0 4 gadi atpakaļ
test-lastseen.cpp 7dd34da986 Working tests for (some of) utils. 4 gadi atpakaļ
test-mangle.cpp c2a7c18ba9 Added USER and NICK into harry_timeout_event 4 gadi atpakaļ
test-render.cpp 092f3783f2 hharry.cfg level=4 back calling console_char() 4 gadi atpakaļ
test-terminal.cpp 5761a6c3db console.posx/posy working. 4 gadi atpakaļ
test-utils.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. 4 gadi atpakaļ
try-re.c fdb6107df3 Fixed clang warnings. 4 gadi atpakaļ
update_example b453b5da1f I'm including my update script. 4 gadi atpakaļ
utils.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. 4 gadi atpakaļ
utils.h b0fdb32f76 Cleaned up warnings. Fixed utils test. 4 gadi atpakaļ
wolf.ans 93429d4162 Merge of bugz-ansi. 4 gadi atpakaļ
wordplay.cpp b66edae94c Bugz has you. Ok, updated phrases. 4 gadi atpakaļ
wordplay.h 28491069cc Working mangle, wrangle! 4 gadi atpakaļ

README.md

# To Use:

# git submodule update --init

Do this instead. Avoid submodule hell.

git clone https://github.com/wonder-mice/zf_log.git
git clone https://github.com/google/googletest.git

sudo apt install cmake

cmake .
make

Also:

  • codium clang-format extension
  • codium c/c++ advanced lint

    apt install clang-format clang cppcheck

Build a "release" build

cmake -DCMAKE_BUILD_TYPE=Release .
make

To switch back to "debug" build

cmake -DCMAKE_BUILD_TYPE=Debug .
make

Branches

git checkout -b new-branch

or, a longer way to type that:

git branch new-branch
git checkout new-branch

git commit 

And your changes go into the new-branch

Pushing your new branch

git push -u origin new-branch

If you recall using git push -u when you first setup the git repo. Well, it's that all over again, but with a new branch.

Returning to reality

git checkout master

Pulling files from one branch into another

git checkout master
git checkout bugz-ansi -- ghost.ans ghead.ans bat.ans utils.h utils.cpp

This would pull files from bugz-ansi branch into the master branch.

Merging back into master

git checkout master
git merge cplusplus