hedgewars/uCollisions.pas
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Apr 2018 17:17:42 +0200
changeset 13340 85644a45e988
parent 13168 0e7eddfbce8a
child 13463 f1d349a52bc7
permissions -rw-r--r--
New Lua call: Retreat, to force turn into Retreat time
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 967
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10818
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 107
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10015
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
    20
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
unit uCollisions;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
interface
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    23
uses uFloat, uTypes, uUtils;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2599
diff changeset
    24
5290
eea7570d345f This can afford to be a bit larger. Does not impact performance.
nemo
parents: 4976
diff changeset
    25
const cMaxGearArrayInd = 1023;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    26
const cMaxGearHitOrderInd = 1023;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
    28
type PGearArray = ^TGearArray;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    29
    TGearArray = record
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    30
        ar: array[0..cMaxGearArrayInd] of PGear;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    31
        cX: array[0..cMaxGearArrayInd] of LongInt;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    32
        cY: array[0..cMaxGearArrayInd] of LongInt;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    33
        Count: Longword
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    34
        end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    35
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    36
type PGearHitOrder = ^TGearHitOrder;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    37
    TGearHitOrder = record
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    38
        ar: array[0..cMaxGearHitOrderInd] of PGear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    39
        order: array[0..cMaxGearHitOrderInd] of LongInt;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    40
        Count: Longword
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    41
        end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    42
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    43
type TLineCollision = record
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    44
        hasCollision: Boolean;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    45
        cX, cY: LongInt; //for visual effects only
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    46
        end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    47
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    48
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    49
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
    50
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9247
diff changeset
    51
procedure AddCI(Gear: PGear);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
    52
procedure DeleteCI(Gear: PGear);
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
    53
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
    54
function  CheckGearsCollision(Gear: PGear): PGearArray;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    55
function  CheckAllGearsCollision(SourceGear: PGear): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    56
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    57
function  CheckGearsLineCollision(Gear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    58
function  CheckAllGearsLineCollision(SourceGear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    59
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    60
function  UpdateHitOrder(Gear: PGear; Order: LongInt): boolean;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    61
procedure ClearHitOrderLeq(MinOrder: LongInt);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    62
procedure ClearHitOrder();
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
    63
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    64
function  TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word;
6081
537bbd5c1a62 Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents: 5919
diff changeset
    65
function  TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
    66
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    67
function  TestCollisionXKick(Gear: PGear; Dir: LongInt): Word;
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    68
function  TestCollisionYKick(Gear: PGear; Dir: LongInt): Word;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
    69
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    70
function  TestCollisionX(Gear: PGear; Dir: LongInt): Word;
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    71
function  TestCollisionY(Gear: PGear; Dir: LongInt): Word;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
    72
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    73
function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt): Word; inline;
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    74
function  TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    75
function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt): Word; inline;
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    76
function  TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10635
diff changeset
    78
function  TestRectangleForObstacle(x1, y1, x2, y2: LongInt; landOnly: boolean): boolean;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
    79
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
    80
function  CheckCoordInWater(X, Y: LongInt): boolean; inline;
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
    81
9248
3e8558dc285a BOM, pas2c only support ASCII
koda
parents: 9080
diff changeset
    82
// returns: negative sign if going downhill to left, value is steepness (noslope/error = _0, 45 = _0_5)
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
    83
function  CalcSlopeBelowGear(Gear: PGear): hwFloat;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
    84
function  CalcSlopeNearGear(Gear: PGear; dirX, dirY: LongInt): hwFloat;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
    85
function  CalcSlopeTangent(Gear: PGear; collisionX, collisionY: LongInt; var outDeltaX, outDeltaY: LongInt; TestWord: LongWord): boolean;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
    86
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    87
implementation
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11077
diff changeset
    88
uses uConsts, uLandGraphics, uVariables;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    89
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
    90
type TCollisionEntry = record
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    91
    X, Y, Radius: LongInt;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    92
    cGear: PGear;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
    93
    end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
    94
5568
badaac85f9d4 bump up max collision to 1024 entries
nemo
parents: 5290
diff changeset
    95
const MAXRECTSINDEX = 1023;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
    96
var Count: Longword;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
    97
    cinfos: array[0..MAXRECTSINDEX] of TCollisionEntry;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
    98
    ga: TGearArray;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
    99
    ordera: TGearHitOrder;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   100
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9247
diff changeset
   101
procedure AddCI(Gear: PGear);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
   102
begin
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11077
diff changeset
   103
if (Gear^.CollisionIndex >= 0) or (Count > MAXRECTSINDEX) or
10551
4eefc711309e Skip checkin on collision for frequently spammed gear types if collision gets huge instead of trying to delete mines.
nemo
parents: 10494
diff changeset
   104
    ((Count > MAXRECTSINDEX-200) and ((Gear^.Kind = gtMine) or (Gear^.Kind = gtSMine) or (Gear^.Kind = gtKnife))) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   105
    exit;
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11077
diff changeset
   106
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
   107
with cinfos[Count] do
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   108
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   109
    X:= hwRound(Gear^.X);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   110
    Y:= hwRound(Gear^.Y);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   111
    Radius:= Gear^.Radius;
11589
c453620cc6d6 Break up the hog/object collision. Currently is $7F, allowing 128 overlapping objects accurately. Breaking it up into 15 for hogs, 7 for other objects. I'm thinking the overall accuracy should be just fine as far as people noticing even with a ton of overlapping hogs, and this way we can tell the difference between a hog and "something else". For experiment and rope-breaking purposes, make rope pass through hogs.
nemo
parents: 11532
diff changeset
   112
    ChangeRoundInLand(X, Y, Radius - 1, true,  ((CurrentHedgehog <> nil) and (Gear = CurrentHedgehog^.Gear)) or ((Gear^.Kind = gtCase) and (Gear^.State and gstFrozen = 0)), Gear^.Kind = gtHedgehog);
