Update Xcode project with new files for timeline support. Updated Objective C

files for renaming changes in core code.
ver1_6_1
Chris Laurel 2008-02-21 03:13:30 +00:00
parent eba1b9940c
commit 46b809ecf3
2 changed files with 30 additions and 6 deletions

View File

@ -95,21 +95,21 @@
{
[self body]->setAlbedo([a floatValue]);
}
-(CelestiaVector*)heliocentricPosition:(NSNumber*)n
-(CelestiaVector*)astrocentricPosition:(NSNumber*)n
{
return [CelestiaVector vectorWithPoint3d:[self body]->getHeliocentricPosition([n doubleValue])];
return [CelestiaVector vectorWithPoint3d:[self body]->getAstrocentricPosition([n doubleValue])];
}
-(CelestiaVector*)equatorialToBodyFixed:(NSNumber*)n
{
return [CelestiaVector vectorWithQuatd:[self body]->getEquatorialToBodyFixed([n doubleValue])];
}
-(CelestiaVector*)eclipticalToEquatorial:(NSNumber*)n
-(CelestiaVector*)eclipticToEquatorial:(NSNumber*)n
{
return [CelestiaVector vectorWithQuatd:[self body]->getEclipticalToEquatorial([n doubleValue])];
return [CelestiaVector vectorWithQuatd:[self body]->getEclipticToEquatorial([n doubleValue])];
}
-(CelestiaVector*)eclipticalToBodyFixed:(NSNumber*)n
-(CelestiaVector*)eclipticToBodyFixed:(NSNumber*)n
{
return [CelestiaVector vectorWithQuatd:[self body]->getEclipticalToBodyFixed([n doubleValue])];
return [CelestiaVector vectorWithQuatd:[self body]->getEclipticToBodyFixed([n doubleValue])];
}
-(NSArray*)alternateSurfaceNames

View File

