diff --git a/.gitignore b/.gitignore index a4201c23f5f846ad8aff2c6941f5f6511272b99d..25465c247765b92d4e5772b770f731b133d83b64 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ var/ *.egg-info/ .installed.cfg *.egg +bin/* # PyInstaller # Usually these files are written by a python script from a template diff --git a/bin/.gitignore b/bin/.gitignore deleted file mode 100644 index 835f2b74dbda0fdaf8bcecc49ad6a3fb8abc80c9..0000000000000000000000000000000000000000 --- a/bin/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except the following: -!.gitignore \ No newline at end of file diff --git a/compile b/compile index c9bb6c0cd576c3111a246d3985f774f3c7670586..71583bfdcf9e0af3c02a62bc220e0c737ee2c05b 100755 --- a/compile +++ b/compile @@ -1,5 +1,5 @@ #!/bin/bash - +find bin/ >/dev/null 2>&1;if [ `echo $?` -gt 0 ];then mkdir bin/;fi while [[ "$1" ]] do case $1 in diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index 8f1186b094e7df8479a806c141d379f88b14df9d..a074ec31fe01ee7930e6633f7c62ba8474ed1831 100644 --- a/devNotes/Useful JS Function Documentation.txt +++ b/devNotes/Useful JS Function Documentation.txt @@ -349,3 +349,11 @@ UtilJS [script] HackingSkillMultiplier() - outputs a value based off of the PC's hacking skill. upgradeMultiplierArcology() - outputs a value based off of the PC's engineering skill. + + passageLink() - Creates a HTML element with custom SugarCube attributes which works as a passage link + + SkillIncrease() - Depeciates the sugarcube fuctions. + + jsNdef - A .js port of sugarcube's ndef. + + jsDef - A .js port of sugarcube's def. \ No newline at end of file diff --git a/devTools/PreCompile.sh b/devTools/PreCompile.sh index d06102056df6394b2c006913de51c8526b71a967..e0f9f459b9758611fe37a0e86e44dc0153c577dd 100755 --- a/devTools/PreCompile.sh +++ b/devTools/PreCompile.sh @@ -1,8 +1,7 @@ #!/bin/sh -x=bin/* #Packages required: MEGAcmd,minify,git. U=$1 P=$2 remtDir=$3 locDir=$4 repo=$5 -echo 'New clone? 0:y 1:n 2:na';read Opt;clear;mega-login $U $P >/dev/null -while true;do cd $4 2>/dev/null && if [ $? -eq 0 ];then cd $4;fi - if [ $Opt -eq 0 ];then A=[$(mega-ls $3/|cut -c 29-|sed s/.html//|paste -sd,"")];mkdir -p $4 && git clone -q --no-tags --depth 1 $5 $4 && cd $4 && V=$(git log -1|grep comm|cut -c 8-11);if [[ ! " ${A[@]} " =~ " ${V} " ]];then gen=1;fi #arraryCheck:stackoverflow.com/a/15394738 - elif [[ $Opt > 0||$gen < 1 ]];then git fetch -q;if [ `git rev-list HEAD...origin/pregmod-master --count` -gt 0 ];then git reset -q --hard HEAD && git pull -q && gen=1;fi ;fi #gitCheck:stackoverflow.com/a/17192101 - if [[ $Opt > 1||$gen > 0 ]];then rm $x 2>/dev/null;minify -rao $4 $4 && ./compile --insane >/dev/null && mv $x bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%d-%m-%Y-%H-%M')-$(git log -1|grep comm|cut -c 8-11).html && mega-put -c $x $3 && if [ `mega-ls $3|wc -l` -gt 10 ];then mega-rm $3$(mega-ls $3|sort -r|tail -n +11);fi ; fi -gen=0;Opt=-1;sleep 15m;done \ No newline at end of file +mega-login $1 $2;echo 'New clone? 0:y 1:n 2:na';read Opt #Requirements:MEGAcmd,minify,git. U=$1 P=$2 rDir=$3 lDir=$4 repo=$5 +while true;do cd $4;gen=0 + if [ $Opt == 0 ];then mkdir -p $4&&git clone -q --depth 1 $5 $4&&cd $4&&if [[ ! `mega-ls $3|cut -c29-32|paste -sd,` =~ `git log|head -1|cut -c8-11` ]];then gen=1;fi #arraryCheck:stackoverflow.com/a/15394738 + elif [[ $Opt > 0||$gen < 1 ]];then git fetch -q&&if [ `git rev-list ...origin --count` -gt 0 ];then git reset -q --hard&&git pull -q&&gen=1;fi ;fi #gitCheck:stackoverflow.com/a/17192101 + if [[ $Opt > 1||$gen > 0 ]];then minify -rao $4 $4&&./compile --insane&&cd bin/&&rm FC-*;mv * FC-pregmod-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html&&mega-put -c * $3&&mega-rm $3`mega-ls $3|sort -r|tail -n +11`;fi +Opt=-1;clear;sleep 15m;done diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 58f1ef7bf16d9b7294dbd3726ad28301e81aba3a..98279ec9e7cb5fe73c1084f01f1d589d1fd47241 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -1391,4 +1391,12 @@ window.upgradeMultiplierArcology = function() { } else if (V.PC.engineering >= 100 || V.PC.career === "arcology owner") { return 0.80; } +}; + +window.jsNdef = function(input) { + if (typeof input === "undefined") return true; else return false; +}; + +window.jsDef = function(input) { + if (typeof input !== "undefined") return true; else return false; }; \ No newline at end of file diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 3c1bb3c7b0b12cd6c651f044965a61cc65f5f43a..0c0406f501ed539cb892acf4ba76c0b19af881a7 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -3567,4 +3567,4 @@ Done! <<set $upgradeMultiplierArcology = upgradeMultiplierArcology()>> /* reset NaNArray after BC is run */ -<<set $NaNArray = findNaN()>> \ No newline at end of file +<<set $NaNArray = findNaN()>>