hedgewars/uFLGameConfig.pas
author unc0rr
Mon, 03 Nov 2014 23:56:51 +0300
branchqmlfrontend
changeset 10456 6fd99bb73524
parent 10452 03519fd9f98d
child 10612 eb3c1a289a23
permissions -rw-r--r--
Theme can be changed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
     1
unit uFLGameConfig;
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
     2
interface
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
     3
uses uFLTypes;
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
     4
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
     5
procedure resetGameConfig; cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
     6
procedure runQuickGame; cdecl;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
     7
procedure runLocalGame; cdecl;
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
     8
procedure getPreview; cdecl;
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
     9
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    10
procedure registerGUIMessagesCallback(p: pointer; f: TGUICallback); cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    11
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    12
procedure setSeed(seed: PChar); cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    13
function  getSeed: PChar; cdecl;
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
    14
procedure setTheme(themeName: PChar); cdecl;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    15
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
    16
procedure tryAddTeam(teamName: PChar); cdecl;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
    17
procedure tryRemoveTeam(teamName: PChar); cdecl;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
    18
procedure changeTeamColor(teamName: PChar; dir: LongInt); cdecl;
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
    19
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
    20
implementation
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
    21
uses uFLIPC, hwengine, uFLUtils, uFLTeams, uFLData;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    22
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    23
var guiCallbackPointer: pointer;
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    24
    guiCallbackFunction: TGUICallback;
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
    25
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    26
const
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    27
    MAXCONFIGS = 5;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    28
    MAXARGS = 32;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    29
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    30
type
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    31
    TGameConfig = record
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    32
            seed: shortstring;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    33
            theme: shortstring;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    34
            script: shortstring;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    35
            mapgen: Longint;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    36
            gameType: TGameType;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    37
            teams: array[0..7] of TTeam;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    38
            arguments: array[0..Pred(MAXARGS)] of shortstring;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    39
            argv: array[0..Pred(MAXARGS)] of PChar;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    40
            argumentsNumber: Longword;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    41
            end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    42
    PGameConfig = ^TGameConfig;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    43
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    44
var
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    45
    currentConfig: TGameConfig;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    46
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    47
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    48
procedure sendConfig(config: PGameConfig);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    49
var i: Longword;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    50
begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    51
with config^ do
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    52
begin
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    53
    case gameType of
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    54
    gtPreview: begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    55
            ipcToEngine('eseed ' + seed);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    56
            ipcToEngine('e$mapgen ' + intToStr(mapgen));
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    57
        end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    58
    gtLocal: begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    59
            ipcToEngine('eseed ' + seed);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    60
            ipcToEngine('e$mapgen ' + intToStr(mapgen));
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
    61
            ipcToEngine('e$theme ' + theme);
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    62
            i:= 0;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    63
            while (i < 8) and (teams[i].hogsNumber > 0) do
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    64
                begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    65
                    ipcToEngine('eammloadt 93919294221991210322351110012000000002111001010111110001');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    66
                    ipcToEngine('eammprob 04050405416006555465544647765766666661555101011154111111');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    67
                    ipcToEngine('eammdelay 00000000000002055000000400070040000000002200000006000200');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    68
                    ipcToEngine('eammreinf 13111103121111111231141111111111111112111111011111111111');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    69
                    ipcToEngine('eammstore');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    70
                    sendTeamConfig(teams[i]);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    71
                    inc(i)
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    72
                end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    73
        end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    74
    end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    75
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    76
    ipcToEngine('!');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    77
end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    78
end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    79
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    80
procedure queueExecution;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    81
var pConfig: PGameConfig;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    82
    i: Longword;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    83
