Skip to content

Commit

Permalink
Change play.html to use the unminified versions of quixe
Browse files Browse the repository at this point in the history
  • Loading branch information
Logicalshift committed May 6, 2012
1 parent 7b8936f commit 81412eb
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 3 deletions.
21 changes: 18 additions & 3 deletions HtmlRuntime/play.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@

</style>

<script src="lib/glkote.min.js" type="text/javascript"></script>
<script src="lib/quixe.min.js" type="text/javascript"></script>
<script src="prototype-1.6.1.js" type="text/javascript"></script>
<script src="glkote/glkote.js" type="text/javascript"></script>
<script src="glkote/dialog.js" type="text/javascript"></script>
<script src="glkote/glkapi.js" type="text/javascript"></script>
<script src="quixe/quixe.js" type="text/javascript"></script>
<script src="quixe/gi_dispa.js" type="text/javascript"></script>
<script src="quixe/gi_load.js" type="text/javascript"></script>

<script type="text/javascript">
game_options = {
Expand All @@ -40,7 +45,17 @@
</script>

</head>
<body onload="console.log('play.html starting'); GiLoad.load_run();">
<body onload="console.log('play.html starting');
try {
GiLoad.load_run();
} catch (err) {
console.log(err.message);
console.log(err.toString());
for (var prop in err) {
console.log(prop + ':' + err[prop]);
}
}">

<div id="gameport">
<div id="windowport">
Expand Down
36 changes: 36 additions & 0 deletions Inform.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,13 @@
4B75343A06284F5900824F26 /* debug.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B75343906284F5900824F26 /* debug.png */; };
4B7534C606286ADC00824F26 /* CompilerOutput.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4B7534C506286ADC00824F26 /* CompilerOutput.strings */; };
4B7535230628709300824F26 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4B7535220628709300824F26 /* Localizable.strings */; };
4B76A1391556C1E60055F5C6 /* dialog.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B4841556B28F00C2EAA4 /* dialog.js */; };
4B76A13A1556C1E60055F5C6 /* glkapi.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B4851556B28F00C2EAA4 /* glkapi.js */; };
4B76A13B1556C1E60055F5C6 /* glkote.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B4861556B28F00C2EAA4 /* glkote.js */; };
4B76A13C1556C1ED0055F5C6 /* gi_dispa.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B4881556B28F00C2EAA4 /* gi_dispa.js */; };
4B76A13D1556C1ED0055F5C6 /* gi_load.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B4891556B28F00C2EAA4 /* gi_load.js */; };
4B76A13E1556C1ED0055F5C6 /* quixe.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BC1B48A1556B28F00C2EAA4 /* quixe.js */; };
4B76A13F1556C7040055F5C6 /* prototype-1.6.1.js in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4B7C60681556C08A0045F19A /* prototype-1.6.1.js */; };
4B76FE3F083D03B500A95AF2 /* IFDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B76FE3D083D03B500A95AF2 /* IFDiff.h */; };
4B76FE40083D03B500A95AF2 /* IFDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B76FE3E083D03B500A95AF2 /* IFDiff.m */; };
4B777326072C156600E8B93F /* NaturalInformExtensions.nib in Resources */ = {isa = PBXBuildFile; fileRef = 4B777324072C156600E8B93F /* NaturalInformExtensions.nib */; };
Expand Down Expand Up @@ -861,13 +868,38 @@
name = "Copy extra executables";
runOnlyForDeploymentPostprocessing = 0;
};
4B76A1371556C1CB0055F5C6 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = HtmlRuntime/glkote;
dstSubfolderSpec = 7;
files = (
4B76A1391556C1E60055F5C6 /* dialog.js in CopyFiles */,
4B76A13A1556C1E60055F5C6 /* glkapi.js in CopyFiles */,
4B76A13B1556C1E60055F5C6 /* glkote.js in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B76A1381556C1CE0055F5C6 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = HtmlRuntime/quixe;
dstSubfolderSpec = 7;
files = (
4B76A13C1556C1ED0055F5C6 /* gi_dispa.js in CopyFiles */,
4B76A13D1556C1ED0055F5C6 /* gi_load.js in CopyFiles */,
4B76A13E1556C1ED0055F5C6 /* quixe.js in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B8148000A1A884F00C38509 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = HtmlRuntime;
dstSubfolderSpec = 7;
files = (
4BAAE2B41556B0D10068D5CF /* play.html in CopyFiles */,
4B76A13F1556C7040055F5C6 /* prototype-1.6.1.js in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -1307,6 +1339,7 @@
4B79D5B40BDE4EAD0091A933 /* ForeArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ForeArrow.png; sourceTree = "<group>"; };
4B79D6240BDE54020091A933 /* BarMenuArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BarMenuArrow.png; sourceTree = "<group>"; };
4B7B778E069B272600B8C53E /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = Inspector/English.lproj/SkeinInspector.nib; sourceTree = "<group>"; };
4B7C60681556C08A0045F19A /* prototype-1.6.1.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; name = "prototype-1.6.1.js"; path = "depends/quixe/src/prototype-1.6.1.js"; sourceTree = SOURCE_ROOT; };
4B7DD5C41062D4F100E82D2E /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/RandomSettings.nib; sourceTree = "<group>"; };
4B7DD5CF1062D53000E82D2E /* IFRandomSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IFRandomSettings.h; sourceTree = "<group>"; };
4B7DD5D01062D53000E82D2E /* IFRandomSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IFRandomSettings.m; sourceTree = "<group>"; };
Expand Down Expand Up @@ -2590,6 +2623,7 @@
isa = PBXGroup;
children = (
4BAAE2B31556B0C00068D5CF /* play.html */,
4B7C60681556C08A0045F19A /* prototype-1.6.1.js */,
4BC1B4981556B60F00C2EAA4 /* media */,
4BC1B4931556B45500C2EAA4 /* lib */,
4BC1B4831556B28F00C2EAA4 /* glkote */,
Expand Down Expand Up @@ -3380,6 +3414,8 @@
4B8148000A1A884F00C38509 /* CopyFiles */,
4BC1B48B1556B2EB00C2EAA4 /* CopyFiles */,
4BC1B49E1556B61600C2EAA4 /* CopyFiles */,
4B76A1371556C1CB0055F5C6 /* CopyFiles */,
4B76A1381556C1CE0055F5C6 /* CopyFiles */,
4B81D2E408112D1300CF609F /* Copy interpreters */,
4BC6243F082A71E4007827B5 /* (Script): Build applescript dictionaries */,
4B26D6250B23835100E74BCB /* (Script): Create directories */,
Expand Down

0 comments on commit 81412eb

Please sign in to comment.