Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Spore ModAPI/Spore/Simulator/cEmpire.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ namespace Simulator
enum EmpireFlags
{
kEmpireFlagNeedsEmpireLines = 0x10,
kEmpireFlagFromSaveGame = 0x40
};

/// An empire in Space Stage.
Expand Down
1 change: 1 addition & 0 deletions Spore ModAPI/Spore/Simulator/cPlanetRecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ namespace Simulator

kPlanetFlagIsDestroyed = 0x100, // 1 << 8

kPlanetFlagHasWildlifeSanctuary = 0x800, // 1 << 11
kPlanetFlagRedOrbit = 0x1000, // 1 << 12
kPlanetFlagBlueOrbit = 0x2000, // 1 << 13
};
Expand Down
2 changes: 1 addition & 1 deletion Spore ModAPI/Spore/Simulator/cSpeciesProfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace Simulator
};

/* 00h */ UnkStructPool capsInfos;
/* 4E0h */ ResourceKey mSkinColors[3]; //what is this?
/* 4E0h */ Math::ColorRGB mSkinColors[3]; //[0] base, [1] coat, [2] detail.
/* 504h */ ResourceKey mCreatureKey;
/* 510h */ ResourceKey mBabyKey;
/* 51Ch */ eastl::string16 mCreatureName;
Expand Down
5 changes: 5 additions & 0 deletions Spore ModAPI/Spore/Simulator/cStarRecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ namespace Simulator

enum StarFlags
{
kStarFlagPotentialSaveGame = 0x1, // 1 << 0
kStarFlagSaveGame = 0x2, // 1 << 1

// 1 << 3 has monolith? Also set on some stars without a monolith and on the home star during part of the tutorial.

kStarFlagIsOwned = 0x10, // 1 << 4

// 1 << 6 has destroyed planet?
Expand Down
Loading