Update to remove Makefile ideas because IDE is better
This commit is contained in:
parent
2294147235
commit
78c47865ef
@ -10,7 +10,7 @@ Chapter 1 - General Set Up
|
|||||||
|
|
||||||
The release number is 1.
|
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.".
|
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.
|
Include Basic Screen Effects by Emily Short.
|
||||||
|
|
||||||
The block giving rule is not listed in the check giving it to rules.
|
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 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.";
|
say "[line break]The courtroom erupts in cheering.";
|
||||||
now Courtroom Decision is true.
|
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".
|
|
||||||
|
27
Makefile
27
Makefile
@ -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
|
|
Loading…
Reference in New Issue
Block a user