begin
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    84
    new(pConfig);
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    85
    pConfig^:= currentConfig;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    86
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    87
    with pConfig^ do
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    88
        for i:= 0 to Pred(MAXARGS) do
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    89
        begin
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    90
            if arguments[i][0] = #255 then 
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    91
                arguments[i][255]:= #0
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    92
            else
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    93
                arguments[i][byte(arguments[i][0]) + 1]:= #0;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    94
            argv[i]:= @arguments[i][1]
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    95
        end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    96
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    97
    RunEngine(pConfig^.argumentsNumber, @pConfig^.argv);
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    98
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    99
    sendConfig(pConfig)
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   100
end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   101
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   102
procedure resetGameConfig; cdecl;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   103
var i: Longword;
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
   104
begin
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   105
    with currentConfig do
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   106
    begin
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   107
        for i:= 0 to 7 do
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   108
            teams[i].hogsNumber:= 0
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   109
    end
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
   110
end;
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
   111
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   112
procedure setSeed(seed: PChar); cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   113
begin
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   114
    currentConfig.seed:= seed
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   115
end;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   116
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   117
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   118
function getSeed: PChar; cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   119
begin
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   120
    getSeed:= str2PChar(currentConfig.seed)
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   121
end;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   122
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   123
function getUnusedColor: Longword;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   124
var i, c: Longword;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   125
    fColorMatched: boolean;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   126
begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   127
    c:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   128
    i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   129
    repeat
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   130
        repeat
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   131
            fColorMatched:= (currentConfig.teams[i].hogsNumber > 0) and (currentConfig.teams[i].color = c);
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   132
            inc(i)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   133
        until (i >= 8) or (currentConfig.teams[i].hogsNumber = 0) or fColorMatched;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   134
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   135
        if fColorMatched then
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   136
        begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   137
            i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   138
            inc(c)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   139
        end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   140
    until not fColorMatched;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   141
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   142
    getUnusedColor:= c
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   143
end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   144
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   145
procedure runQuickGame; cdecl;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   146
begin
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   147
    with currentConfig do
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   148
    begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   149
        gameType:= gtLocal;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   150
        arguments[0]:= '';
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   151
        arguments[1]:= '--internal';
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   152
        arguments[2]:= '--nomusic';
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   153
        argumentsNumber:= 3;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   154
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   155
        teams[0]:= createRandomTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   156
        teams[0].color:= 0;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   157
        teams[1]:= createRandomTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   158
        teams[1].color:= 1;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   159
        teams[1].botLevel:= 1;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   160
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   161
        queueExecution;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   162
    end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   163
end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   164
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   165
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   166
procedure getPreview; cdecl;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   167
begin
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   168
    with currentConfig do
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   169
    begin
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   170
        gameType:= gtPreview;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   171
        arguments[0]:= '';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   172
        arguments[1]:= '--internal';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   173
        arguments[2]:= '--landpreview';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   174
        argumentsNumber:= 3;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   175
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   176
        queueExecution;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   177
    end;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   178
end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   179
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   180
procedure runLocalGame; cdecl;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   181
begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   182
    with currentConfig do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   183
    begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   184
        gameType:= gtLocal;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   185
        arguments[0]:= '';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   186
        arguments[1]:= '--internal';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   187
        arguments[2]:= '--nomusic';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   188
        argumentsNumber:= 3;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   189
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   190
        queueExecution;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   191
    end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   192