3608
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   113
    cGear:= Gear
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   114
    end;
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 505
diff changeset
   115
Gear^.CollisionIndex:= Count;
5569
8313952b2811 suggestion of mikade's - delete old mines if the collision array shows signs of filling up. This is kind of an edge case, esp now that array is up to 1024, but should prevent (easiest) way to crash by collision array overflow (endless mines/minestrikes).
nemo
parents: 5568
diff changeset
   116
inc(Count);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   117
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   118
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
   119
procedure DeleteCI(Gear: PGear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
begin
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 505
diff changeset
   121
if Gear^.CollisionIndex >= 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   122
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   123
    with cinfos[Gear^.CollisionIndex] do
11589
c453620cc6d6 Break up the hog/object collision. Currently is $7F, allowing 128 overlapping objects accurately. Breaking it up into 15 for hogs, 7 for other objects. I'm thinking the overall accuracy should be just fine as far as people noticing even with a ton of overlapping hogs, and this way we can tell the difference between a hog and "something else". For experiment and rope-breaking purposes, make rope pass through hogs.
nemo
parents: 11532
diff changeset
   124
        ChangeRoundInLand(X, Y, Radius - 1, false, ((CurrentHedgehog <> nil) and (Gear = CurrentHedgehog^.Gear)) or ((Gear^.Kind = gtCase) and (Gear^.State and gstFrozen = 0)), Gear^.Kind = gtHedgehog);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   125
    cinfos[Gear^.CollisionIndex]:= cinfos[Pred(Count)];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   126
    cinfos[Gear^.CollisionIndex].cGear^.CollisionIndex:= Gear^.CollisionIndex;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   127
    Gear^.CollisionIndex:= -1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   128
    dec(Count)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   129
    end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   131
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
   132
function CheckCoordInWater(X, Y: LongInt): boolean; inline;
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
   133
begin
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
   134
    CheckCoordInWater:= (Y > cWaterLine)
10494
0eb97cf4c78e Fix warnings given by 32-bit fpc
unC0Rr
parents: 10354
diff changeset
   135
        or ((WorldEdge = weSea) and ((X < LongInt(leftX)) or (X > LongInt(rightX))));
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
   136
end;
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10108
diff changeset
   137
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
   138
function CheckGearsCollision(Gear: PGear): PGearArray;
3609
bc63ed514b70 Minor fire tweak for readability and lethalness, remove exit condition that was hanging game (identified by jaylittle)
nemo
parents: 3608
diff changeset
   139
var mx, my, tr: LongInt;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   140
    i: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
begin
1506
a4ab75470ce1 - Some reformatting
unc0rr
parents: 1066
diff changeset
   142
CheckGearsCollision:= @ga;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 38
diff changeset
   143
ga.Count:= 0;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   144
if Count = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   145
    exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   146
mx:= hwRound(Gear^.X);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   147
my:= hwRound(Gear^.Y);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   148
4705
593ef1ad3cd3 ok. restore old [r + 1 + r] for gear width for a moment, and reset snowballs.
nemo
parents: 4684
diff changeset
   149
tr:= Gear^.Radius + 2;
3609
bc63ed514b70 Minor fire tweak for readability and lethalness, remove exit condition that was hanging game (identified by jaylittle)
nemo
parents: 3608
diff changeset
   150
3608
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   151
for i:= 0 to Pred(Count) do
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   152
    with cinfos[i] do
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   153
        if (Gear <> cGear) and
3609
bc63ed514b70 Minor fire tweak for readability and lethalness, remove exit condition that was hanging game (identified by jaylittle)
nemo
parents: 3608
diff changeset
   154
            (sqr(mx - x) + sqr(my - y) <= sqr(Radius + tr)) then
3608
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   155
                begin
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   156
                ga.ar[ga.Count]:= cinfos[i].cGear;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   157
                ga.cX[ga.Count]:= hwround(Gear^.X);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   158
                ga.cY[ga.Count]:= hwround(Gear^.Y);
3608
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   159
                inc(ga.Count)
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   160
                end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   161
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   162
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   163
function CheckAllGearsCollision(SourceGear: PGear): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   164
var mx, my, tr: LongInt;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   165
    Gear: PGear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   166
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   167
    CheckAllGearsCollision:= @ga;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   168
    ga.Count:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   169
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   170
    mx:= hwRound(SourceGear^.X);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   171
    my:= hwRound(SourceGear^.Y);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   172
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   173
    tr:= SourceGear^.Radius + 2;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   174
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   175
    Gear:= GearsList;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   176
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   177
    while Gear <> nil do
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   178
        begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   179
            if (Gear <> SourceGear) and
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   180
               (sqr(mx - hwRound(Gear^.x)) + sqr(my - hwRound(Gear^.y)) <= sqr(Gear^.Radius + tr))then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   181
            begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   182
                ga.ar[ga.Count]:= Gear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   183
                ga.cX[ga.Count]:= hwround(SourceGear^.X);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   184
                ga.cY[ga.Count]:= hwround(SourceGear^.Y);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   185
                inc(ga.Count)
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   186
            end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   187
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   188
            Gear := Gear^.NextGear
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   189
        end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   190
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   191
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   192
function LineCollisionTest(oX, oY, dirX, dirY, dirNormSqr, dirNormBound: hwFloat;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   193
        width: LongInt; Gear: PGear):
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   194
    TLineCollision; inline;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   195
var toCenterX, toCenterY, r,
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   196
    b, bSqr, c, desc, t: hwFloat;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   197
    realT: extended;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   198
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   199
    LineCollisionTest.hasCollision:= false;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   200
    toCenterX:= (oX - Gear^.X);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   201
    toCenterY:= (oY - Gear^.Y);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   202
    r:= int2hwFloat(Gear^.Radius + width + 2);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   203
    // Early cull to avoid multiplying large numbers
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   204
    if hwAbs(toCenterX) + hwAbs(toCenterY) > dirNormBound + r then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   205
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   206
    b:= dirX * toCenterX + dirY * toCenterY;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   207
    c:= hwSqr(toCenterX) + hwSqr(toCenterY) - hwSqr(r);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   208
    if (b > _0) and (c > _0) then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   209
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   210
    bSqr:= hwSqr(b);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   211
    desc:= bSqr - dirNormSqr * c;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   212
    if desc.isNegative then exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   213
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   214
    t:= -b - hwSqrt(desc);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   215
    if t.isNegative then t:= _0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   216
    if t < dirNormSqr then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   217
        with LineCollisionTest do
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   218
            begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   219
            hasCollision:= true;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   220
            realT := hwFloat2Float(t) / hwFloat2Float(dirNormSqr);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   221
            cX:= round(hwFloat2Float(oX) + realT * hwFloat2Float(dirX));
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   222
            cY:= round(hwFloat2Float(oY) + realT * hwFloat2Float(dirY));
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   223
            end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   224
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   225
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   226
function CheckGearsLineCollision(Gear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   227
var dirX, dirY, dirNormSqr, dirNormBound: hwFloat;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   228
    test: TLineCollision;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   229
    i: Longword;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   230
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   231
    CheckGearsLineCollision:= @ga;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   232
    ga.Count:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   233
    if Count = 0 then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   234
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   235
    dirX:= (tX - oX);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   236
    dirY:= (tY - oY);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   237
    dirNormBound:= _1_5 * (hwAbs(dirX) + hwAbs(dirY));
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   238
    dirNormSqr:= hwSqr(dirX) + hwSqr(dirY);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   239
    if dirNormSqr.isNegative then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   240
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   241
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   242
    for i:= 0 to Pred(Count) do
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   243
        with cinfos[i] do if Gear <> cGear then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   244
            begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   245
            test:= LineCollisionTest(
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   246
                oX, oY, dirX, dirY, dirNormSqr, dirNormBound, Gear^.Radius, cGear);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   247
            if test.hasCollision then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   248
                begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   249
                ga.ar[ga.Count] := cGear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   250
                ga.cX[ga.Count] := test.cX;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   251
                ga.cY[ga.Count] := test.cY;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   252
                inc(ga.Count)
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   253
                end
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   254
            end
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   255
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   256
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   257
function CheckAllGearsLineCollision(SourceGear: PGear; oX, oY, tX, tY: hwFloat): PGearArray;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   258
var dirX, dirY, dirNormSqr, dirNormBound: hwFloat;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   259
    test: TLineCollision;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   260
    Gear: PGear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   261
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   262
    CheckAllGearsLineCollision:= @ga;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   263
    ga.Count:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   264
    dirX:= (tX - oX);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   265
    dirY:= (tY - oY);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   266
    dirNormBound:= _1_5 * (hwAbs(dirX) + hwAbs(dirY));
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   267
    dirNormSqr:= hwSqr(dirX) + hwSqr(dirY);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   268
    if dirNormSqr.isNegative then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   269
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   270
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   271
    Gear:= GearsList;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   272
    while Gear <> nil do
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   273
    begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   274
        if SourceGear <> Gear then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   275
            begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   276
            test:= LineCollisionTest(
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   277
                oX, oY, dirX, dirY, dirNormSqr, dirNormBound, SourceGear^.Radius, Gear);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   278
            if test.hasCollision then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   279
                begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   280
                ga.ar[ga.Count] := Gear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   281
                ga.cX[ga.Count] := test.cX;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   282
                ga.cY[ga.Count] := test.cY;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   283
                inc(ga.Count)
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   284
                end
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   285
            end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   286
        Gear := Gear^.NextGear
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   287
    end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   288
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   289
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   290
function UpdateHitOrder(Gear: PGear; Order: LongInt): boolean;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   291
var i: LongInt;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   292
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   293
UpdateHitOrder:= true;
13168
0e7eddfbce8a Fix minigun bullets sometimes failing to hit when shooting same thing twice in row
alfadur
parents: 12898
diff changeset
   294
for i:= 0 to ordera.Count - 1 do
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   295
    if ordera.ar[i] = Gear then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   296
        begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   297
        if Order <= ordera.order[i] then UpdateHitOrder:= false;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   298
        ordera.order[i]:= Max(ordera.order[i], order);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   299
        exit;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   300
        end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   301
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   302
if ordera.Count > cMaxGearHitOrderInd then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   303
    UpdateHitOrder:= false
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   304
else
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   305
    begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   306
    ordera.ar[ordera.Count]:= Gear;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   307
    ordera.order[ordera.Count]:= Order;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   308
    Inc(ordera.Count);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   309
    end
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   310
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   311
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   312
procedure ClearHitOrderLeq(MinOrder: LongInt);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   313
var i, freeIndex: LongInt;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   314
begin;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   315
freeIndex:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   316
i:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   317
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   318
while i < ordera.Count do
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   319
    begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   320
        if ordera.order[i] <= MinOrder then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   321
            Dec(ordera.Count)
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   322
        else
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   323
            begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   324
                if freeIndex < i then
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   325
                begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   326
                ordera.ar[freeIndex]:= ordera.ar[i];
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   327
                ordera.order[freeIndex]:= ordera.order[i];
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   328
                end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   329
            Inc(freeIndex);
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   330
            end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   331
        Inc(i)
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   332
    end
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   333
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   334
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   335
procedure ClearHitOrder();
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   336
begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   337
    ordera.Count:= 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   338
end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 11589
diff changeset
   339
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   340
function TestCollisionXwithGear(Gear: PGear; Dir: LongInt): Word;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 351
diff changeset
   341
var x, y, i: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   342
begin
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   343
// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
8751
4609823efc94 More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents: 8744
diff changeset
   344
if (Gear^.CollisionMask = lfNotCurrentMask) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   345
    ((hwRound(Gear^.Hedgehog^.Gear^.X) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.X) - Gear^.Radius) or
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   346
     (hwRound(Gear^.Hedgehog^.Gear^.X) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.X) + Gear^.Radius)) then
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   347
    Gear^.CollisionMask:= $FFFF;
