mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-07-05 15:19:42 -07:00
Update subproject libultraship.
This commit is contained in:
committed by
Alejandro Asenjo Nitti
parent
e5137ea604
commit
983d64e81d
+1
-1
Submodule libultraship updated: e1db49367b...dedbf8c388
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryAnimV0::ReadResource(std::
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto anim = std::make_shared<Animation>(file->InitData);
|
||||
auto anim = std::make_shared<Animation>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
int16_t frameCount = reader->ReadInt16();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryColPolyV0::ReadResource(st
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto colPoly = std::make_shared<ColPoly>(file->InitData);
|
||||
auto colPoly = std::make_shared<ColPoly>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto colPolysCount = reader->ReadUInt32();
|
||||
|
||||
@@ -12,7 +12,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryEnvSettingsV0::ReadResourc
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto env = std::make_shared<EnvSettings>(file->InitData);
|
||||
auto env = std::make_shared<EnvSettings>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
env->mSettings.type = reader->ReadInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryGenericArrayV0::ReadResour
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto arr = std::make_shared<GenericArray>(file->InitData);
|
||||
auto arr = std::make_shared<GenericArray>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto type = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryHitboxV0::ReadResource(std
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto hitbox = std::make_shared<Hitbox>(file->InitData);
|
||||
auto hitbox = std::make_shared<Hitbox>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto count = reader->ReadUInt32();
|
||||
|
||||
@@ -13,7 +13,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryLimbV0::ReadResource(std::
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto limb = std::make_shared<Limb>(file->InitData);
|
||||
auto limb = std::make_shared<Limb>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
uint64_t dlist = reader->ReadUInt64();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryMessageV0::ReadResource(st
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto msg = std::make_shared<Message>(file->InitData);
|
||||
auto msg = std::make_shared<Message>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto size = reader->ReadUInt32();
|
||||
|
||||
@@ -11,7 +11,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryMessageLookupV0::ReadResou
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto table = std::make_shared<MessageLookup>(file->InitData);
|
||||
auto table = std::make_shared<MessageLookup>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
auto count = reader->ReadUInt32();
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryObjectInitV0::ReadResource
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto obj = std::make_shared<ObjectInit>(file->InitData);
|
||||
auto obj = std::make_shared<ObjectInit>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
auto count = reader->ReadUInt32();
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryScriptCMDV0::ReadResource(
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto cmds = std::make_shared<ScriptCMDs>(file->InitData);
|
||||
auto cmds = std::make_shared<ScriptCMDs>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto size = reader->ReadUInt32();
|
||||
|
||||
@@ -10,7 +10,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryScriptV0::ReadResource(std
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto script = std::make_shared<Script>(file->InitData);
|
||||
auto script = std::make_shared<Script>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto size = reader->ReadUInt32();
|
||||
|
||||
@@ -11,7 +11,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinarySkeletonV0::ReadResource(s
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto skel = std::make_shared<Skeleton>(file->InitData);
|
||||
auto skel = std::make_shared<Skeleton>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto count = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryVec3fV0::ReadResource(std:
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto vec = std::make_shared<Vec3fArray>(file->InitData);
|
||||
auto vec = std::make_shared<Vec3fArray>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto vecCount = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryVec3sV0::ReadResource(std:
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto vec = std::make_shared<Vec3sArray>(file->InitData);
|
||||
auto vec = std::make_shared<Vec3sArray>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
auto vecCount = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryAudioTableV0::ReadResource
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto table = std::make_shared<AudioTable>(file->InitData);
|
||||
auto table = std::make_shared<AudioTable>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
int16_t med = reader->ReadInt16();
|
||||
|
||||
@@ -8,7 +8,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryAdpcmBookV0::ReadResource(
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto book = std::make_shared<AdpcmBook>(file->InitData);
|
||||
auto book = std::make_shared<AdpcmBook>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
book->mBook.order = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryDrumV0::ReadResource(std::
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto drum = std::make_shared<Drum>(file->InitData);
|
||||
auto drum = std::make_shared<Drum>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
drum->mDrum.adsrDecayIndex = reader->ReadUByte();
|
||||
|
||||
@@ -8,7 +8,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryEnvelopeV0::ReadResource(s
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto envelope = std::make_shared<Envelope>(file->InitData);
|
||||
auto envelope = std::make_shared<Envelope>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
uint32_t count = reader->ReadUInt32();
|
||||
|
||||
@@ -9,7 +9,7 @@ std::shared_ptr<Ship::IResource> ResourceFactoryBinaryInstrumentV0::ReadResource
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
auto instrument = std::make_shared<Instrument>(file->InitData);
|
||||
auto instrument = std::make_shared<Instrument>(initData);
|
||||
auto reader = std::get<std::shared_ptr<Ship::BinaryReader>>(file->Reader);
|
||||
|
||||
instrument->mInstrument.isRelocated = reader->ReadUByte();
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user