summaryrefslogtreecommitdiff
path: root/ZAPD/ZResource.cpp
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2021-09-13 11:29:46 -0300
committerGitHub <noreply@github.com>2021-09-13 10:29:46 -0400
commit4d051c0fa036d245027a211bc7fd6a4afdce207f (patch)
treeeb1697990e40e60343971b777cbfe99c6eee548c /ZAPD/ZResource.cpp
parent90662f3cbade844c8edc3943ab8252e334b6166a (diff)
ZRoom cleaning 3 (#140)
* Remove redundant scene member * altheaders clean * it is broken and I don't know why * fix VTXs * Fix the stuff I broke in SetRoomList * Add RoomAltHeader and SceneAltHeader * fix syotes again and set the size of each ZRoomCommand * Add SCENE_CMD_UNK_09 todo * Nuke HintSystem * run format * Remove `canHaveInner` from ZRoom since the HintSystem doesn't exists anymore * Remove sourceOutput member from ZResource * Update docs * run format * Add non 64-bits aligned textures warning * remove unused json library * Update SCENE_CMD_UNK_09 * Fix merge issues * run format * Clean up actorlist output * Fix merge conflicts * format * Fix actorlist extraction * Unify AltHeader * fix merge conflicts * Run formatter * minor style changes * fix using wrong symbols for extracted vtxs from overlays * format * fix makefile stuff * fix merge issue
Diffstat (limited to 'ZAPD/ZResource.cpp')
-rw-r--r--ZAPD/ZResource.cpp29
1 files changed, 14 insertions, 15 deletions
diff --git a/ZAPD/ZResource.cpp b/ZAPD/ZResource.cpp
index bec6cfe..bff7037 100644
--- a/ZAPD/ZResource.cpp
+++ b/ZAPD/ZResource.cpp
@@ -114,11 +114,23 @@ void ZResource::ParseXML(tinyxml2::XMLElement* reader)
}
}
-void ZResource::Save([[maybe_unused]] const fs::path& outFolder)
+void ZResource::ParseRawData()
+{
+}
+
+void ZResource::DeclareReferences([[maybe_unused]] const std::string& prefix)
+{
+}
+
+void ZResource::ParseRawDataLate()
+{
+}
+
+void ZResource::DeclareReferencesLate([[maybe_unused]] const std::string& prefix)
{
}
-void ZResource::PreGenSourceFiles()
+void ZResource::Save([[maybe_unused]] const fs::path& outFolder)
{
}
@@ -187,19 +199,6 @@ std::string ZResource::GetSourceOutputHeader([[maybe_unused]] const std::string&
return "";
}
-void ZResource::ParseRawData()
-{
-}
-
-void ZResource::DeclareReferences([[maybe_unused]] const std::string& prefix)
-{
-}
-
-std::string ZResource::GetSourceTypeName() const
-{
- return "u8";
-}
-
ZResourceType ZResource::GetResourceType() const
{
return ZResourceType::Error;