838
1faae19f2116 Remove tailing spaces in some places
unc0rr
parents: 542
diff changeset
   348
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   349
x:= hwRound(Gear^.X);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   350
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   351
    x:= x - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   352
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   353
    x:= x + Gear^.Radius;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   354
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1528
diff changeset
   355
if (x and LAND_WIDTH_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   356
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   357
    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   358
    i:= y + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   359
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   360
        if (y and LAND_HEIGHT_MASK) = 0 then
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   361
            if Land[y, x] and Gear^.CollisionMask <> 0 then
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   362
                exit(Land[y, x] and Gear^.CollisionMask);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   363
        inc(y)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   364
    until (y > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   365
    end;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   366
TestCollisionXwithGear:= 0
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
6081
537bbd5c1a62 Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents: 5919
diff changeset
   369
function TestCollisionYwithGear(Gear: PGear; Dir: LongInt): Word;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   370
var x, y, i: LongInt;
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   371
begin
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   372
// Special case to emulate the old intersect gear clearing, but with a bit of slop for pixel overlap
8751
4609823efc94 More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents: 8744
diff changeset
   373
if (Gear^.CollisionMask = lfNotCurrentMask) and (Gear^.Kind <> gtHedgehog) and (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.Gear <> nil) and
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   374
    ((hwRound(Gear^.Hedgehog^.Gear^.Y) + Gear^.Hedgehog^.Gear^.Radius + 16 < hwRound(Gear^.Y) - Gear^.Radius) or
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   375
     (hwRound(Gear^.Hedgehog^.Gear^.Y) - Gear^.Hedgehog^.Gear^.Radius - 16 > hwRound(Gear^.Y) + Gear^.Radius)) then
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   376
    Gear^.CollisionMask:= $FFFF;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   377
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   378
y:= hwRound(Gear^.Y);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   379
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   380
    y:= y - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   381
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   382
    y:= y + Gear^.Radius;
7268
3a61c53346a8 - Fix cake bug introduced in r2ccfc93c6b5e
unc0rr
parents: 6992
diff changeset
   383
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1528
diff changeset
   384
if (y and LAND_HEIGHT_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   385
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   386
    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   387
    i:= x + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   388
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   389
        if (x and LAND_WIDTH_MASK) = 0 then
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   390
            if Land[y, x] and Gear^.CollisionMask <> 0 then
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   391
                begin
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   392
                exit(Land[y, x] and Gear^.CollisionMask)
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   393
                end;
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7270
diff changeset
   394
        inc(x)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   395
    until (x > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   396
    end;
6081
537bbd5c1a62 Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents: 5919
diff changeset
   397
TestCollisionYwithGear:= 0
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   398
end;
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 504
diff changeset
   399
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   400
function TestCollisionXKick(Gear: PGear; Dir: LongInt): Word;
3608
c509bbc779e7 Revert prior attempted optimisation. Gridding the land pays in some situations, but not all. Restricting to an upper bound might help, but overall, seems too fuzzy to be worth it. On one side is increased cost of Add/Delete + extra test on collision check, on the other is skipping the list iteration. Perhaps for large lists.
nemo
parents: 3603
diff changeset
   401
var x, y, mx, my, i: LongInt;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   402
    pixel: Word;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   403
begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   404
pixel:= 0;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   405
x:= hwRound(Gear^.X);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   406
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   407
    x:= x - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   408
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   409
    x:= x + Gear^.Radius;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   410
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1528
diff changeset
   411
if (x and LAND_WIDTH_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   412
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   413
    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   414
    i:= y + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   415
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   416
        if (y and LAND_HEIGHT_MASK) = 0 then
11077
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   417
            begin
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   418
            if Land[y, x] and Gear^.CollisionMask <> 0 then
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   419
                begin
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   420
                if Land[y, x] and Gear^.CollisionMask > 255 then
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   421
                    exit(Land[y, x] and Gear^.CollisionMask)
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   422
                else
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   423
                    pixel:= Land[y, x] and Gear^.CollisionMask;
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   424
                end;
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   425
            end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   426
    inc(y)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   427
    until (y > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   428
    end;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   429
TestCollisionXKick:= pixel;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   430
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   431
if pixel <> 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   432
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   433
    if hwAbs(Gear^.dX) < cHHKick then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   434
        exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   435
    if (Gear^.State and gstHHJumping <> 0)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   436
    and (hwAbs(Gear^.dX) < _0_4) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   437
        exit;
967
8be3938d73c2 Don't let jumping hedgehog to move others
unc0rr
parents: 906
diff changeset
   438
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   439
    mx:= hwRound(Gear^.X);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   440
    my:= hwRound(Gear^.Y);
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   441
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   442
    for i:= 0 to Pred(Count) do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   443
        with cinfos[i] do
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9950
diff changeset
   444
            if  (Gear <> cGear) and
9305
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   445
                ((mx > x) xor (Dir > 0)) and
7756
b89bd0ffb8aa Try to prevent a situation where hogs embedded in other hogs/barrels/cleavers get stuck, by checking for gears overlapping on Y
nemo
parents: 7754
diff changeset
   446
                (
b89bd0ffb8aa Try to prevent a situation where hogs embedded in other hogs/barrels/cleavers get stuck, by checking for gears overlapping on Y
nemo
parents: 7754
diff changeset
   447
                  ((cGear^.Kind in [gtHedgehog, gtMine, gtKnife]) and ((Gear^.State and gstNotKickable) = 0)) or
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   448
                // only apply X kick if the barrel is knocked over
9305
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   449
                  ((cGear^.Kind = gtExplosives) and ((cGear^.State and gsttmpflag) <> 0))
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   450
                ) and
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   451
                (sqr(mx - x) + sqr(my - y) <= sqr(Radius + Gear^.Radius + 2)) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   452
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   453
                    with cGear^ do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   454
                        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   455
                        dX:= Gear^.dX;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   456
                        dY:= Gear^.dY * _0_5;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   457
                        State:= State or gstMoving;
7767
d1ea9b3f543e damn nots
nemo
parents: 7756
diff changeset
   458
                        if Kind = gtKnife then State:= State and (not gstCollision);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   459
                        Active:= true
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   460
                        end;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   461
                    DeleteCI(cGear);
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   462
                    exit(0);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   463
                    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   464
    end
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   465
end;
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   466
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   467
function TestCollisionYKick(Gear: PGear; Dir: LongInt): Word;
7756
b89bd0ffb8aa Try to prevent a situation where hogs embedded in other hogs/barrels/cleavers get stuck, by checking for gears overlapping on Y
nemo
parents: 7754
diff changeset
   468
var x, y, mx, my,  myr, i: LongInt;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   469
    pixel: Word;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   470
begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   471
pixel:= 0;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   472
y:= hwRound(Gear^.Y);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   473
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   474
    y:= y - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   475
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   476
    y:= y + Gear^.Radius;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   477
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1528
diff changeset
   478
if (y and LAND_HEIGHT_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   479
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   480
    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   481
    i:= x + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   482
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   483
    if (x and LAND_WIDTH_MASK) = 0 then
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   484
        if Land[y, x] > 0 then
11077
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   485
            begin
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   486
            if Land[y, x] and Gear^.CollisionMask > 255 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   487
                exit(Land[y, x] and Gear^.CollisionMask)
11077
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   488
            else // if Land[y, x] <> 0 then
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   489
                pixel:= Land[y, x] and Gear^.CollisionMask;
11077
1fb80cd8ba7b small code cleanup
sheepluva
parents: 11046
diff changeset
   490
            end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   491
    inc(x)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   492
    until (x > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   493
    end;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   494
TestCollisionYKick:= pixel;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   495
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   496
if pixel <> 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   497
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   498
    if hwAbs(Gear^.dY) < cHHKick then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   499
        exit;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   500
    if (Gear^.State and gstHHJumping <> 0) and (not Gear^.dY.isNegative) and (Gear^.dY < _0_4) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   501
        exit;
967
8be3938d73c2 Don't let jumping hedgehog to move others
unc0rr
parents: 906
diff changeset
   502
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   503
    mx:= hwRound(Gear^.X);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   504
    my:= hwRound(Gear^.Y);
7756
b89bd0ffb8aa Try to prevent a situation where hogs embedded in other hogs/barrels/cleavers get stuck, by checking for gears overlapping on Y
nemo
parents: 7754
diff changeset
   505
    myr:= my+Gear^.Radius;
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   506
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   507
    for i:= 0 to Pred(Count) do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   508
        with cinfos[i] do
9305
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   509
            if (Gear <> cGear) and
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   510
               ((myr > y) xor (Dir > 0)) and
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   511
               (Gear^.State and gstNotKickable = 0) and
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9950
diff changeset
   512
               (cGear^.Kind in [gtHedgehog, gtMine, gtKnife, gtExplosives]) and
9305
8e5140875ab5 bug #668 + reorder conditions for kick slightly, to call the math last
nemo
parents: 9291
diff changeset
   513
               (sqr(mx - x) + sqr(my - y) <= sqr(Radius + Gear^.Radius + 2)) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   514
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   515
                    with cGear^ do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   516
                        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   517
                        if (Kind <> gtExplosives) or ((State and gsttmpflag) <> 0) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   518
                            dX:= Gear^.dX * _0_5;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   519
                        dY:= Gear^.dY;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   520
                        State:= State or gstMoving;
7767
d1ea9b3f543e damn nots
nemo
parents: 7756
diff changeset
   521
                        if Kind = gtKnife then State:= State and (not gstCollision);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   522
                        Active:= true
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   523
                        end;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   524
                    DeleteCI(cGear);
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   525
                    exit(0)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   526
                    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   527
    end
513
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   528
end;
69e06d710d46 Moving hedgehog could get another hedgehog moving forward
unc0rr
parents: 511
diff changeset
   529
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   530
function TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt): Word; inline;
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   531
begin
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   532
    TestCollisionXwithXYShift:= TestCollisionXwithXYShift(Gear, ShiftX, ShiftY, Dir, true);
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   533
end;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   534
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   535
function TestCollisionXwithXYShift(Gear: PGear; ShiftX: hwFloat; ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   536
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   537
Gear^.X:= Gear^.X + ShiftX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   538
Gear^.Y:= Gear^.Y + int2hwFloat(ShiftY);
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9950
diff changeset
   539
if withGear then
5750
6bbf7aee2cdf Reenable a bunch of old portal play stuff, like dropping grenade into portal on hog, jumping through portal w/ hog on other end, collecting crate w/ portal etc. Also add cooldown to cake/portal interaction. It may still not do what you expect, but it probably shouldn't spin in place.
nemo
parents: 5572
diff changeset
   540
    TestCollisionXwithXYShift:= TestCollisionXwithGear(Gear, Dir)
6bbf7aee2cdf Reenable a bunch of old portal play stuff, like dropping grenade into portal on hog, jumping through portal w/ hog on other end, collecting crate w/ portal etc. Also add cooldown to cake/portal interaction. It may still not do what you expect, but it probably shouldn't spin in place.
nemo
parents: 5572
diff changeset
   541
else TestCollisionXwithXYShift:= TestCollisionX(Gear, Dir);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   542
Gear^.X:= Gear^.X - ShiftX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   543
Gear^.Y:= Gear^.Y - int2hwFloat(ShiftY)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   544
end;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   545
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   546
function TestCollisionX(Gear: PGear; Dir: LongInt): Word;
4798
84fb1ff0a1c0 fix sticky rope issue
sheepluva
parents: 4705
diff changeset
   547
var x, y, i: LongInt;
84fb1ff0a1c0 fix sticky rope issue
sheepluva
parents: 4705
diff changeset
   548
begin
84fb1ff0a1c0 fix sticky rope issue
sheepluva
parents: 4705
diff changeset
   549
x:= hwRound(Gear^.X);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   550
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   551
    x:= x - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   552
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   553
    x:= x + Gear^.Radius;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   554
4798
84fb1ff0a1c0 fix sticky rope issue
sheepluva
parents: 4705
diff changeset
   555
if (x and LAND_WIDTH_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   556
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   557
    y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   558
    i:= y + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   559
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   560
        if (y and LAND_HEIGHT_MASK) = 0 then
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   561
            if Land[y, x] and Gear^.CollisionMask > 255 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   562
                exit(Land[y, x] and Gear^.CollisionMask);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   563
    inc(y)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   564
    until (y > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   565
    end;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   566
TestCollisionX:= 0
4798
84fb1ff0a1c0 fix sticky rope issue
sheepluva
parents: 4705
diff changeset
   567
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   568
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   569
function TestCollisionY(Gear: PGear; Dir: LongInt): Word;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 351
diff changeset
   570
var x, y, i: LongInt;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 64
diff changeset
   571
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 183
diff changeset
   572
y:= hwRound(Gear^.Y);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   573
if Dir < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   574
    y:= y - Gear^.Radius
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   575
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   576
    y:= y + Gear^.Radius;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   577
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1528
diff changeset
   578
if (y and LAND_HEIGHT_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   579
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   580
    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   581
    i:= x + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   582
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   583
        if (x and LAND_WIDTH_MASK) = 0 then
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   584
            if Land[y, x] and Gear^.CollisionMask > 255 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9708
diff changeset
   585
                exit(Land[y, x] and Gear^.CollisionMask);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   586
    inc(x)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   587
    until (x > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   588
    end;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   589
TestCollisionY:= 0
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 64
diff changeset
   590
end;
cbb93eb90304 Collision-related stuff
unc0rr
parents: 64
diff changeset
   591
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   592
function TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt): Word; inline;
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   593
begin
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   594
    TestCollisionYwithXYShift:= TestCollisionYwithXYShift(Gear, ShiftX, ShiftY, Dir, true);
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   595
end;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6700
diff changeset
   596
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   597
function TestCollisionYwithXYShift(Gear: PGear; ShiftX, ShiftY: LongInt; Dir: LongInt; withGear: boolean): Word;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   598
begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   599
Gear^.X:= Gear^.X + int2hwFloat(ShiftX);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   600
Gear^.Y:= Gear^.Y + int2hwFloat(ShiftY);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   601
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   602
if withGear then
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9305
diff changeset
   603
  TestCollisionYwithXYShift:= TestCollisionYwithGear(Gear, Dir)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   604
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   605
  TestCollisionYwithXYShift:= TestCollisionY(Gear, Dir);
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9950
diff changeset
   606
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   607
Gear^.X:= Gear^.X - int2hwFloat(ShiftX);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 393
diff changeset
   608
Gear^.Y:= Gear^.Y - int2hwFloat(ShiftY)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   609
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   610
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10635
diff changeset
   611
function TestRectangleForObstacle(x1, y1, x2, y2: LongInt; landOnly: boolean): boolean;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   612
var x, y: LongInt;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   613
    TestWord: LongWord;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   614
begin
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10635
diff changeset
   615
TestRectangleForObstacle:= true;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   616
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   617
if landOnly then
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   618
    TestWord:= 255
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   619
else
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   620
    TestWord:= 0;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   621
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   622
if x1 > x2 then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   623
begin
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   624
    x  := x1;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   625
    x1 := x2;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   626
    x2 := x;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   627
end;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   628
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   629
if y1 > y2 then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   630
begin
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   631
    y  := y1;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   632
    y1 := y2;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   633
    y2 := y;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   634
end;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   635
5919
f737843dd331 TestRectForObstacle: areas outside map borders are not passable
sheepluva
parents: 5896
diff changeset
   636
if (hasBorder and ((y1 < 0) or (x1 < 0) or (x2 > LAND_WIDTH))) then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   637
    exit;
5919
f737843dd331 TestRectForObstacle: areas outside map borders are not passable
sheepluva
parents: 5896
diff changeset
   638
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   639
for y := y1 to y2 do
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   640
    for x := x1 to x2 do
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   641
        if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0) and (Land[y, x] > TestWord) then
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   642
            exit;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   643
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10635
diff changeset
   644
TestRectangleForObstacle:= false
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   645
end;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   646
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5834
diff changeset
   647
function CalcSlopeTangent(Gear: PGear; collisionX, collisionY: LongInt; var outDeltaX, outDeltaY: LongInt; TestWord: LongWord): boolean;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   648
var ldx, ldy, rdx, rdy: LongInt;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   649
    i, j, k, mx, my, li, ri, jfr, jto, tmpo : ShortInt;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   650
    tmpx, tmpy: LongWord;
3569
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   651
    dx, dy, s: hwFloat;
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6279
diff changeset
   652
    offset: array[0..7,0..1] of ShortInt;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   653
    isColl: Boolean;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   654
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   655
begin
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   656
    CalcSlopeTangent:= false;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   657
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   658
    dx:= Gear^.dX;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   659
    dy:= Gear^.dY;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   660
3569
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   661
    // we start searching from the direction the gear came from
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   662
    if (dx.QWordValue > _0_995.QWordValue )
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   663
    or (dy.QWordValue > _0_995.QWordValue ) then
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   664
        begin // scale
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   665
        s := _0_995 / Distance(dx,dy);
3569
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   666
        dx := s * dx;
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   667
        dy := s * dy;
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   668
        end;
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   669
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   670
    mx:= hwRound(Gear^.X-dx) - hwRound(Gear^.X);
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   671
    my:= hwRound(Gear^.Y-dy) - hwRound(Gear^.Y);
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   672
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   673
    li:= -1;
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   674
    ri:= -1;
3569
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   675
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   676
    // go around collision pixel, checking for first/last collisions
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   677
    // this will determinate what angles will be tried to crawl along
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   678
    for i:= 0 to 7 do
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   679
        begin
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   680
        offset[i,0]:= mx;
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   681
        offset[i,1]:= my;
3569
27b0ec683572 portal / slope detection:
sheepluva
parents: 3474
diff changeset
   682
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   683
        // multiplicator k tries to skip small pixels/gaps when possible
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   684
        for k:= 4 downto 1 do
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   685
            begin
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   686
            tmpx:= collisionX + k * mx;
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   687
            tmpy:= collisionY + k * my;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   688
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   689
            if (((tmpy) and LAND_HEIGHT_MASK) = 0) and (((tmpx) and LAND_WIDTH_MASK) = 0) then
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   690
                if (Land[tmpy,tmpx] > TestWord) then
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   691
                    begin
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   692
                    // remember the index belonging to the first and last collision (if in 1st half)
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   693
                    if (i <> 0) then
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   694
                        begin
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   695
                        if (ri = -1) then
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   696
                            ri:= i
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   697
                        else
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   698
                            li:= i;
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   699
                        end;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   700
                    end;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   701
            end;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   702
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   703
        if i = 7 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   704
            break;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   705
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   706
        // prepare offset for next check (clockwise)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   707
        if (mx = -1) and (my <> -1) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   708
            my:= my - 1
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   709
        else if (my = -1) and (mx <> 1) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   710
            mx:= mx + 1
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   711
        else if (mx = 1) and (my <> 1) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   712
            my:= my + 1
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   713
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   714
            mx:= mx - 1;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   715
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   716
        end;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   717
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   718
    ldx:= collisionX;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   719
    ldy:= collisionY;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   720
    rdx:= collisionX;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   721
    rdy:= collisionY;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   722
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   723
    // edge-crawl
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   724
    for i:= 0 to 8 do
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   725
        begin
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   726
        // using mx,my as temporary value buffer here
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3609
diff changeset
   727
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   728
        jfr:= 8+li+1;
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   729
        jto:= 8+li-1;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   730
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   731
        isColl:= false;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   732
        for j:= jfr downto jto do
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   733
            begin
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   734
            tmpo:= j mod 8;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   735
            // multiplicator k tries to skip small pixels/gaps when possible
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   736
            for k:= 3 downto 1 do
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   737
                begin
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   738
                tmpx:= ldx + k * offset[tmpo,0];
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   739
                tmpy:= ldy + k * offset[tmpo,1];
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   740
                if (((tmpy) and LAND_HEIGHT_MASK) = 0) and (((tmpx) and LAND_WIDTH_MASK)  = 0)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   741
                and (Land[tmpy,tmpx] > TestWord) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   742
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   743
                    ldx:= tmpx;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   744
                    ldy:= tmpy;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   745
                    isColl:= true;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   746
                    break;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   747
                    end;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   748
                end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   749
            if isColl then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   750
                break;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   751
            end;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   752
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   753
        jfr:= 8+ri-1;
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   754
        jto:= 8+ri+1;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   755
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   756
        isColl:= false;
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   757
        for j:= jfr to jto do
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   758
            begin
3408
56e636b83cb4 tweak land angle detection/portal a bit
sheepluva
parents: 3407
diff changeset
   759
            tmpo:= j mod 8;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   760
            for k:= 3 downto 1 do
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   761
                begin
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   762
                tmpx:= rdx + k * offset[tmpo,0];
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   763
                tmpy:= rdy + k * offset[tmpo,1];
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   764
                if (((tmpy) and LAND_HEIGHT_MASK) = 0) and (((tmpx) and LAND_WIDTH_MASK)  = 0)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   765
                and (Land[tmpy,tmpx] > TestWord) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   766
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   767
                    rdx:= tmpx;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   768
                    rdy:= tmpy;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   769
                    isColl:= true;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   770
                    break;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   771
                    end;
6123
0cb751caf0ac make slope calcs skip small gaps
sheepluva
parents: 6081
diff changeset
   772
                end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   773
            if isColl then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   774
                break;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   775
            end;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   776
        end;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   777
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   778
    ldx:= rdx - ldx;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   779
    ldy:= rdy - ldy;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   780
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   781
    if ((ldx = 0) and (ldy = 0)) then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   782
        exit;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   783
3414
b2f3bb44777e some portal changes, warning: no loop prevention yet, note: entry angle not preserved yet
sheepluva
parents: 3411
diff changeset
   784
outDeltaX:= ldx;
b2f3bb44777e some portal changes, warning: no loop prevention yet, note: entry angle not preserved yet
sheepluva
parents: 3411
diff changeset
   785
outDeltaY:= ldy;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   786
CalcSlopeTangent:= true;
3401
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   787
end;
d5d31d16eccc add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet
sheepluva
parents: 3236
diff changeset
   788
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   789
function CalcSlopeNearGear(Gear: PGear; dirX, dirY: LongInt): hwFloat;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   790
var dx, dy: hwFloat;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   791
    collX, collY, i, y, x, gx, gy, sdx, sdy: LongInt;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   792
    isColl, bSucc: Boolean;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   793
begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   794
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9950
diff changeset
   795
if dirY <> 0 then
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   796
    begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   797
    y:= hwRound(Gear^.Y) + Gear^.Radius * dirY;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   798
    gx:= hwRound(Gear^.X);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   799
    collX := gx;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   800
    isColl:= false;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   801
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   802
    if (y and LAND_HEIGHT_MASK) = 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   803
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   804
        x:= hwRound(Gear^.X) - Gear^.Radius + 1;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   805
        i:= x + Gear^.Radius * 2 - 2;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   806
        repeat
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   807
        if (x and LAND_WIDTH_MASK) = 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   808
            if Land[y, x] <> 0 then
7767
d1ea9b3f543e damn nots
nemo
parents: 7756
diff changeset
   809
                if (not isColl) or (abs(x-gx) < abs(collX-gx)) then
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   810
                    begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   811
                    isColl:= true;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   812
                    collX := x;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   813
                    end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   814
        inc(x)
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   815
        until (x > i);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   816
        end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   817
    end
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   818
else
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   819
    begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   820
    x:= hwRound(Gear^.X) + Gear^.Radius * dirX;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   821
    gy:= hwRound(Gear^.Y);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   822
    collY := gy;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   823
    isColl:= false;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   824
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   825
    if (x and LAND_WIDTH_MASK) = 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   826
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   827
        y:= hwRound(Gear^.Y) - Gear^.Radius + 1;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   828
        i:= y + Gear^.Radius * 2 - 2;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   829
        repeat
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   830
        if (y and LAND_HEIGHT_MASK) = 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   831
            if Land[y, x] <> 0 then
7767
d1ea9b3f543e damn nots
nemo
parents: 7756
diff changeset
   832
                if (not isColl) or (abs(y-gy) < abs(collY-gy)) then
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   833
                    begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   834
                    isColl:= true;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   835
                    collY := y;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   836
                    end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   837
        inc(y)
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   838
        until (y > i);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   839
        end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   840
    end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   841
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   842
if isColl then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   843
    begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   844
    // save original dx/dy
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   845
    dx := Gear^.dX;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   846
    dy := Gear^.dY;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   847
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   848
    if dirY <> 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   849
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   850
        Gear^.dX.QWordValue:= 0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   851
        Gear^.dX.isNegative:= (collX >= gx);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   852
        Gear^.dY:= _1*dirY
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   853
        end
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   854
    else
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   855
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   856
        Gear^.dY.QWordValue:= 0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   857
        Gear^.dY.isNegative:= (collY >= gy);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   858
        Gear^.dX:= _1*dirX
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   859
        end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   860
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   861
    sdx:= 0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   862
    sdy:= 0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   863
    if dirY <> 0 then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   864
         bSucc := CalcSlopeTangent(Gear, collX, y, sdx, sdy, 0)
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   865
    else bSucc := CalcSlopeTangent(Gear, x, collY, sdx, sdy, 0);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   866
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   867
    // restore original dx/dy
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   868
    Gear^.dX := dx;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   869
    Gear^.dY := dy;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   870
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   871
    if bSucc and ((sdx <> 0) or (sdy <> 0)) then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   872
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   873
        dx := int2hwFloat(sdy) / (abs(sdx) + abs(sdy));
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   874
        dx.isNegative := (sdx * sdy) < 0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   875
        exit (dx);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   876
        end
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   877
    end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   878
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   879
CalcSlopeNearGear := _0;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   880
end;
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7489
diff changeset
   881
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   882
function CalcSlopeBelowGear(Gear: PGear): hwFloat;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   883
var dx, dy: hwFloat;
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   884
    collX, i, y, x, gx, sdx, sdy: LongInt;
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6279
diff changeset
   885
    isColl, bSucc: Boolean;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   886
begin
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   887
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   888
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   889
y:= hwRound(Gear^.Y) + Gear^.Radius;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   890
gx:= hwRound(Gear^.X);
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   891
collX := gx;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   892
isColl:= false;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   893
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   894
if (y and LAND_HEIGHT_MASK) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   895
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   896
    x:= hwRound(Gear^.X) - Gear^.Radius + 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   897
    i:= x + Gear^.Radius * 2 - 2;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   898
    repeat
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   899
    if (x and LAND_WIDTH_MASK) = 0 then
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   900
        if Land[y, x] > 255 then
7767
d1ea9b3f543e damn nots
nemo
parents: 7756
diff changeset
   901
            if (not isColl) or (abs(x-gx) < abs(collX-gx)) then
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   902
                begin
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   903
                isColl:= true;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   904
                collX := x;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   905
                end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   906
    inc(x)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   907
    until (x > i);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6543
diff changeset
   908
    end;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   909
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   910
if isColl then
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   911
    begin
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   912
    // save original dx/dy
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   913
    dx := Gear^.dX;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   914
    dy := Gear^.dY;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   915
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   916
    Gear^.dX.QWordValue:= 0;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   917
    Gear^.dX.isNegative:= (collX >= gx);
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   918
    Gear^.dY:= _1;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   919
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   920
    sdx:= 0;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   921
    sdy:= 0;
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6279
diff changeset
   922
    bSucc := CalcSlopeTangent(Gear, collX, y, sdx, sdy, 255);
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   923
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   924
    // restore original dx/dy
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   925
    Gear^.dX := dx;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   926
    Gear^.dY := dy;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   927
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6279
diff changeset
   928
    if bSucc and (sdx <> 0) and (sdy <> 0) then
6279
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   929
    begin
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   930
        dx := int2hwFloat(sdy) / (abs(sdx) + abs(sdy));
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   931
        dx.isNegative := (sdx * sdy) < 0;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   932
        exit (dx);
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   933
    end;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   934
    end;
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   935
7f724835ea57 I hope this helps...
sheepluva
parents: 6124
diff changeset
   936
CalcSlopeBelowGear := _0;
6124
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   937
end;
bee90df26109 something for nemo to play around with
sheepluva
parents: 6123
diff changeset
   938
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   939
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   940
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   941
    Count:= 0;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   942
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   943
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   944
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   945
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   946
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   947
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2630
diff changeset
   948
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   949
end.