diff --git a/include/maps.hrl b/include/maps.hrl index 703f7a9..e8585f6 100644 --- a/include/maps.hrl +++ b/include/maps.hrl @@ -204,7 +204,7 @@ {1102000, [{type, lobby}, {file, nofile}]}, {1103000, [{type, lobby}, {file, nofile}]}, - {1104000, [{type, spaceport}, {file, "data/lobby/spaceport.quest.nbl"}]}, + {1104000, [{type, spaceport}, {file, nofile}]}, % Tutorial diff --git a/priv/quests/1104000/quest.conf b/priv/quests/1104000/quest.conf new file mode 100644 index 0000000..ae4592d --- /dev/null +++ b/priv/quests/1104000/quest.conf @@ -0,0 +1,48 @@ +%% This file is part of EGS. +%% +%% EGS is free software: you can redistribute it and/or modify +%% it under the terms of the GNU Affero General Public License as +%% published by the Free Software Foundation, either version 3 of the +%% License, or (at your option) any later version. +%% +%% EGS is distributed in the hope that it will be useful, +%% but WITHOUT ANY WARRANTY; without even the implied warranty of +%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +%% GNU Affero General Public License for more details. +%% +%% You should have received a copy of the GNU Affero General Public License +%% along with EGS. If not, see . + +%% Spaceport. + +{questid, 1104000}. + +%% @doc The spaceport doesn't need unit_title* files. +{notitles, true}. + +%% @todo Default to {1, 6} if missing? +{party_size, {1, 6}}. + +%% @todo Those should probably default to those values if unspecified (lobbies). +{cursor, {0, 0}}. +{icon, 65535}. + +%% @todo Default enemy_level to 1 if unspecified (lobbies). +{zones, [ + [{zoneid, 0}, {areaid, 2}, {enemy_level, 1}, {sets, []}, {maps, [900]}] +]}. + +{temp_flags, []}. +{value_flags, ["SV_WK_LC_RETURN"]}. +{bool_flags, []}. + +{items, []}. + +%% @todo if is questid then defaults to ffffffff. +%% @todo Default to full ffff if missing. +{enter_warp, {1104000, 0, 900, 0}}. +{exit_warp, {1104000, 65535, 65535, 65535}}. +{fail_warp, {1104000, 65535, 65535, 65535}}. + +%% @doc Current -> next. Values are the area and the exit/entrance entryid. +{warps, []}. diff --git a/priv/quests/README b/priv/quests/README index 6eec267..1bfab75 100644 --- a/priv/quests/README +++ b/priv/quests/README @@ -4,3 +4,4 @@ List of quests: 1101000 Parum lobbies 1102000 Neudaiz lobbies 1103000 Moatoob lobbies +1104000 PPT Spaceport diff --git a/src/egs_files.erl b/src/egs_files.erl index 1d8cbc9..70e62bc 100644 --- a/src/egs_files.erl +++ b/src/egs_files.erl @@ -187,6 +187,8 @@ load_quest_xnr_warps(QuestID, [Warp|Tail], Acc) -> Bin2 = load_quest_xnr_warp(QuestID, NextWarp), load_quest_xnr_warps(QuestID, Tail, [<< Bin1/binary, Bin2/binary >>|Acc]). +%% @todo Counter(16#7fffffff) has ffff before EnemyLevel, why? +%% @todo Spaceport(1104000) and counter(16#7fffffff) has 04010000 be 00010000, why? load_quest_xnr_zones(ZonesList, BasePos) -> load_quest_xnr_zones(ZonesList, BasePos, [], [], []). load_quest_xnr_zones([], _BasePos, SetsAcc, SetsPtrsAcc, ZonesAcc) -> diff --git a/src/egs_quests_db.erl b/src/egs_quests_db.erl index 258eaff..2b988be 100644 --- a/src/egs_quests_db.erl +++ b/src/egs_quests_db.erl @@ -85,15 +85,17 @@ get_quest(QuestID, Cache) -> ConfFilename = Dir ++ "quest.conf", {QuestXnrData, QuestXnrPtrs} = egs_files:load_quest_xnr(ConfFilename), UnitTitleBinFiles = load_unit_title_bin_files(Dir, ConfFilename), - TablePos = egs_files:nbl_padded_size(byte_size(QuestXnrData)), - TextSize = lists:sum([egs_files:nbl_padded_size(byte_size(D)) || {data, _F, D, _P} <- UnitTitleBinFiles]), - TablePos2 = TablePos + TextSize, - {UnitTitleTableRelData, UnitTitleTableRelPtrs} = egs_files:load_unit_title_table_rel(ConfFilename, TablePos2), - QuestNbl = egs_files:nbl_pack([{files, - [{data, "quest.xnr", QuestXnrData, QuestXnrPtrs}] - ++ UnitTitleBinFiles - ++ [{data, "unit_title_table.rel", UnitTitleTableRelData, UnitTitleTableRelPtrs}] - }]), + Files = [{data, "quest.xnr", QuestXnrData, QuestXnrPtrs}], + Files2 = Files ++ case UnitTitleBinFiles of + ignore -> []; + _Any -> + TablePos = egs_files:nbl_padded_size(byte_size(QuestXnrData)), + TextSize = lists:sum([egs_files:nbl_padded_size(byte_size(D)) || {data, _F, D, _P} <- UnitTitleBinFiles]), + TablePos2 = TablePos + TextSize, + {UnitTitleTableRelData, UnitTitleTableRelPtrs} = egs_files:load_unit_title_table_rel(ConfFilename, TablePos2), + UnitTitleBinFiles ++ [{data, "unit_title_table.rel", UnitTitleTableRelData, UnitTitleTableRelPtrs}] + end, + QuestNbl = egs_files:nbl_pack([{files, Files2}]), Quest = [{quest, QuestNbl}], Cache2 = [{QuestID, Quest}|Cache], {Quest, Cache2}; @@ -103,8 +105,12 @@ get_quest(QuestID, Cache) -> load_unit_title_bin_files(Dir, ConfFilename) -> {ok, Settings} = file:consult(ConfFilename), - Zones = proplists:get_value(zones, Settings), - [load_unit_title_bin(Dir, Zone) || Zone <- Zones]. + case proplists:get_value(notitles, Settings) of + true -> ignore; + _Any -> + Zones = proplists:get_value(zones, Settings), + [load_unit_title_bin(Dir, Zone) || Zone <- Zones] + end. load_unit_title_bin(Dir, Zone) -> ZoneID = proplists:get_value(zoneid, Zone),