hedgewars/uFLGameConfig.pas
author unc0rr
Tue, 01 Dec 2015 23:40:38 +0300
branchqmlfrontend
changeset 11438 1a6148b4de3b
parent 11437 6e641b5453f9
child 11440 330c14f4ba69
permissions -rw-r--r--
Rename uFLData to uFLThemes
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 setSeed(seed: PChar); cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    11
function  getSeed: PChar; cdecl;
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
    12
procedure setTheme(themeName: PChar); cdecl;
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
    13
procedure setScript(scriptName: PChar); cdecl;
10819
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
    14
procedure setScheme(schemeName: PChar); cdecl;
10888
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
    15
procedure setAmmo(ammoName: PChar); cdecl;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
    16
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
    17
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
    18
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
    19
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
    20
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    21
procedure netSetSeed(seed: shortstring);
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    22
procedure netSetTheme(themeName: shortstring);
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    23
procedure netSetScript(scriptName: shortstring);
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    24
procedure netSetFeatureSize(fsize: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    25
procedure netSetMapGen(mapgen: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    26
procedure netSetMap(map: shortstring);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    27
procedure netSetMazeSize(mazesize: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    28
procedure netSetTemplate(template: LongInt);
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
    29
procedure netSetAmmo(name: shortstring; definition: ansistring);
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    30
procedure updatePreviewIfNeeded;
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    31
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    32
procedure sendConfig(config: PGameConfig);
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    33
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    34
implementation
11438
1a6148b4de3b Rename uFLData to uFLThemes
unc0rr
parents: 11437
diff changeset
    35
uses uFLIPC, uFLUtils, uFLTeams, uFLThemes, uFLSChemes, uFLAmmo, uFLUICallback, uFLRunQueue;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    36
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    37
var
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    38
    currentConfig: TGameConfig;
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
    39
    previewNeedsUpdate: boolean;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    40
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    41
function getScriptPath(scriptName: shortstring): shortstring;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    42
begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    43
    getScriptPath:= '/Scripts/Multiplayer/' + scriptName + '.lua'
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    44
end;
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    45
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    46
procedure sendConfig(config: PGameConfig);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    47
var i: Longword;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    48
begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    49
with config^ do
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    50
begin
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    51
    case gameType of
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    52
    gtPreview: begin
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    53
            if script <> 'Normal' then
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    54
                ipcToEngine('escript ' + getScriptPath(script));
10432
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));
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    57
            ipcToEngine('e$template_filter ' + intToStr(template));
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    58
            ipcToEngine('e$feature_size ' + intToStr(featureSize));
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    59
        end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    60
    gtLocal: begin
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    61
            if script <> 'Normal' then
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    62
                ipcToEngine('escript ' + getScriptPath(script));
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    63
            ipcToEngine('eseed ' + seed);
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    64
            ipcToEngine('e$mapgen ' + intToStr(mapgen));
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    65
            ipcToEngine('e$template_filter ' + intToStr(template));
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    66
            ipcToEngine('e$feature_size ' + intToStr(featureSize));
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
    67
            ipcToEngine('e$theme ' + theme);
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
    68
10819
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
    69
            sendSchemeConfig(scheme);
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
    70
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    71
            i:= 0;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    72
            while (i < 8) and (teams[i].hogsNumber > 0) do
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    73
                begin
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
    74
                    sendTeamConfig(teams[i]);
10892
83a99e2f8b00 Make ammo scheme work
unc0rr
parents: 10888
diff changeset
    75
                    sendAmmoConfig(config^.ammo);
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    76
                    inc(i)
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    77
                end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    78
        end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    79
    end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    80
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    81
    ipcToEngine('!');
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    82
end;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
    83
end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    84
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
    85
procedure resetGameConfig; cdecl;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    86
var i: Longword;
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
    87
begin
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    88
    with currentConfig do
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    89
    begin
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    90
        script:= 'Normal';
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    91
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    92
        for i:= 0 to 7 do
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    93
            teams[i].hogsNumber:= 0
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
    94
    end
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
    95
end;
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
    96
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    97
procedure setSeed(seed: PChar); cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
    98
begin
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
    99
    sendUI(mtSeed, @seed[1], length(seed));
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   100
    currentConfig.seed:= seed
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   101
end;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   102
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   103
function getSeed: PChar; cdecl;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   104
begin
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   105
    getSeed:= str2PChar(currentConfig.seed)
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   106
end;
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   107
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   108
function getUnusedColor: Longword;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   109
var i, c: Longword;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   110
    fColorMatched: boolean;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   111
begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   112
    c:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   113
    i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   114
    repeat
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   115
        repeat
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   116
            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
   117
            inc(i)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   118
        until (i >= 8) or (currentConfig.teams[i].hogsNumber = 0) or fColorMatched;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   119
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   120
        if fColorMatched then
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   121
        begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   122
            i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   123
            inc(c)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   124
        end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   125
    until not fColorMatched;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   126
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   127
    getUnusedColor:= c
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   128
end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   129
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   130
procedure runQuickGame; cdecl;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   131
begin
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   132
    with currentConfig do
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   133
    begin
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   134
        gameType:= gtLocal;
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   135
        arguments[0]:= '';
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   136
        arguments[1]:= '--internal';
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   137
        arguments[2]:= '--nomusic';
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   138
        argumentsNumber:= 3;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   139
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   140
        teams[0]:= createRandomTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   141
        teams[0].color:= 0;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   142
        teams[1]:= createRandomTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   143
        teams[1].color:= 1;
11424
86c13e5662f1 - Some refactoring
unc0rr
parents: 10951
diff changeset
   144
        teams[1].botLevel:= 3;
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   145
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
   146
        queueExecution(currentConfig);
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10430
diff changeset
   147
    end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   148
end;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   149
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   150
10430
899a30018ede Getter and setter for seed
unc0rr
parents: 10428
diff changeset
   151
procedure getPreview; cdecl;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   152
begin
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   153
    previewNeedsUpdate:= false;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   154
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   155
    with currentConfig do
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   156
    begin
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   157
        gameType:= gtPreview;
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   158
        arguments[0]:= '';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   159
        arguments[1]:= '--internal';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   160
        arguments[2]:= '--landpreview';
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   161
        argumentsNumber:= 3;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   162
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
   163
        queueExecution(currentConfig);
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   164
    end;
10428
7c25297720f1 More refactoring: move PoC preview getting code into flib
unc0rr
parents: 10426
diff changeset
   165
end;
10426
727a154cf784 Some refactoring
unc0rr
parents: 10406
diff changeset
   166
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   167
procedure runLocalGame; cdecl;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   168
begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   169
    with currentConfig do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   170
    begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   171
        gameType:= gtLocal;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   172
        arguments[0]:= '';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   173
        arguments[1]:= '--internal';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   174
        arguments[2]:= '--nomusic';
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   175
        argumentsNumber:= 3;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   176
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
   177
        queueExecution(currentConfig);
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   178
    end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   179
end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   180
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   181
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
   182
var msg: ansistring;
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   183
    i, hn, hedgehogsNumber: Longword;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   184
    team: PTeam;
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   185
    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
   186
begin
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   187
    with currentConfig do
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   188
    begin
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   189
        hedgehogsNumber:= 0;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   190
        i:= 0;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   191
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   192
        while (i < 8) and (teams[i].hogsNumber > 0) do
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   193
        begin
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   194
            inc(i);
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   195
            inc(hedgehogsNumber, teams[i].hogsNumber)
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   196
        end;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   197
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   198
        // no free space for a team or reached hogs number maximum
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   199
        if (i > 7) or (hedgehogsNumber >= 48) then exit;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   200
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   201
        team:= teamByName(teamName);
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   202
        if team = nil then exit;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   203
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   204
        c:= getUnusedColor;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   205
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   206
        teams[i]:= team^;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   207
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   208
        if i = 0 then hn:= 4 else hn:= teams[i - 1].hogsNumber;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   209
        if hn > 48 - hedgehogsNumber then hn:= 48 - hedgehogsNumber;
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   210
        teams[i].hogsNumber:= hn;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   211
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   212
        teams[i].color:= c;
10446
7ae44f42a689 Perform some checks on team add
unc0rr
parents: 10444
diff changeset
   213
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   214
        msg:= '0' + #10 + teamName;
10951
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   215
        sendUI(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
   216
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   217
        msg:= teamName + #10 + colorsSet[teams[i].color];
10951
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   218
        sendUI(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
   219
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   220
        msg:= teamName;
10951
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   221
        sendUI(mtRemoveTeam, @msg[1], length(msg))
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   222
    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
   223
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
   224
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   225
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   226
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
   227
var msg: ansistring;
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   228
    i: Longword;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   229
    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
   230
begin
10448
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   231
    with currentConfig do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   232
    begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   233
        i:= 0;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   234
        tn:= teamName;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   235
        while (i < 8) and (teams[i].teamName <> tn) do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   236
            inc(i);
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   237
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   238
        // team not found???
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   239
        if (i > 7) then exit;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   240
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   241
        while (i < 7) and (teams[i + 1].hogsNumber > 0) do
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   242
        begin
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   243
            teams[i]:= teams[i + 1];
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   244
            inc(i)
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   245
        end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   246
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   247
        teams[i].hogsNumber:= 0
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   248
    end;
4cb727e029fa - Allow to delete teams from config
unc0rr
parents: 10446
diff changeset
   249
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
   250
    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
   251
10951
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   252
    sendUI(mtRemovePlayingTeam, @msg[1], length(msg));
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   253
    sendUI(mtAddTeam, @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
   254
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
   255
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   256
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   257
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
   258
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
   259
    tn: shortstring;
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   260
    msg:  ansistring;
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   261
begin
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   262
    with currentConfig do
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   263
    begin
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   264
        i:= 0;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   265
        tn:= teamName;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   266
        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
   267
            inc(i);
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   268
        // team not found???
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   269
        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
   270
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   271
        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
   272
        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
   273
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   274
        msg:= tn + #10 + colorsSet[teams[i].color];
10951
89a7f617e091 - Move protocol handling events to main thread through qt's main loop
unc0rr
parents: 10892
diff changeset
   275
        sendUI(mtTeamColor, @msg[1], length(msg))
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   276
    end
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   277
end;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   278
10456
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   279
procedure setTheme(themeName: PChar); cdecl;
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   280
begin
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   281
    currentConfig.theme:= themeName
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   282
end;
6fd99bb73524 Theme can be changed
unc0rr
parents: 10452
diff changeset
   283
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
   284
procedure setScript(scriptName: PChar); cdecl;
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
   285
begin
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   286
    currentConfig.script:= scriptName
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
   287
end;
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10456
diff changeset
   288
10819
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   289
procedure setScheme(schemeName: PChar); cdecl;
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   290
var scheme: PScheme;
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   291
begin
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   292
    scheme:= schemeByName(schemeName);
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   293
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   294
    if scheme <> nil then
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   295
        currentConfig.scheme:= scheme^
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   296
end;
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10612
diff changeset
   297
10888
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   298
procedure setAmmo(ammoName: PChar); cdecl;
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   299
var ammo: PAmmo;
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   300
begin
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   301
    ammo:= ammoByName(ammoName);
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   302
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   303
    if ammo <> nil then
10892
83a99e2f8b00 Make ammo scheme work
unc0rr
parents: 10888
diff changeset
   304
        currentConfig.ammo:= ammo^
10888
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   305
end;
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10819
diff changeset
   306
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   307
procedure netSetSeed(seed: shortstring);
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   308
begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   309
    if seed <> currentConfig.seed then
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   310
    begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   311
        currentConfig.seed:= seed;
11432
97e3e62ea5f9 Update seed, theme and script from net in UI
unc0rr
parents: 11431
diff changeset
   312
        sendUI(mtSeed, @seed[1], length(seed));
97e3e62ea5f9 Update seed, theme and script from net in UI
unc0rr
parents: 11431
diff changeset
   313
97e3e62ea5f9 Update seed, theme and script from net in UI
unc0rr
parents: 11431
diff changeset
   314
        getPreview()
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   315
    end
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   316
end;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   317
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   318
procedure netSetTheme(themeName: shortstring);
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   319
begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   320
    if themeName <> currentConfig.theme then
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   321
    begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   322
        currentConfig.theme:= themeName;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   323
        sendUI(mtTheme, @themeName[1], length(themeName))
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   324
    end
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   325
end;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   326
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   327
procedure netSetScript(scriptName: shortstring);
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   328
begin
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   329
    if scriptName <> currentConfig.script then
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   330
    begin
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   331
        previewNeedsUpdate:= true;
11431
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   332
        currentConfig.script:= scriptName;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   333
        sendUI(mtScript, @scriptName[1], length(scriptName))
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   334
    end
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   335
end;
80a9b14bb8d3 Some game config methods and signals
unc0rr
parents: 11424
diff changeset
   336
11433
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   337
procedure netSetFeatureSize(fsize: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   338
var s: shortstring;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   339
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   340
    if fsize <> currentConfig.featureSize then
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   341
    begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   342
        previewNeedsUpdate:= true;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   343
        currentConfig.featureSize:= fsize;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   344
        s:= IntToStr(fsize);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   345
        sendUI(mtFeatureSize, @s[1], length(s))
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   346
    end
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   347
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   348
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   349
procedure netSetMapGen(mapgen: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   350
var s: shortstring;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   351
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   352
    if mapgen <> currentConfig.mapgen then
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   353
    begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   354
        previewNeedsUpdate:= true;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   355
        currentConfig.mapgen:= mapgen;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   356
        s:= IntToStr(mapgen);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   357
        sendUI(mtMapGen, @s[1], length(s))
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   358
    end
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   359
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   360
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   361
procedure netSetMap(map: shortstring);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   362
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   363
    sendUI(mtMap, @map[1], length(map))
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   364
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   365
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   366
procedure netSetMazeSize(mazesize: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   367
var s: shortstring;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   368
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   369
    if mazesize <> currentConfig.mazesize then
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   370
    begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   371
        previewNeedsUpdate:= true;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   372
        currentConfig.mazesize:= mazesize;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   373
        s:= IntToStr(mazesize);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   374
        sendUI(mtMazeSize, @s[1], length(s))
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   375
    end
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   376
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   377
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   378
procedure netSetTemplate(template: LongInt);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   379
var s: shortstring;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   380
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   381
    if template <> currentConfig.template then
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   382
    begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   383
        previewNeedsUpdate:= true;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   384
        currentConfig.template:= template;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   385
        s:= IntToStr(template);
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   386
        sendUI(mtTemplate, @s[1], length(s))
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   387
    end
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   388
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   389
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   390
procedure updatePreviewIfNeeded;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   391
begin
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   392
    if previewNeedsUpdate then
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   393
        getPreview
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   394
end;
bca9afcc3a72 Handle some CFG parameters
unc0rr
parents: 11432
diff changeset
   395
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   396
procedure netSetAmmo(name: shortstring; definition: ansistring);
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   397
var ammo: TAmmo;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   398
    i: LongInt;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   399
begin
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   400
    ammo.ammoName:= name;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   401
    i:= length(definition) div 4;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   402
    ammo.a:= copy(definition, 1, i);
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   403
    ammo.b:= copy(definition, i + 1, i);
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   404
    ammo.c:= copy(definition, i * 2 + 1, i);
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   405
    ammo.d:= copy(definition, i * 3 + 1, i);
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   406
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   407
    currentConfig.ammo:= ammo;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   408
    sendUI(mtAmmo, @name[1], length(name))
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   409
end;
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   410
10406
b5fd52ac760f Basic layout of frontlib, some more sdl bindings
unc0rr
parents:
diff changeset
   411
end.