mirror of
https://github.com/open-goal/jak-project.git
synced 2025-04-02 17:11:41 +00:00
custom levels: add support for symbol
, type
, and string
lumps (#3337)
This commit is contained in:
parent
0236e36a53
commit
3eb6cfcb17
@ -24,7 +24,7 @@
|
||||
// integer types: int32, uint32, enum-int32, enum-uint32
|
||||
// float types: float, meters (1 meter = 4096.0 units), degrees (65536.0 = 360°)
|
||||
// vector types: vector (normal floats), vector4m (meters), vector3m (meters with w set to 1.0), vector-vol (normal floats with w in meters), movie-pos (meters with w in degrees)
|
||||
// special types: eco-info, cell-info, buzzer-info, water-height
|
||||
// special types: symbol, type, string, eco-info, cell-info, buzzer-info, water-height
|
||||
//
|
||||
// examples:
|
||||
//
|
||||
@ -51,6 +51,9 @@
|
||||
//
|
||||
// adds a buzzer-info tag:
|
||||
// "eco-info": ["buzzer-info", "(game-task training-buzzer)", 5]
|
||||
//
|
||||
// adds a 'symbol' tag (using the 'type' and 'string' lump types works the same way):
|
||||
// "symbol-list": ["symbol", "sym-1", "sym-2"]
|
||||
|
||||
// The base actor id for your custom level. If you have multiple levels this should be unique!
|
||||
"base_id": 100,
|
||||
|
@ -21,9 +21,10 @@
|
||||
"double_sided_collide": false,
|
||||
|
||||
// available res-lump tag types:
|
||||
// value types: int32, uint32, enum-int32, enum-uint32, float, meters (1 meter = 4096.0 units), degrees (65536.0 = 360°)
|
||||
// integer types: int32, uint32, enum-int32, enum-uint32
|
||||
// float types: float, meters (1 meter = 4096.0 units), degrees (65536.0 = 360°)
|
||||
// vector types: vector (normal floats), vector4m (meters), vector3m (meters with w set to 1.0), vector-vol (normal floats with w in meters), movie-pos (meters with w in degrees)
|
||||
// special types: eco-info, water-height
|
||||
// special types: symbol, type, string, eco-info, cell-info, buzzer-info, water-height
|
||||
//
|
||||
// examples:
|
||||
//
|
||||
@ -44,6 +45,9 @@
|
||||
//
|
||||
// adds an eco-info tag:
|
||||
// "eco-info": ["eco-info", "(pickup-type health)", 2]
|
||||
//
|
||||
// adds a 'type' tag (using the "symbol" and "string" lump types works the same way):
|
||||
// "spawn-types": ["type", "spyder", "juicer"]
|
||||
|
||||
// The base actor id for your custom level. If you have multiple levels, this should be unique!
|
||||
"base_id": 100,
|
||||
|
@ -202,6 +202,39 @@ static std::unordered_map<std::string,
|
||||
}
|
||||
return std::make_unique<ResFloat>(name, data, -1000000000.0000);
|
||||
}},
|
||||
{"symbol",
|
||||
[](const std::string& name,
|
||||
const nlohmann::json& json,
|
||||
decompiler::DecompilerTypeSystem& dts) {
|
||||
(void)dts;
|
||||
std::vector<std::string> data;
|
||||
for (size_t i = 1; i < json.size(); i++) {
|
||||
data.push_back(json[i].get<std::string>());
|
||||
}
|
||||
return std::make_unique<ResSymbol>(name, data, -1000000000.0000);
|
||||
}},
|
||||
{"type",
|
||||
[](const std::string& name,
|
||||
const nlohmann::json& json,
|
||||
decompiler::DecompilerTypeSystem& dts) {
|
||||
(void)dts;
|
||||
std::vector<std::string> data;
|
||||
for (size_t i = 1; i < json.size(); i++) {
|
||||
data.push_back(json[i].get<std::string>());
|
||||
}
|
||||
return std::make_unique<ResType>(name, data, -1000000000.0000);
|
||||
}},
|
||||
{"string",
|
||||
[](const std::string& name,
|
||||
const nlohmann::json& json,
|
||||
decompiler::DecompilerTypeSystem& dts) {
|
||||
(void)dts;
|
||||
std::vector<std::string> data;
|
||||
for (size_t i = 1; i < json.size(); i++) {
|
||||
data.push_back(json[i].get<std::string>());
|
||||
}
|
||||
return std::make_unique<ResString>(name, data, -1000000000.0000);
|
||||
}},
|
||||
// vectors
|
||||
{"vector",
|
||||
[](const std::string& name,
|
||||
|
@ -215,6 +215,31 @@ int ResSymbol::get_alignment() const {
|
||||
return 4;
|
||||
}
|
||||
|
||||
ResType::ResType(const std::string& name, const std::vector<std::string>& str, float key_frame)
|
||||
: Res(name, key_frame), m_str(str) {}
|
||||
|
||||
ResType::ResType(const std::string& name, const std::string& str, float key_frame)
|
||||
: Res(name, key_frame), m_str({str}) {}
|
||||
|
||||
TagInfo ResType::get_tag_info() const {
|
||||
TagInfo result;
|
||||
result.elt_type = "type";
|
||||
result.elt_count = m_str.size();
|
||||
result.inlined = false;
|
||||
result.data_size = 4 * m_str.size();
|
||||
return result;
|
||||
}
|
||||
|
||||
void ResType::write_data(DataObjectGenerator& gen) const {
|
||||
for (auto& str : m_str) {
|
||||
gen.add_type_tag(str);
|
||||
}
|
||||
}
|
||||
|
||||
int ResType::get_alignment() const {
|
||||
return 4;
|
||||
}
|
||||
|
||||
void ResLump::add_res(std::unique_ptr<Res> res) {
|
||||
m_sorted = false;
|
||||
m_res.emplace_back(std::move(res));
|
||||
|
@ -125,6 +125,19 @@ class ResSymbol : public Res {
|
||||
std::vector<std::string> m_str;
|
||||
};
|
||||
|
||||
class ResType : public Res {
|
||||
public:
|
||||
ResType(const std::string& name, const std::vector<std::string>& str, float key_frame);
|
||||
ResType(const std::string& name, const std::string& str, float key_frame);
|
||||
|
||||
TagInfo get_tag_info() const override;
|
||||
void write_data(DataObjectGenerator& gen) const override;
|
||||
int get_alignment() const override;
|
||||
|
||||
private:
|
||||
std::vector<std::string> m_str;
|
||||
};
|
||||
|
||||
/*
|
||||
(deftype res-lump (basic)
|
||||
((length int32 :offset-assert 4)
|
||||
|
Loading…
x
Reference in New Issue
Block a user