Mystic -- the Halloween version. Haunted!

bugz fb0269d1e0 We detect ZMODEM. vor 4 Jahren
hh 73f1efc423 I See U vor 4 Jahren
.gitignore f47cec4328 Trying to keep git status cleaned up. vor 4 Jahren
.gitmodules d9fa0e92f7 Added googletest, zf_log README.md to fix. vor 4 Jahren
CMakeLists.txt 1b754aba7c Don't display buffer debug output by default. vor 4 Jahren
README.md bae1290bc1 Update git merge notes. vor 4 Jahren
TODO.md bb9a193fa7 Directions on setting this up. vor 4 Jahren
ansi-color.c 391202b7c6 Example ANSI color file from vor 4 Jahren
ansi-to-src.cpp bcdf438f40 Make the char * output a const char * output. vor 4 Jahren
bat.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
build_images.sh 27d2b1f0fe We now tail the Mystic log files for the node. vor 4 Jahren
charman.cpp 1b754aba7c Don't display buffer debug output by default. vor 4 Jahren
charman.h 5f226410a7 Ok, there's lots of changes here. vor 4 Jahren
clang.md a6db75cee1 Added clang notes. vor 4 Jahren
ghead.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
ghost.ans 756c36a132 Updated Beanzilla's ghost.ans vor 4 Jahren
hharry.cpp fb0269d1e0 We detect ZMODEM. vor 4 Jahren
icu.ans bbbaa2b560 Added icu to images.h Cleaned up images.cpp (DRY) vor 4 Jahren
images.cpp ec4bac8871 Working level. Currently disabled. vor 4 Jahren
input-int.cpp bd6f59beb9 Regex in c++. vor 4 Jahren
lastseen.cpp 5b83c281c0 Updated using C++ objects. Tests next to do. vor 4 Jahren
lastseen.h 5b83c281c0 Updated using C++ objects. Tests next to do. vor 4 Jahren
logs_utils.cpp 98c59dcca7 Fixed issue with charman, inserting at end of string. vor 4 Jahren
logs_utils.h 98c59dcca7 Fixed issue with charman, inserting at end of string. vor 4 Jahren
mystic.py a9e00446bb Sample "mystic" to test with. vor 4 Jahren
panther.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
render.cpp 5f226410a7 Ok, there's lots of changes here. vor 4 Jahren
render.h bc540d5cef Harry level > 2, mangles intro. vor 4 Jahren
rsync_list.txt b453b5da1f I'm including my update script. vor 4 Jahren
show 930ebe20ff Ansi file to .c/.cpp. show ansi file in linux console vor 4 Jahren
show_bat_issue.sh 93429d4162 Merge of bugz-ansi. vor 4 Jahren
show_icu_issue.sh bbbaa2b560 Added icu to images.h Cleaned up images.cpp (DRY) vor 4 Jahren
show_skull_issue.sh 93429d4162 Merge of bugz-ansi. vor 4 Jahren
skull-blink.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
skull.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
terminal.cpp 9fef3df9d7 Fixed some missing color codes. vor 4 Jahren
terminal.h d5e670bc96 Ok, harry looks at node number passed -SL0 vor 4 Jahren
test-lastseen.cpp 7dd34da986 Working tests for (some of) utils. vor 4 Jahren
test-mangle.cpp 96249f7f68 Test mangle/tangle insert at end of string. vor 4 Jahren
test-render.cpp 092f3783f2 hharry.cfg level=4 back calling console_char() vor 4 Jahren
test-utils.cpp 7dd34da986 Working tests for (some of) utils. vor 4 Jahren
try-re.c fdb6107df3 Fixed clang warnings. vor 4 Jahren
update_example b453b5da1f I'm including my update script. vor 4 Jahren
utils.cpp be756863c8 Changed from 1/10 to 1/100 vor 4 Jahren
utils.h 98c59dcca7 Fixed issue with charman, inserting at end of string. vor 4 Jahren
wolf.ans 93429d4162 Merge of bugz-ansi. vor 4 Jahren
wordplay.cpp 1b754aba7c Don't display buffer debug output by default. vor 4 Jahren
wordplay.h 28491069cc Working mangle, wrangle! vor 4 Jahren

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