@ -10,6 +10,12 @@
0C76BFD108537EDB00D31A90 /* qtcapture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C76BFCF08537EDB00D31A90 /* qtcapture.cpp */; };
8844B87E0D5AA3290059AA3A /* customrotation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8844B87C0D5AA3290059AA3A /* customrotation.cpp */; };
8844B87F0D5AA3290059AA3A /* customrotation.h in Copy Libraries */ = {isa = PBXBuildFile; fileRef = 8844B87D0D5AA3290059AA3A /* customrotation.h */; };
8844BAAE0D6D13FE0059AA3A /* frametree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8844BAA80D6D13FE0059AA3A /* frametree.cpp */; };
8844BAAF0D6D13FE0059AA3A /* frametree.h in Copy Libraries */ = {isa = PBXBuildFile; fileRef = 8844BAA90D6D13FE0059AA3A /* frametree.h */; };
8844BAB00D6D13FE0059AA3A /* timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8844BAAA0D6D13FE0059AA3A /* timeline.cpp */; };
8844BAB10D6D13FE0059AA3A /* timeline.h in Copy Libraries */ = {isa = PBXBuildFile; fileRef = 8844BAAB0D6D13FE0059AA3A /* timeline.h */; };
8844BAB20D6D13FE0059AA3A /* timelinephase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8844BAAC0D6D13FE0059AA3A /* timelinephase.cpp */; };
8844BAB30D6D13FE0059AA3A /* timelinephase.h in Copy Libraries */ = {isa = PBXBuildFile; fileRef = 8844BAAD0D6D13FE0059AA3A /* timelinephase.h */; };
E50CCA390C065BF900E9C76A /* eclipsefinder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E50CCA370C065BF900E9C76A /* eclipsefinder.cpp */; };
E50CCA590C065F0100E9C76A /* EclipseFinder.nib in Resources */ = {isa = PBXBuildFile; fileRef = E50CCA530C065F0100E9C76A /* EclipseFinder.nib */; };
E50CCA6A0C06632A00E9C76A /* EclipseFinderController.mm in Sources */ = {isa = PBXBuildFile; fileRef = E50CCA680C06632A00E9C76A /* EclipseFinderController.mm */; };
@ -366,6 +372,9 @@
E5F8C9E70795239600D1DAF2 /* liblua.dylib in Copy Libraries */,
E5F8C9E90795239600D1DAF2 /* libpng.dylib in Copy Libraries */,
8844B87F0D5AA3290059AA3A /* customrotation.h in Copy Libraries */,
8844BAAF0D6D13FE0059AA3A /* frametree.h in Copy Libraries */,
8844BAB10D6D13FE0059AA3A /* timeline.h in Copy Libraries */,
8844BAB30D6D13FE0059AA3A /* timelinephase.h in Copy Libraries */,
);
name = "Copy Libraries";
runOnlyForDeploymentPostprocessing = 0;
@ -489,6 +498,12 @@
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
8844B87C0D5AA3290059AA3A /* customrotation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = customrotation.cpp; path = ../src/celengine/customrotation.cpp; sourceTree = SOURCE_ROOT; };
8844B87D0D5AA3290059AA3A /* customrotation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = customrotation.h; path = ../src/celengine/customrotation.h; sourceTree = SOURCE_ROOT; };
8844BAA80D6D13FE0059AA3A /* frametree.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = frametree.cpp; path = ../src/celengine/frametree.cpp; sourceTree = SOURCE_ROOT; };
8844BAA90D6D13FE0059AA3A /* frametree.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = frametree.h; path = ../src/celengine/frametree.h; sourceTree = SOURCE_ROOT; };
8844BAAA0D6D13FE0059AA3A /* timeline.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = timeline.cpp; path = ../src/celengine/timeline.cpp; sourceTree = SOURCE_ROOT; };
8844BAAB0D6D13FE0059AA3A /* timeline.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = timeline.h; path = ../src/celengine/timeline.h; sourceTree = SOURCE_ROOT; };
8844BAAC0D6D13FE0059AA3A /* timelinephase.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = timelinephase.cpp; path = ../src/celengine/timelinephase.cpp; sourceTree = SOURCE_ROOT; };
8844BAAD0D6D13FE0059AA3A /* timelinephase.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = timelinephase.h; path = ../src/celengine/timelinephase.h; sourceTree = SOURCE_ROOT; };
E50657D70CBFB08500151204 /* imagecapture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = imagecapture.h; path = ../src/celestia/imagecapture.h; sourceTree = SOURCE_ROOT; };
E50CCA370C065BF900E9C76A /* eclipsefinder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = eclipsefinder.cpp; path = ../src/celestia/eclipsefinder.cpp; sourceTree = SOURCE_ROOT; };
E50CCA380C065BF900E9C76A /* eclipsefinder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = eclipsefinder.h; path = ../src/celestia/eclipsefinder.h; sourceTree = SOURCE_ROOT; };
@ -1447,6 +1462,12 @@
F51C6DCA02959A17014901DC /* parser.cpp */,
F51C6DCB02959A17014901DC /* regcombine.cpp */,
F51C6DCC02959A17014901DC /* render.cpp */,
8844BAA80D6D13FE0059AA3A /* frametree.cpp */,
8844BAA90D6D13FE0059AA3A /* frametree.h */,
8844BAAA0D6D13FE0059AA3A /* timeline.cpp */,
8844BAAB0D6D13FE0059AA3A /* timeline.h */,
8844BAAC0D6D13FE0059AA3A /* timelinephase.cpp */,
8844BAAD0D6D13FE0059AA3A /* timelinephase.h */,
F51C6DCD02959A17014901DC /* samporbit.cpp */,
F51C6DCE02959A17014901DC /* selection.cpp */,
F51C6DCF02959A17014901DC /* simulation.cpp */,
@ -1925,6 +1946,9 @@
E5D3E6550D1EA18A00214838 /* axisarrow.cpp in Sources */,
E5CAABA70D3D7A08001926FC /* POSupport.cpp in Sources */,
8844B87E0D5AA3290059AA3A /* customrotation.cpp in Sources */,
8844BAAE0D6D13FE0059AA3A /* frametree.cpp in Sources */,
8844BAB00D6D13FE0059AA3A /* timeline.cpp in Sources */,
8844BAB20D6D13FE0059AA3A /* timelinephase.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};