end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   193
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   194
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   195
procedure engineMessageCallback(p: pointer; msg: PChar; len: Longword);
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   196
begin
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   197
    if len = 128 * 256 then guiCallbackFunction(guiCallbackPointer, mtPreview, msg, len)
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   198
end;
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   199
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   200
procedure registerGUIMessagesCallback(p: pointer; f: TGUICallback); cdecl;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   201
begin
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   202
    guiCallbackPointer:= p;
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   203
    guiCallbackFunction:= f;
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   204
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   205
    registerIPCCallback(nil, @engineMessageCallback)
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   206
end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   207
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   208
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   209
procedure tryAddTeam(teamName: PChar); cdecl;
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   210
var msg: ansistring;
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   211
    i, hn, hedgehogsNumber: Longword;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   212
    team: PTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   213
    c: Longword;
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   214
begin
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   215
    with currentConfig do
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   216
    begin
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   217
        hedgehogsNumber:= 0;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   218
        i:= 0;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   219
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   220
        while (i < 8) and (teams[i].hogsNumber > 0) do
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   221
        begin
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   222
            inc(i);
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   223
            inc(hedgehogsNumber, teams[i].hogsNumber)
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   224
        end;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   225
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   226
        // no free space for a team or reached hogs number maximum
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   227
        if (i > 7) or (hedgehogsNumber >= 48) then exit;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   228
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   229
        team:= teamByName(teamName);
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   230
        if team = nil then exit;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   231
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   232
        c:= getUnusedColor;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   233
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   234
        teams[i]:= team^;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   235
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   236
        if i = 0 then hn:= 4 else hn:= teams[i - 1].hogsNumber;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   237
        if hn > 48 - hedgehogsNumber then hn:= 48 - hedgehogsNumber;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   238
        teams[i].hogsNumber:= hn;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   239
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   240
        teams[i].color:= c;
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   241
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   242
        msg:= '0' + #10 + teamName;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   243
        guiCallbackFunction(guiCallbackPointer, mtAddPlayingTeam, @msg[1], length(msg));
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   244
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   245
        msg:= teamName + #10 + colorsSet[teams[i].color];
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   246
        guiCallbackFunction(guiCallbackPointer, mtTeamColor, @msg[1], length(msg));
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   247
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   248
        msg:= teamName;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   249
        guiCallbackFunction(guiCallbackPointer, mtRemoveTeam, @msg[1], length(msg))
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   250
    end
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   251
end;
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   252
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   253
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   254
procedure tryRemoveTeam(teamName: PChar); cdecl;
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   255
var msg: ansistring;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   256
    i: Longword;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   257
    tn: shortstring;
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   258
begin
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   259
    with currentConfig do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   260
    begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   261
        i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   262
        tn:= teamName;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   263
        while (i < 8) and (teams[i].teamName <> tn) do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   264
            inc(i);
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   265
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   266
        // team not found???
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   267
        if (i > 7) then exit;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   268
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   269
        while (i < 7) and (teams[i + 1].hogsNumber > 0) do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   270
        begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   271
            teams[i]:= teams[i + 1];
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   272
            inc(i)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   273
        end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   274
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   275
        teams[i].hogsNumber:= 0
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   276
    end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   277
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   278
    msg:= teamName;
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   279
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   280
    guiCallbackFunction(guiCallbackPointer, mtRemovePlayingTeam, @msg[1], length(msg));
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   281
    guiCallbackFunction(guiCallbackPointer, mtAddTeam, @msg[1], length(msg))
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   282
end;
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10432
diff changeset
   283
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   284
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   285
procedure changeTeamColor(teamName: PChar; dir: LongInt); cdecl;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   286
var i, dc: Longword;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   287
    tn: shortstring;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   288
    msg: ansistring;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   289
begin
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   290
    with currentConfig do
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   291
    begin
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   292
        i:= 0;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   293
        tn:= teamName;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   294
        while (i < 8) and (teams[i].teamName <> tn) do
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   295
            inc(i);
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   296
        // team not found???
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   297
        if (i > 7) then exit;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   298
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   299
        if dir >= 0 then dc:= 1 else dc:= 8;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   300
        teams[i].color:= (teams[i].color + dc) mod 9;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   301
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   302
        msg:= tn + #10 + colorsSet[teams[i].color];
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   303
        guiCallbackFunction(guiCallbackPointer, mtTeamColor, @msg[1], length(msg))
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   304
    end
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   305
end;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   306
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   307
procedure setTheme(themeName: PChar); cdecl;
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   308
begin
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   309
    currentConfig.theme:= themeName
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   310
end;
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   311
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
   312
end.