egs_counters: Handle empty counters efficiently.

Adds Aurorey counter in the process.
This commit is contained in:
Loïc Hoguin 2010-10-14 04:07:32 +02:00
parent b9999e4d31
commit 5e9b669d00
4 changed files with 32 additions and 7 deletions

View File

@ -765,10 +765,6 @@
%~ 3, 3, 3, % Fight for Food S2 variant 1-3 %~ 3, 3, 3, % Fight for Food S2 variant 1-3
%~ 0:136 >>}]}, %~ 0:136 >>}]},
% Aurorey
{ 15, [{quests, "data/counters/colony.aurorey.pack"}, {bg, 255}, {options, << 16#01010400:32, 0:32 >>}]},
% HIVE (entry 0) % HIVE (entry 0)
{ 20, [{quests, "data/counters/colony.hive-0.pack"}, {bg, 255}, {options, << 16#01050400:32, 0:32 >>}]}, { 20, [{quests, "data/counters/colony.hive-0.pack"}, {bg, 255}, {options, << 16#01050400:32, 0:32 >>}]},

View File

@ -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 <http://www.gnu.org/licenses/>.
%% Aurorey counter.
{bg, 255}.
{city, {1100000, 0, 4, 6}}.
{cursor, {800, 450}}.
{t_name, 0}.
{t_desc, 1}.
{groups, []}.

Binary file not shown.

View File

@ -94,9 +94,14 @@ build_counter(ConfFilename, CounterNbl) ->
SizeBin = iolist_to_binary([<< S:32/little >> || S <- SizeList]), SizeBin = iolist_to_binary([<< S:32/little >> || S <- SizeList]),
Padding = 8 * (512 - byte_size(PosBin)), Padding = 8 * (512 - byte_size(PosBin)),
Pack = << PosBin/binary, 0:Padding, SizeBin/binary, 0:Padding, NbFiles:32/little, CounterNbl/binary, FilesBin/binary >>, 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 = case length(Groups) of
Opts = iolist_to_binary([<< 3:8 >> || _N <- OptsList]), 0 -> << >>;
[{bg, proplists:get_value(bg, Settings)}, {opts, Opts}, {pack, Pack}]. 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) ->
build_counter_groups(Groups, PosList, SizeList, []). build_counter_groups(Groups, PosList, SizeList, []).