Added Entity.prototype.dumpState() method when using debug console. [Mac] Debug.OXP is once again build by Build All target. Don't know what happened there.
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@4175 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
parent
436dfe5ebe
commit
fcb033d3ef
@ -147,6 +147,16 @@ result
|
|||||||
Set by some macros, such as :find.
|
Set by some macros, such as :find.
|
||||||
|
|
||||||
|
|
||||||
|
The console script also adds two methods to all entities:
|
||||||
|
function dumpState()
|
||||||
|
Writes information about the entity to the log. (This is the same stuff
|
||||||
|
you get if you press 0 while paused, but for a single entity.)
|
||||||
|
|
||||||
|
function inspect()
|
||||||
|
Calls console.inspectEntity() on the entity (see above; only useful in
|
||||||
|
Mac OS X).
|
||||||
|
|
||||||
|
|
||||||
Oolite Debug OXP
|
Oolite Debug OXP
|
||||||
|
|
||||||
Copyright © 2007-2011 the Oolite team
|
Copyright © 2007-2011 the Oolite team
|
||||||
@ -763,6 +773,13 @@ Object.defineProperty(Entity.prototype, "inspect", { value: function inspect()
|
|||||||
}});
|
}});
|
||||||
|
|
||||||
|
|
||||||
|
// Add dumpState() method to all entities, to log a bunch of stuff.
|
||||||
|
Object.defineProperty(Entity.prototype, "dumpState", { value: function dumpState()
|
||||||
|
{
|
||||||
|
this.callObjC("dumpState");
|
||||||
|
}});
|
||||||
|
|
||||||
|
|
||||||
console.__setUpCallObjC(Object.prototype);
|
console.__setUpCallObjC(Object.prototype);
|
||||||
|
|
||||||
}).call(this);
|
}).call(this);
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
1AD267560C83052600B4BFD1 /* PBXTargetDependency */,
|
1AD267560C83052600B4BFD1 /* PBXTargetDependency */,
|
||||||
1A09EFBD12BD118300BF7F48 /* PBXTargetDependency */,
|
1A09EFBD12BD118300BF7F48 /* PBXTargetDependency */,
|
||||||
1ABF219A12D691A300075821 /* PBXTargetDependency */,
|
1ABF219A12D691A300075821 /* PBXTargetDependency */,
|
||||||
|
1A6973C312F46643000CC708 /* PBXTargetDependency */,
|
||||||
);
|
);
|
||||||
name = "Build All";
|
name = "Build All";
|
||||||
productName = "Build All";
|
productName = "Build All";
|
||||||
@ -460,6 +461,7 @@
|
|||||||
1A644E221052AA0100833636 /* traderInterceptAI.plist in Copy AIs */ = {isa = PBXBuildFile; fileRef = 1A644E211052A9FD00833636 /* traderInterceptAI.plist */; };
|
1A644E221052AA0100833636 /* traderInterceptAI.plist in Copy AIs */ = {isa = PBXBuildFile; fileRef = 1A644E211052A9FD00833636 /* traderInterceptAI.plist */; };
|
||||||
1A6515100CCC9E2E0054D01B /* oolite-standard-vertex.vertex in Copy Shaders */ = {isa = PBXBuildFile; fileRef = 1A65150D0CCC9E220054D01B /* oolite-standard-vertex.vertex */; };
|
1A6515100CCC9E2E0054D01B /* oolite-standard-vertex.vertex in Copy Shaders */ = {isa = PBXBuildFile; fileRef = 1A65150D0CCC9E220054D01B /* oolite-standard-vertex.vertex */; };
|
||||||
1A6515110CCC9E2E0054D01B /* oolite-default-shader.fragment in Copy Shaders */ = {isa = PBXBuildFile; fileRef = 1A65150E0CCC9E220054D01B /* oolite-default-shader.fragment */; };
|
1A6515110CCC9E2E0054D01B /* oolite-default-shader.fragment in Copy Shaders */ = {isa = PBXBuildFile; fileRef = 1A65150E0CCC9E220054D01B /* oolite-default-shader.fragment */; };
|
||||||
|
1A6973CA12F46684000CC708 /* Debug.oxp in Copy Debug OXP */ = {isa = PBXBuildFile; fileRef = 1A8FAA9E12F0E44D008FF5A2 /* Debug.oxp */; };
|
||||||
1A6A963310AEEC5D0065D0F3 /* AIGraphViz.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6A963210AEEC5D0065D0F3 /* AIGraphViz.m */; };
|
1A6A963310AEEC5D0065D0F3 /* AIGraphViz.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6A963210AEEC5D0065D0F3 /* AIGraphViz.m */; };
|
||||||
1A6B1EF00C9AA5C6000717CF /* OOScriptTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B1EEE0C9AA5C6000717CF /* OOScriptTimer.h */; };
|
1A6B1EF00C9AA5C6000717CF /* OOScriptTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6B1EEE0C9AA5C6000717CF /* OOScriptTimer.h */; };
|
||||||
1A6B1EF10C9AA5C6000717CF /* OOScriptTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B1EEF0C9AA5C6000717CF /* OOScriptTimer.m */; };
|
1A6B1EF10C9AA5C6000717CF /* OOScriptTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B1EEF0C9AA5C6000717CF /* OOScriptTimer.m */; };
|
||||||
@ -761,6 +763,13 @@
|
|||||||
remoteGlobalIDString = 8D57630D048677EA00EA77CD;
|
remoteGlobalIDString = 8D57630D048677EA00EA77CD;
|
||||||
remoteInfo = "Oolite-importer";
|
remoteInfo = "Oolite-importer";
|
||||||
};
|
};
|
||||||
|
1A6973C212F46643000CC708 /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 1A0519340C7CCAC900BA5CCA /* DebugOXP.xcodeproj */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = 8D5B49AC048680CD000E48DA /* DebugOXP */;
|
||||||
|
remoteInfo = DebugOXP;
|
||||||
|
};
|
||||||
1A78B5D812D74CF900D42EE7 /* PBXContainerItemProxy */ = {
|
1A78B5D812D74CF900D42EE7 /* PBXContainerItemProxy */ = {
|
||||||
isa = PBXContainerItemProxy;
|
isa = PBXContainerItemProxy;
|
||||||
containerPortal = 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */;
|
containerPortal = 1A78B5D412D74CF900D42EE7 /* libpng.xcodeproj */;
|
||||||
@ -1234,6 +1243,7 @@
|
|||||||
dstPath = AddOns;
|
dstPath = AddOns;
|
||||||
dstSubfolderSpec = 16;
|
dstSubfolderSpec = 16;
|
||||||
files = (
|
files = (
|
||||||
|
1A6973CA12F46684000CC708 /* Debug.oxp in Copy Debug OXP */,
|
||||||
);
|
);
|
||||||
name = "Copy Debug OXP";
|
name = "Copy Debug OXP";
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
@ -1768,7 +1778,6 @@
|
|||||||
1A81F7070A7BAC4D006580AD /* OOCAMusic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCAMusic.m; sourceTree = "<group>"; };
|
1A81F7070A7BAC4D006580AD /* OOCAMusic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OOCAMusic.m; sourceTree = "<group>"; };
|
||||||
1A81F7080A7BAC4D006580AD /* OOCAMusic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCAMusic.h; sourceTree = "<group>"; };
|
1A81F7080A7BAC4D006580AD /* OOCAMusic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOCAMusic.h; sourceTree = "<group>"; };
|
||||||
1A846BA90D79F9570081280D /* oolite-version.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-version.xcconfig"; path = "src/Cocoa/oolite-version.xcconfig"; sourceTree = "<group>"; };
|
1A846BA90D79F9570081280D /* oolite-version.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "oolite-version.xcconfig"; path = "src/Cocoa/oolite-version.xcconfig"; sourceTree = "<group>"; };
|
||||||
1A85AC4312EDC330000E1FCD /* ShipEntityScriptEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShipEntityScriptEvents.h; sourceTree = "<group>"; };
|
|
||||||
1A85AD0612EDCAC7000E1FCD /* OOJSPropID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPropID.h; sourceTree = "<group>"; };
|
1A85AD0612EDCAC7000E1FCD /* OOJSPropID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OOJSPropID.h; sourceTree = "<group>"; };
|
||||||
1A85AE4D12EE0ED9000E1FCD /* OOViewID.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOViewID.tbl; sourceTree = "<group>"; };
|
1A85AE4D12EE0ED9000E1FCD /* OOViewID.tbl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OOViewID.tbl; sourceTree = "<group>"; };
|
||||||
1A87063D1172029F003FDD2A /* OODebugFlags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugFlags.h; sourceTree = "<group>"; };
|
1A87063D1172029F003FDD2A /* OODebugFlags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OODebugFlags.h; sourceTree = "<group>"; };
|
||||||
@ -2903,7 +2912,6 @@
|
|||||||
1A7E3188113ED496009AAB6D /* ProxyPlayerEntity.m */,
|
1A7E3188113ED496009AAB6D /* ProxyPlayerEntity.m */,
|
||||||
1A26D0900BCF9CF70073F257 /* ShipEntity.h */,
|
1A26D0900BCF9CF70073F257 /* ShipEntity.h */,
|
||||||
1A26D08F0BCF9CF70073F257 /* ShipEntity.m */,
|
1A26D08F0BCF9CF70073F257 /* ShipEntity.m */,
|
||||||
1A85AC4312EDC330000E1FCD /* ShipEntityScriptEvents.h */,
|
|
||||||
1A26D08A0BCF9CF70073F257 /* ShipEntityAI.h */,
|
1A26D08A0BCF9CF70073F257 /* ShipEntityAI.h */,
|
||||||
1A26D0890BCF9CF70073F257 /* ShipEntityAI.m */,
|
1A26D0890BCF9CF70073F257 /* ShipEntityAI.m */,
|
||||||
1A7BA80B0D84231A003C6CA3 /* ShipEntityScriptMethods.h */,
|
1A7BA80B0D84231A003C6CA3 /* ShipEntityScriptMethods.h */,
|
||||||
@ -3928,6 +3936,11 @@
|
|||||||
name = "Oolite-importer";
|
name = "Oolite-importer";
|
||||||
targetProxy = 1A3E01A811C574E1000FF226 /* PBXContainerItemProxy */;
|
targetProxy = 1A3E01A811C574E1000FF226 /* PBXContainerItemProxy */;
|
||||||
};
|
};
|
||||||
|
1A6973C312F46643000CC708 /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
name = DebugOXP;
|
||||||
|
targetProxy = 1A6973C212F46643000CC708 /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
1A78B5DC12D74D0600D42EE7 /* PBXTargetDependency */ = {
|
1A78B5DC12D74D0600D42EE7 /* PBXTargetDependency */ = {
|
||||||
isa = PBXTargetDependency;
|
isa = PBXTargetDependency;
|
||||||
name = libpng;
|
name = libpng;
|
||||||
|
@ -1101,10 +1101,13 @@ static BOOL hostiles;
|
|||||||
[self drawCompassBeaconBlipAt:relativePosition Size:sz Alpha:alpha];
|
[self drawCompassBeaconBlipAt:relativePosition Size:sz Alpha:alpha];
|
||||||
NSArray *icon = [[UNIVERSE descriptions] oo_arrayForKey:[(ShipEntity*)the_next_beacon primaryRole]];
|
NSArray *icon = [[UNIVERSE descriptions] oo_arrayForKey:[(ShipEntity*)the_next_beacon primaryRole]];
|
||||||
if (icon == nil)
|
if (icon == nil)
|
||||||
|
{
|
||||||
OODrawString([NSString stringWithFormat:@"%c", [(ShipEntity*)the_next_beacon beaconChar]],
|
OODrawString([NSString stringWithFormat:@"%c", [(ShipEntity*)the_next_beacon beaconChar]],
|
||||||
x - 2.5 * sz.width, y - 3.0 * sz.height, z1, NSMakeSize(sz.width * 2, sz.height * 2));
|
x - 2.5 * sz.width, y - 3.0 * sz.height, z1, NSMakeSize(sz.width * 2, sz.height * 2));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if OLD_SPRITE
|
||||||
OOGLBEGIN(GL_POLYGON);
|
OOGLBEGIN(GL_POLYGON);
|
||||||
hudDrawSpecialIconAt(icon,
|
hudDrawSpecialIconAt(icon,
|
||||||
x - sz.width, y - 1.5 * sz.height, z1, NSMakeSize(sz.width, sz.height));
|
x - sz.width, y - 1.5 * sz.height, z1, NSMakeSize(sz.width, sz.height));
|
||||||
@ -1114,6 +1117,10 @@ static BOOL hostiles;
|
|||||||
hudDrawSpecialIconAt(icon,
|
hudDrawSpecialIconAt(icon,
|
||||||
x - sz.width, y - 1.5 * sz.height, z1, NSMakeSize(sz.width, sz.height));
|
x - sz.width, y - 1.5 * sz.height, z1, NSMakeSize(sz.width, sz.height));
|
||||||
OOGLEND();
|
OOGLEND();
|
||||||
|
#else
|
||||||
|
hudDrawSpecialIconAt(icon,
|
||||||
|
x - sz.width, y - 1.5 * sz.height, z1, NSMakeSize(sz.width, sz.height));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -2447,8 +2454,8 @@ static void hudDrawSurroundAt(GLfloat x, GLfloat y, GLfloat z, NSSize siz)
|
|||||||
|
|
||||||
static void hudDrawSpecialIconAt(NSArray* ptsArray, int x, int y, int z, NSSize siz)
|
static void hudDrawSpecialIconAt(NSArray* ptsArray, int x, int y, int z, NSSize siz)
|
||||||
{
|
{
|
||||||
if (!ptsArray)
|
if (ptsArray == nil) return;
|
||||||
return;
|
#if OLD_SPRITE
|
||||||
int ox = x - siz.width / 2.0;
|
int ox = x - siz.width / 2.0;
|
||||||
int oy = y - siz.height / 2.0;
|
int oy = y - siz.height / 2.0;
|
||||||
int w = siz.width / 4.0;
|
int w = siz.width / 4.0;
|
||||||
@ -2461,6 +2468,9 @@ static void hudDrawSpecialIconAt(NSArray* ptsArray, int x, int y, int z, NSSize
|
|||||||
int y = [ptsArray oo_intAtIndex:i++];
|
int y = [ptsArray oo_intAtIndex:i++];
|
||||||
glVertex3i(ox + x * w, oy + y * h, z);
|
glVertex3i(ox + x * w, oy + y * h, z);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
OOLog(@"temp", @"Icon: %@");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user