diff --git a/include/maps.hrl b/include/maps.hrl index 38c3247..e054033 100644 --- a/include/maps.hrl +++ b/include/maps.hrl @@ -765,10 +765,6 @@ %~ 3, 3, 3, % Fight for Food S2 variant 1-3 %~ 0:136 >>}]}, - % Aurorey - - { 15, [{quests, "data/counters/colony.aurorey.pack"}, {bg, 255}, {options, << 16#01010400:32, 0:32 >>}]}, - % HIVE (entry 0) { 20, [{quests, "data/counters/colony.hive-0.pack"}, {bg, 255}, {options, << 16#01050400:32, 0:32 >>}]}, diff --git a/priv/counters/15/counter.conf b/priv/counters/15/counter.conf new file mode 100644 index 0000000..93cd1ff --- /dev/null +++ b/priv/counters/15/counter.conf @@ -0,0 +1,24 @@ +%% 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 . + +%% Aurorey counter. + +{bg, 255}. +{city, {1100000, 0, 4, 6}}. +{cursor, {800, 450}}. +{t_name, 0}. +{t_desc, 1}. + +{groups, []}. diff --git a/priv/counters/15/text.bin.en_US.txt b/priv/counters/15/text.bin.en_US.txt new file mode 100644 index 0000000..513023d Binary files /dev/null and b/priv/counters/15/text.bin.en_US.txt differ diff --git a/src/egs_counters.erl b/src/egs_counters.erl index dcd0b97..bc76e6e 100644 --- a/src/egs_counters.erl +++ b/src/egs_counters.erl @@ -94,9 +94,14 @@ build_counter(ConfFilename, CounterNbl) -> SizeBin = iolist_to_binary([<< S:32/little >> || S <- SizeList]), Padding = 8 * (512 - byte_size(PosBin)), Pack = << PosBin/binary, 0:Padding, SizeBin/binary, 0:Padding, NbFiles:32/little, CounterNbl/binary, FilesBin/binary >>, - OptsList = lists:seq(1, length(Groups) + length(PosList)), - Opts = iolist_to_binary([<< 3:8 >> || _N <- OptsList]), - [{bg, proplists:get_value(bg, Settings)}, {opts, Opts}, {pack, Pack}]. + Opts = case length(Groups) of + 0 -> << >>; + L -> + OptsList = lists:seq(1, L + length(PosList)), + iolist_to_binary([<< 3:8 >> || _N <- OptsList]) + end, + Opts2 = if byte_size(Opts) rem 2 =:= 0 -> Opts; true -> << Opts/binary, 0 >> end, + [{bg, proplists:get_value(bg, Settings)}, {opts, Opts2}, {pack, Pack}]. build_counter_groups(Groups, PosList, SizeList) -> build_counter_groups(Groups, PosList, SizeList, []).