2020-05-08 22:34:48 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
|
|
|
Copyright (C) 2017-2019 Nuke.YKT
|
2020-05-13 14:19:39 +00:00
|
|
|
Copyright (C) 2020 - Christoph Oelckers
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Original Source: 1996 - Todd Replogle
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "ns.h"
|
|
|
|
#include "global.h"
|
2020-07-03 21:56:14 +00:00
|
|
|
#include "names_r.h"
|
2020-10-21 17:14:41 +00:00
|
|
|
#include "dukeactor.h"
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
2020-10-22 20:31:10 +00:00
|
|
|
void ballreturn(DDukeActor *ball)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
DukeStatIterator it(STAT_BOWLING);
|
|
|
|
while (auto act = it.Next())
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
if (act->s.picnum == RRTILE281 && ball->s.sectnum == act->s.sectnum)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
DukeStatIterator it2(STAT_BOWLING);
|
|
|
|
while (auto act2 = it2.Next())
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
if (act2->s.picnum == RRTILE282 && act->s.hitag == act2->s.hitag)
|
|
|
|
spawn(act2, BOWLINGBALLSPRITE);
|
|
|
|
if (act2->s.picnum == RRTILE280 && act->s.hitag == act2->s.hitag && act2->s.lotag == 0)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
act2->s.lotag = 100;
|
|
|
|
act2->s.extra++;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
short pinsectorresetdown(short sect)
|
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
int j = getanimationgoal(anim_ceilingz, sect);
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2020-05-12 11:43:24 +00:00
|
|
|
if (j == -1)
|
|
|
|
{
|
|
|
|
j = sector[sect].floorz;
|
2020-10-22 20:31:10 +00:00
|
|
|
setanimation(sect, anim_ceilingz, sect, j, 64);
|
2020-05-12 11:43:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
short pinsectorresetup(short sect)
|
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
int j = getanimationgoal(anim_ceilingz, sect);
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2020-05-12 11:43:24 +00:00
|
|
|
if (j == -1)
|
|
|
|
{
|
2020-07-20 18:40:29 +00:00
|
|
|
j = sector[nextsectorneighborz(sect, sector[sect].ceilingz, -1, -1)].ceilingz;
|
2020-10-22 20:31:10 +00:00
|
|
|
setanimation(sect, anim_ceilingz, sect, j, 64);
|
2020-05-12 11:43:24 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
short checkpins(short sect)
|
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
short i, pin;
|
|
|
|
int x, y;
|
|
|
|
short pins[10];
|
2020-10-14 19:16:54 +00:00
|
|
|
short tag;
|
2020-10-22 20:31:10 +00:00
|
|
|
|
2020-05-12 11:43:24 +00:00
|
|
|
pin = 0;
|
2020-10-22 20:31:10 +00:00
|
|
|
for (i = 0; i < 10; i++) pins[i] = 0;
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2020-10-22 20:31:10 +00:00
|
|
|
DukeSectIterator it(sect);
|
|
|
|
while (auto a2 = it.Next())
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
if (a2->s.picnum == RRTILE3440)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
pin++;
|
2020-10-22 20:31:10 +00:00
|
|
|
pins[a2->s.lotag] = 1;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
2020-10-22 20:31:10 +00:00
|
|
|
if (a2->s.picnum == RRTILE280)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
tag = a2->s.hitag;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2020-05-12 11:43:24 +00:00
|
|
|
if (tag)
|
|
|
|
{
|
|
|
|
tag += 2024;
|
2020-10-22 20:31:10 +00:00
|
|
|
tileCopySection(2024, 0, 0, 128, 64, tag, 0, 0);
|
|
|
|
for (i = 0; i < 10; i++)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
if (pins[i] == 1)
|
|
|
|
{
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
x = 64;
|
|
|
|
y = 48;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
x = 56;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
x = 72;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
x = 48;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
x = 64;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
x = 80;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
x = 40;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
x = 56;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
x = 72;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
x = 88;
|
|
|
|
y = 24;
|
|
|
|
break;
|
2020-10-22 20:31:10 +00:00
|
|
|
}
|
|
|
|
tileCopySection(2023, 0, 0, 8, 8, tag, x - 4, y - 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pin;
|
|
|
|
}
|
|
|
|
|
|
|
|
void resetpins(short sect)
|
|
|
|
{
|
|
|
|
int i, tag;
|
|
|
|
int x, y;
|
|
|
|
DukeSectIterator it(sect);
|
|
|
|
while (auto a2 = it.Next())
|
|
|
|
{
|
|
|
|
if (a2->s.picnum == RRTILE3440)
|
|
|
|
deletesprite(a2);
|
|
|
|
}
|
|
|
|
it.Reset(sect);
|
|
|
|
while (auto a2 = it.Next())
|
|
|
|
{
|
|
|
|
if (a2->s.picnum == 283)
|
|
|
|
{
|
|
|
|
auto spawned = spawn(a2, RRTILE3440);
|
|
|
|
spawned->s.lotag = a2->s.lotag;
|
|
|
|
if (spawned->s.lotag == 3 || spawned->s.lotag == 5)
|
|
|
|
{
|
|
|
|
spawned->s.clipdist = (1 + (krand() % 1)) * 16 + 32;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spawned->s.clipdist = (1 + (krand() % 1)) * 16 + 32;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
2020-10-22 20:31:10 +00:00
|
|
|
spawned->s.ang -= ((krand() & 32) - (krand() & 64)) & 2047;
|
|
|
|
}
|
|
|
|
if (a2->s.picnum == 280)
|
|
|
|
tag = a2->s.hitag;
|
|
|
|
}
|
|
|
|
if (tag)
|
|
|
|
{
|
|
|
|
tag += LANEPICS + 1;
|
|
|
|
tileCopySection(LANEPICS + 1, 0, 0, 128, 64, tag, 0, 0);
|
|
|
|
for (i = 0; i < 10; i++)
|
|
|
|
{
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
x = 64;
|
|
|
|
y = 48;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
x = 56;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
x = 72;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
x = 48;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
x = 64;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
x = 80;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
x = 40;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
x = 56;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
x = 72;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
x = 88;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tileCopySection(LANEPICS, 0, 0, 8, 8, tag, x - 4, y - 10);
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void resetlanepics(void)
|
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
int x, y;
|
|
|
|
short i;
|
|
|
|
short tag, pic;
|
2020-10-22 20:31:10 +00:00
|
|
|
for (tag = 0; tag < 4; tag++)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
pic = tag + 1;
|
|
|
|
if (pic == 0) continue;
|
2020-10-22 20:31:10 +00:00
|
|
|
pic += LANEPICS + 1;
|
|
|
|
tileCopySection(LANEPICS + 1, 0, 0, 128, 64, pic, 0, 0);
|
|
|
|
for (i = 0; i < 10; i++)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
switch (i)
|
|
|
|
{
|
2020-10-22 20:31:10 +00:00
|
|
|
case 0:
|
|
|
|
x = 64;
|
|
|
|
y = 48;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
x = 56;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
x = 72;
|
|
|
|
y = 40;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
x = 48;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
x = 64;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
x = 80;
|
|
|
|
y = 32;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
x = 40;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
x = 56;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
x = 72;
|
|
|
|
y = 24;
|
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
x = 88;
|
|
|
|
y = 24;
|
|
|
|
break;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
2020-10-22 20:31:10 +00:00
|
|
|
tileCopySection(LANEPICS, 0, 0, 8, 8, pic, x - 4, y - 10);
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
END_DUKE_NS
|
|
|
|
|