From 78c47865ef5b6878b6125d3d10d8f2410eb9eabe Mon Sep 17 00:00:00 2001 From: William Moore Date: Mon, 6 Feb 2023 03:03:09 -0600 Subject: [PATCH] Update to remove Makefile ideas because IDE is better --- ButteredToast4.inform/Source/story.ni | 8 +------- Makefile | 27 --------------------------- Targets | 1 - 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 Makefile delete mode 100644 Targets diff --git a/ButteredToast4.inform/Source/story.ni b/ButteredToast4.inform/Source/story.ni index 4764e5d..2723f5b 100644 --- a/ButteredToast4.inform/Source/story.ni +++ b/ButteredToast4.inform/Source/story.ni @@ -10,7 +10,7 @@ Chapter 1 - General Set Up The release number is 1. The story description is "An interactive fiction of capering around a mega structure with the hopes of finding true -- whatever.". -Release along with cover art, an introductory booklet, a website, an interpreter, a library card, a solution, and the source text. +Release along with cover art, an introductory booklet, a website, an interpreter, a library card, a public solution, and the source text. Include Basic Screen Effects by Emily Short. The block giving rule is not listed in the check giving it to rules. @@ -483,9 +483,3 @@ When Act II begins: say "[line break]The judge says 'All rise! We will now read the verdict. The jury finds with one exception that the defendant is -- innocent!'"; say "[line break]The courtroom erupts in cheering."; now Courtroom Decision is true. - -Chapter 8 - Tests - -test happypath with "x mr / x tv / x door / talk to mr / se / x cherry / x blueberry / get cherry / sw / x marshie / give pie to marshie / s / w / x bucket / x fountain / get bucket / insert bucket into fountain / e / e / x goldfish / put goldfish into bucket / w / put bucket into ginormous aquarium / s / x Painting of the Tower of Plargh / - x Painting of Mirren Lisa / x Photo of a Deaf Zeppelin / x Painting of Dogs Playing Yahtzee / take Painting of Dogs Playing Yahtzee / w / x spork / drink pepso / sw / enter Cheese Shop Door / x cheddar / x venezuelan beaver cheese / x limburger / talk to shopkeep / point at cheddar / point at venezuelan beaver cheese / point at limburger / e / - s / sw / x potatoes / take potatoes / eat potatoes / ne / w / x podium / get papers / x papers / x baron von evil / x lord goodfellow / talk to lord goodfellow / e / sw / u / w / x Melkior / talk to Melkior / e / nw / x corrupt cop / x bad cop / open locker". diff --git a/Makefile b/Makefile deleted file mode 100644 index ac5b385..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -SRCDIR := . - -include Targets - -all: $(TARGETS) - -$(TARGETS): %.inform - $(eval PROJDIR := $(SRCDIR)/$@.inform) - $(eval SRCS := $(wildcard $(PROJDIR)/Source/*.ni)) - $(eval I6S := $(patsubst %.ni,%.i6,$(SRCS))) - $(INFORM7) -project "$(PROJDIR)" $(ARGS) - $(INFORM6) -E2w~S~DG $(PROJDIR)/Build/auto.inf $(PROJDIR)/Build/output.ulx - $(INBLORB) $(PROJDIR)/Release.blurb $(SRCDIR)/$@.gblorb - $(IF)/web.sh $@ - -%.inform: - echo $@ - -clean_inform: - echo $(SRCDIR)/$(TARGET_NAME)/Build - -web: - $(foreach TARGET_NAME, $(TARGETS), - python3 $(IF)/blorbtool.py $(TARGET_NAME).gblorb giload $(TARGET_NAME).materials/Release/interpreter interpreter && echo `pwd` && cp $(TARGET_NAME).gblorb "$(TARGET_NAME).materials/Release/`cat $(TARGET_NAME).inform/Release.blurb | grep -Eo -m1 '([^\"]+\.gblorb)' | sed -e 's/\( \)/\\ /g'`" ) - -clean: - $(foreach TARGET_NAME, $(TARGETS), - rm -rf $(SRCDIR)/$(TARGET_NAME).inform/Build - rm -rf $(SRCDIR)/$(TARGET_NAME).materials/Release $(SRCDIR)/$(TARGET_NAME).inform/Index $(SRCDIR)/$(TARGET_NAME).inform/*.plist $(SRCDIR)/$(TARGET_NAME).inform/*.iFiction $(SRCDIR)/$(TARGET_NAME).inform/*.blurb ) - - rm *.gblorb diff --git a/Targets b/Targets deleted file mode 100644 index 386eb39..0000000 --- a/Targets +++ /dev/null @@ -1 +0,0 @@ -TARGETS := ButteredToast4