diff --git a/C++/scripts/filelist b/C++/scripts/filelist index 5f624fd..faf6fb4 100644 --- a/C++/scripts/filelist +++ b/C++/scripts/filelist @@ -1,3 +1,5 @@ build.sh commit.sh +lines.sh +temp web.sh diff --git a/C++/scripts/lines.sh b/C++/scripts/lines.sh new file mode 100755 index 0000000..90e6d10 --- /dev/null +++ b/C++/scripts/lines.sh @@ -0,0 +1,14 @@ +#Returns the line counts of your project. +#C++ +shopt -s extglob +ls -1 @(*.h|*.cpp) > temp +while read a; do + if [ "$a" != "pixelGameEngine.h" ] && [ "$a" != "soundwaveEngine.h" ] && [ "$a" != "splash.h" ]; + then + echo -e "$a\n" >> temp2 + fi +done < temp +wc -l $(cat temp2) + +rm temp +rm temp2 \ No newline at end of file diff --git a/C++/scripts/md5 b/C++/scripts/md5 index 7cf8083..b71151f 100644 --- a/C++/scripts/md5 +++ b/C++/scripts/md5 @@ -1,3 +1,5 @@ build.sh:530634457ea9041267c05d4ced95eee1 - commit.sh:d03a46e721060c22ccb146e19d27e70a - +lines.sh:3b907786f7fc9204025993016c9080de - +temp:d41d8cd98f00b204e9800998ecf8427e - web.sh:3dcc2fe7e036359eedd257a864e9a1e1 - diff --git a/C++/scripts/temp b/C++/scripts/temp new file mode 100644 index 0000000..e69de29 diff --git a/C++ProjectTemplate b/C++ProjectTemplate index f71260a..bb763fc 100755 Binary files a/C++ProjectTemplate and b/C++ProjectTemplate differ diff --git a/object.h b/object.h index a34aea9..6e6f1d7 100644 --- a/object.h +++ b/object.h @@ -20,7 +20,7 @@ class Object{ vd2d pos; public: int id; - Animation*spr; + Animation*spr; int frameIndex=0; int frameCount=0; int animationSpd=12; //How many frames to wait between each frame. Setting to 0 pauses the animation. @@ -177,6 +177,6 @@ class TrashCan_Obj : public Object{ DynamicObject(TrashCan_Obj) Interaction Interact()override{ frameIndex=1; - return {{"You dig around the trash can.","Nope! Just looks like good ol' trash."}};} + return {{"You dig around the trash can.","Nope! Just looks like plain ol' trash."}};} }; #endif \ No newline at end of file diff --git a/sig b/sig index 65804b4..5bd1ff3 100755 --- a/sig +++ b/sig @@ -3,7 +3,7 @@ export AUTO_UPDATE=true source utils/define.sh define PROJECT_NAME "C++ProjectTemplate" -define CUSTOM_PARAMS "-std=c++17 -lX11 -lGL -lpthread -lpng -lstdc++fs -lpulse -lpulse-simple" +define CUSTOM_PARAMS "-std=c++17 -lX11 -lGL -lpthread -lpng -lstdc++fs -lpulse -lpulse-simple -O3 -s -DNDEBUG" define LANGUAGE "C++" source utils/main.sh