hedgewars/uLandGenTemplateBased.pas
author nemo
Sat, 08 Nov 2014 11:26:16 -0500
changeset 10472 8d04cebedb16
parent 10387 cb17b79844b5
child 10477 b219c5a2317f
permissions -rw-r--r--
Partially hook up feature size so horrorcat has something to test.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     1
unit uLandGenTemplateBased;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     2
interface
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     3
10387
cb17b79844b5 Apply new distortion on maze gen
unc0rr
parents: 10226
diff changeset
     4
uses uLandTemplates, uLandOutline;
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     5
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     6
procedure GenTemplated(var Template: TEdgeTemplate);
10387
cb17b79844b5 Apply new distortion on maze gen
unc0rr
parents: 10226
diff changeset
     7
procedure DivideEdges(fillPointsCount: LongWord; var pa: TPixAr);
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     8
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
     9
implementation
10387
cb17b79844b5 Apply new distortion on maze gen
unc0rr
parents: 10226
diff changeset
    10
uses uVariables, uConsts, uFloat, uLandUtils, uRandom, SDLh, math;
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    11
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10387
diff changeset
    12
var minDistance: LongInt; // different details size
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    13
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    14
procedure SetPoints(var Template: TEdgeTemplate; var pa: TPixAr; fps: PPointArray);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    15
var i: LongInt;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    16
begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    17
    with Template do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    18
        begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    19
        pa.Count:= BasePointsCount;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    20
        for i:= 0 to pred(pa.Count) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    21
            begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    22
            pa.ar[i].x:= BasePoints^[i].x + LongInt(GetRandom(BasePoints^[i].w));
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    23
            if pa.ar[i].x <> NTPX then
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    24
                pa.ar[i].x:= pa.ar[i].x + ((LAND_WIDTH - Template.TemplateWidth) div 2);
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    25
            pa.ar[i].y:= BasePoints^[i].y + LongInt(GetRandom(BasePoints^[i].h)) + LAND_HEIGHT - LongInt(Template.TemplateHeight)
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    26
            end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    27
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    28
        if canMirror then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    29
            if getrandom(2) = 0 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    30
                begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    31
                for i:= 0 to pred(BasePointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    32
                if pa.ar[i].x <> NTPX then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    33
                    pa.ar[i].x:= LAND_WIDTH - 1 - pa.ar[i].x;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    34
                for i:= 0 to pred(FillPointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    35
                    fps^[i].x:= LAND_WIDTH - 1 - fps^[i].x;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    36
                end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    37
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    38
(*  Experiment in making this option more useful
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    39
     if ((not isNegative) and (cTemplateFilter = 4)) or
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    40
        (canFlip and (getrandom(2) = 0)) then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    41
           begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    42
           for i:= 0 to pred(BasePointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    43
               begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    44
               pa.ar[i].y:= LAND_HEIGHT - 1 - pa.ar[i].y + (LAND_HEIGHT - TemplateHeight) * 2;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    45
               if pa.ar[i].y > LAND_HEIGHT - 1 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    46
                   pa.ar[i].y:= LAND_HEIGHT - 1;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    47
               end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    48
           for i:= 0 to pred(FillPointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    49
               begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    50
               FillPoints^[i].y:= LAND_HEIGHT - 1 - FillPoints^[i].y + (LAND_HEIGHT - TemplateHeight) * 2;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    51
               if FillPoints^[i].y > LAND_HEIGHT - 1 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    52
                   FillPoints^[i].y:= LAND_HEIGHT - 1;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    53
               end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    54
           end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    55
     end
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    56
*)
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    57
// template recycling.  Pull these off the floor a bit
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    58
    if (not isNegative) and (cTemplateFilter = 4) then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    59
        begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    60
        for i:= 0 to pred(BasePointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    61
            begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    62
            dec(pa.ar[i].y, 100);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    63
            if pa.ar[i].y < 0 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    64
                pa.ar[i].y:= 0;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    65
            end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    66
        for i:= 0 to pred(FillPointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    67
            begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    68
            dec(fps^[i].y, 100);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    69
            if fps^[i].y < 0 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    70
                fps^[i].y:= 0;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    71
            end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    72
        end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    73
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    74
    if (canFlip and (getrandom(2) = 0)) then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    75
        begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    76
        for i:= 0 to pred(BasePointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    77
            pa.ar[i].y:= LAND_HEIGHT - 1 - pa.ar[i].y;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    78
        for i:= 0 to pred(FillPointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    79
            fps^[i].y:= LAND_HEIGHT - 1 - fps^[i].y;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    80
        end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    81
    end
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
    82
end;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    83
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    84
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    85
procedure Distort1(var Template: TEdgeTemplate; var pa: TPixAr);
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    86
var i: Longword;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    87
begin
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    88
    for i:= 1 to Template.BezierizeCount do
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    89
        begin
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    90
        BezierizeEdge(pa, _0_5);
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    91
        RandomizePoints(pa);
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    92
        RandomizePoints(pa)
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    93
        end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    94
    for i:= 1 to Template.RandPassesCount do
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    95
        RandomizePoints(pa);
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    96
    BezierizeEdge(pa, _0_1);
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    97
end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
    98
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
    99
procedure FindPoint(si: LongInt; fillPointsCount: LongWord; var newPoint: TPoint; var pa: TPixAr);
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   100
const mapBorderMargin = 40;
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   101
var p1, p2, p4, fp, mp: TPoint;
10226
cb63617a0c2f Fix new generator on 32 bit arch
unc0rr
parents: 10225
diff changeset
   102
    i, t1, t2, iy, ix, aqpb: LongInt;
cb63617a0c2f Fix new generator on 32 bit arch
unc0rr
parents: 10225
diff changeset
   103
    a, b, p, q: LongInt;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   104
    dab, d, distL, distR: LongInt;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   105
begin
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   106
    // [p1, p2] is the segment we're trying to divide
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   107
    p1:= pa.ar[si];
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   108
    p2:= pa.ar[si + 1];
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   109
10206
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   110
    if p2.x = NTPX then
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   111
    // it is segment from last to first point, so need to find first point
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   112
    begin
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   113
        i:= si - 2;
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   114
        while (i >= 0) and (pa.ar[i].x <> NTPX) do
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   115
            dec(i);
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   116
        p2:= pa.ar[i + 1]
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   117
    end;
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   118
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   119
    // perpendicular vector
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   120
    a:= p2.y - p1.y;
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   121
    b:= p1.x - p2.x;
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   122
    dab:= DistanceI(a, b).Round;
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   123
10206
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   124
    // its middle point
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   125
    mp.x:= (p1.x + p2.x) div 2;
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   126
    mp.y:= (p1.y + p2.y) div 2;
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   127
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   128
    // don't process too short segments or those which are too close to map borders
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   129
    if (p1.x = NTPX)
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   130
            or (dab < minDistance * 3) 
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   131
            or (mp.x < LongInt(leftX) + mapBorderMargin)
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   132
            or (mp.x > LongInt(rightX) - mapBorderMargin)
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   133
            or (mp.y < LongInt(topY) + mapBorderMargin)
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   134
            or (mp.y > LongInt(LAND_HEIGHT) - mapBorderMargin)
10206
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   135
    then
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   136
    begin
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   137
        newPoint:= p1;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   138
        exit;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   139
    end;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   140
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   141
    // find distances to map borders
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   142
    if a <> 0 then
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   143
    begin
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   144
        // left border
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   145
        iy:= (LongInt(leftX) + mapBorderMargin - mp.x) * b div a + mp.y;
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   146
        d:= DistanceI(mp.x - leftX - mapBorderMargin, mp.y - iy).Round;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   147
        t1:= a * (mp.x - mapBorderMargin) + b * (mp.y - iy);
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   148
        if t1 > 0 then distL:= d else distR:= d;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   149
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   150
        // right border
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   151
        iy:= (rightX - mapBorderMargin - mp.x) * b div a + mp.y;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   152
        d:= DistanceI(mp.x - rightX + mapBorderMargin, mp.y - iy).Round;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   153
        if t1 > 0 then distR:= d else distL:= d;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   154
    end;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   155
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   156
    if b <> 0 then
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   157
    begin
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   158
        // top border
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   159
        ix:= (LongInt(topY) + mapBorderMargin - mp.y) * a div b + mp.x;
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   160
        d:= DistanceI(mp.y - topY - mapBorderMargin, mp.x - ix).Round;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   161
        t2:= b * (mp.y - mapBorderMargin) + a * (mp.x - ix);
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   162
        if t2 > 0 then distL:= min(d, distL) else distR:= min(d, distR);
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   163
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   164
        // bottom border
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   165
        ix:= (LAND_HEIGHT - mapBorderMargin - mp.y) * a div b + mp.x;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   166
        d:= DistanceI(mp.y - LAND_HEIGHT + mapBorderMargin, mp.x - ix).Round;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   167
        if t2 > 0 then distR:= min(d, distR) else distL:= min(d, distL);
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   168
    end;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   169
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   170
    // now go through all other segments
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   171
    fp:= pa.ar[0];
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   172
    for i:= 0 to pa.Count - 2 do
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   173
        if pa.ar[i].x = NTPX then
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   174
            fp:= pa.ar[i + 1]
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   175
        else if (i <> si) then
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   176
        begin
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   177
        p4:= pa.ar[i + 1];
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   178
        if p4.x = NTPX then
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   179
            p4:= fp;
10206
979a663d7351 Process segments from last to first point too
unc0rr
parents: 10205
diff changeset
   180
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   181
            // check if it intersects
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   182
            t1:= (mp.x - pa.ar[i].x) * b - a * (mp.y - pa.ar[i].y);
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   183
            t2:= (mp.x - p4.x) * b - a * (mp.y - p4.y);
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   184
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   185
            if (t1 > 0) <> (t2 > 0) then // yes it does, hard arith follows
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   186
            begin
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   187
                p:= p4.x - pa.ar[i].x;
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   188
                q:= p4.y - pa.ar[i].y;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   189
                aqpb:= a * q - p * b;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   190
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   191
                if (aqpb <> 0) then
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   192
                begin
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   193
                    // (ix; iy) is intersection point
10226
cb63617a0c2f Fix new generator on 32 bit arch
unc0rr
parents: 10225
diff changeset
   194
                    iy:= ((Int64(pa.ar[i].x - mp.x) * b + Int64(mp.y) * a) * q - Int64(pa.ar[i].y) * p * b) div aqpb;
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   195
                    if abs(b) > abs(q) then
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   196
                        ix:= (iy - mp.y) * a div b + mp.x
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   197
                    else
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   198
                        ix:= (iy - pa.ar[i].y) * p div q + pa.ar[i].x;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   199
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   200
                    d:= DistanceI(mp.y - iy, mp.x - ix).Round;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   201
                    t1:= b * (mp.y - iy) + a * (mp.x - ix);
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   202
                    if t1 > 0 then distL:= min(d, distL) else distR:= min(d, distR);
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   203
                end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   204
            end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   205
        end;
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   206
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   207
    // go through all points, including fill points
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   208
    for i:= 0 to Pred(pa.Count + fillPointsCount) do
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   209
        // if this point isn't on current segment
10205
fc99e124ba4d Prevent intersections with segment from last to first point, adjust size of details
unc0rr
parents: 10204
diff changeset
   210
        if (si <> i) and (i <> si + 1) and (pa.ar[i].x <> NTPX) then
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   211
        begin
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   212
            // also check intersection with rays through pa.ar[i] if this point is good
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   213
            t1:= (p1.x - pa.ar[i].x) * b - a * (p1.y - pa.ar[i].y);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   214
            t2:= (p2.x - pa.ar[i].x) * b - a * (p2.y - pa.ar[i].y);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   215
            if (t1 > 0) <> (t2 > 0) then
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   216
            begin
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   217
                // ray from p1
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   218
                p:= pa.ar[i].x - p1.x;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   219
                q:= pa.ar[i].y - p1.y;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   220
                aqpb:= a * q - p * b;
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   221
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   222
                if (aqpb <> 0) then
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   223
                begin
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   224
                    // (ix; iy) is intersection point
10226
cb63617a0c2f Fix new generator on 32 bit arch
unc0rr
parents: 10225
diff changeset
   225
                    iy:= ((Int64(p1.x - mp.x) * b + Int64(mp.y) * a) * q - Int64(p1.y) * p * b) div aqpb;
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   226
                    if abs(b) > abs(q) then
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   227
                        ix:= (iy - mp.y) * a div b + mp.x
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   228
                    else
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   229
                        ix:= (iy - p1.y) * p div q + p1.x;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   230
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   231
                    d:= DistanceI(mp.y - iy, mp.x - ix).Round;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   232
                    t1:= b * (mp.y - iy) + a * (mp.x - ix);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   233
                    if t1 > 0 then distL:= min(d, distL) else distR:= min(d, distR);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   234
                end;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   235
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   236
                // and ray from p2
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   237
                p:= pa.ar[i].x - p2.x;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   238
                q:= pa.ar[i].y - p2.y;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   239
                aqpb:= a * q - p * b;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   240
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   241
                if (aqpb <> 0) then
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   242
                begin
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   243
                    // (ix; iy) is intersection point
10226
cb63617a0c2f Fix new generator on 32 bit arch
unc0rr
parents: 10225
diff changeset
   244
                    iy:= ((Int64(p2.x - mp.x) * b + Int64(mp.y) * a) * q - Int64(p2.y) * p * b) div aqpb;
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   245
                    if abs(b) > abs(q) then
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   246
                        ix:= (iy - mp.y) * a div b + mp.x
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   247
                    else
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   248
                        ix:= (iy - p2.y) * p div q + p2.x;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   249
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   250
                    d:= DistanceI(mp.y - iy, mp.x - ix).Round;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   251
                    t2:= b * (mp.y - iy) + a * (mp.x - ix);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   252
                    if t2 > 0 then distL:= min(d, distL) else distR:= min(d, distR);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   253
                end;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   254
            end;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   255
        end;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   256
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   257
    // don't move new point for more than length of initial segment
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   258
    // adjust/parametrize for more flat surfaces (try values 3/4, 1/2 of dab, or even 1/4)
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   259
    d:= dab;
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   260
    if distL > d then distL:= d;
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   261
    if distR > d then distR:= d;
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   262
10204
50e52e511300 Fix div by zero error in new generator
unc0rr
parents: 10203
diff changeset
   263
    if distR + distL < minDistance * 2 + 10 then
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   264
    begin
10225
0278759252b6 No more occasional long straight edges
unc0rr
parents: 10209
diff changeset
   265
        // limits are too narrow, just divide
0278759252b6 No more occasional long straight edges
unc0rr
parents: 10209
diff changeset
   266
        newPoint.x:= mp.x;
0278759252b6 No more occasional long straight edges
unc0rr
parents: 10209
diff changeset
   267
        newPoint.y:= mp.y;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   268
    end
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   269
    else
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   270
    begin
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   271
        // select distance within [-distL; distR]
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   272
        d:= -distL + minDistance + LongInt(GetRandom(distR + distL - minDistance * 2));
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   273
        //d:= distR - minDistance;
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   274
        //d:= - distL + minDistance;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   275
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   276
        // calculate new point
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   277
        newPoint.x:= mp.x + a * d div dab;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   278
        newPoint.y:= mp.y + b * d div dab;
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   279
    end;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   280
end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   281
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   282
procedure DivideEdges(fillPointsCount: LongWord; var pa: TPixAr);
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   283
var i, t: LongInt;
10200
edc2fe0ca03f More math, implementation is nearly complete, just still have an issue to resolve
unc0rr
parents: 10199
diff changeset
   284
    newPoint: TPoint;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   285
begin
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   286
    newPoint.x:= 0;
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   287
    newPoint.y:= 0;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   288
    i:= 0;
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   289
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   290
    while i < pa.Count - 1 do
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   291
    begin
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   292
        FindPoint(i, fillPointsCount, newPoint, pa);
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   293
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   294
        if (newPoint.x <> pa.ar[i].x) or (newPoint.y <> pa.ar[i].y) then
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   295
        begin
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   296
            // point found, free a slot for it in array, don't forget to move appended fill points
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   297
            for t:= pa.Count + fillPointsCount downto i + 2 do
10202
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   298
                pa.ar[t]:= pa.ar[t - 1];
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   299
            inc(pa.Count);
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   300
            pa.ar[i + 1]:= newPoint;
f7c8cb11a70e No self intersections, except for weirdness between first and last point
unc0rr
parents: 10201
diff changeset
   301
            inc(i)
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   302
        end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   303
        inc(i)
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   304
    end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   305
end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   306
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   307
procedure Distort2(var Template: TEdgeTemplate; fps: PPointArray; var pa: TPixAr);
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   308
var i: Longword;
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   309
begin
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   310
    // append fill points to ensure distortion won't move them to other side of segment
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   311
    for i:= 0 to pred(Template.FillPointsCount) do
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   312
        begin
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   313
            pa.ar[pa.Count + i].x:= fps^[i].x;
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   314
            pa.ar[pa.Count + i].y:= fps^[i].y;
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   315
        end;
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   316
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   317
    // divide while it divides
10203
adeab6c21fe5 Greedy approach: divide while it divides
unc0rr
parents: 10202
diff changeset
   318
    repeat
adeab6c21fe5 Greedy approach: divide while it divides
unc0rr
parents: 10202
diff changeset
   319
        i:= pa.Count;
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   320
        DivideEdges(Template.FillPointsCount, pa)
10203
adeab6c21fe5 Greedy approach: divide while it divides
unc0rr
parents: 10202
diff changeset
   321
    until i = pa.Count;
10201
9bee9541edf1 Fix detection of intersections, still need to check if passing any point in move, but result is already okayish
unc0rr
parents: 10200
diff changeset
   322
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   323
    // make it smooth
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   324
    BezierizeEdge(pa, _0_2);
10199
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   325
end;
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   326
fdb689b57b1b Some progress on new generator
unc0rr
parents: 10198
diff changeset
   327
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   328
procedure GenTemplated(var Template: TEdgeTemplate);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   329
var pa: TPixAr;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   330
    i: Longword;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   331
    y, x: Longword;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   332
    fps: TPointArray;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   333
begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   334
    fps:=Template.FillPoints^;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   335
    ResizeLand(Template.TemplateWidth, Template.TemplateHeight);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   336
    for y:= 0 to LAND_HEIGHT - 1 do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   337
        for x:= 0 to LAND_WIDTH - 1 do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   338
            Land[y, x]:= lfBasic;
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10387
diff changeset
   339
    
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10387
diff changeset
   340
    minDistance:= max(cFeatureSize,12);
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   341
    MaxHedgehogs:= Template.MaxHedgehogs;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   342
    hasGirders:= Template.hasGirders;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   343
    playHeight:= Template.TemplateHeight;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   344
    playWidth:= Template.TemplateWidth;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   345
    leftX:= (LAND_WIDTH - playWidth) div 2;
10209
76316652ef26 Fix warnings
unc0rr
parents: 10208
diff changeset
   346
    rightX:= Pred(leftX + playWidth);
10208
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   347
    topY:= LAND_HEIGHT - playHeight;
f04fdb35fc33 - Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents: 10207
diff changeset
   348
    
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   349
    {$HINTS OFF}
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   350
    SetPoints(Template, pa, @fps);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   351
    {$HINTS ON}
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   352
10207
9dd3a44805a1 - Make sure distortion doesn't move fill point to other side of segment, this prevents corrupted maps
unc0rr
parents: 10206
diff changeset
   353
    Distort2(Template, @fps, pa);
10198
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   354
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   355
    DrawEdge(pa, 0);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   356
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   357
    with Template do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   358
        for i:= 0 to pred(FillPointsCount) do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   359
            with fps[i] do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   360
                FillLand(x, y, 0, 0);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   361
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   362
    DrawEdge(pa, lfBasic);
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   363
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   364
    // HACK: force to only cavern even if a cavern map is invertable if cTemplateFilter = 4 ?
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   365
    if (cTemplateFilter = 4)
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   366
    or (Template.canInvert and (getrandom(2) = 0))
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   367
    or (not Template.canInvert and Template.isNegative) then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   368
        begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   369
        hasBorder:= true;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   370
        for y:= 0 to LAND_HEIGHT - 1 do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   371
            for x:= 0 to LAND_WIDTH - 1 do
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   372
                if (y < topY) or (x < leftX) or (x > rightX) then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   373
                    Land[y, x]:= 0
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   374
                else
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   375
                    begin
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   376
                    if Land[y, x] = 0 then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   377
                        Land[y, x]:= lfBasic
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   378
                    else if Land[y, x] = lfBasic then
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   379
                        Land[y, x]:= 0;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   380
                    end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   381
        end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   382
end;
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   383
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   384
e9cbe111c0df Move template-based generator into its own file
unc0rr
parents:
diff changeset
   385
end.