2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
|
|
This file is part of PCExhumed.
|
|
|
|
PCExhumed is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-11-22 23:11:37 +00:00
|
|
|
#include "ns.h"
|
2019-08-26 03:59:14 +00:00
|
|
|
#include "engine.h"
|
2021-04-11 07:59:55 +00:00
|
|
|
#include "precache.h"
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-13 20:06:48 +00:00
|
|
|
//#include <io.h>
|
|
|
|
//#include <fcntl.h>
|
2019-11-23 23:04:15 +00:00
|
|
|
#include "gamecvars.h"
|
2020-08-25 23:41:23 +00:00
|
|
|
#include "gamecontrol.h"
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-08-31 07:47:15 +00:00
|
|
|
// static int globhiz, globloz, globhihit, globlohit;
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
void resettiming()
|
|
|
|
{
|
2020-08-25 22:49:25 +00:00
|
|
|
lastTic = -1;
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void precache()
|
|
|
|
{
|
2021-04-28 20:23:48 +00:00
|
|
|
if (!r_precache) return;
|
|
|
|
|
2019-08-31 07:47:15 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < numsectors; i++)
|
|
|
|
{
|
2021-11-07 22:52:45 +00:00
|
|
|
auto sectp = §or[i];
|
|
|
|
int j = sectp->ceilingpicnum;
|
|
|
|
markTileForPrecache(j, sectp->ceilingpal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
2021-11-07 22:52:45 +00:00
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sectp->ceilingpal);
|
2021-06-02 19:31:38 +00:00
|
|
|
|
2021-11-07 22:52:45 +00:00
|
|
|
j = sectp->floorpicnum;
|
|
|
|
markTileForPrecache(j, sectp->floorpal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
2021-11-07 22:52:45 +00:00
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sectp->floorpal);
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < numwalls; i++)
|
|
|
|
{
|
2021-11-07 22:52:45 +00:00
|
|
|
auto wallp = &wall[i];
|
|
|
|
int j = wallp->picnum;
|
|
|
|
markTileForPrecache(j, wallp->pal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
2021-11-07 22:52:45 +00:00
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, wallp->pal);
|
|
|
|
|
2021-11-22 16:54:32 +00:00
|
|
|
if (wallp->twoSided())
|
2021-11-07 22:52:45 +00:00
|
|
|
{
|
|
|
|
int j = wallp->overpicnum;
|
|
|
|
markTileForPrecache(j, wallp->pal);
|
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, wallp->pal);
|
|
|
|
|
|
|
|
}
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
2021-10-19 18:03:11 +00:00
|
|
|
ExhumedSpriteIterator it;
|
|
|
|
while (auto ac = it.Next())
|
2019-08-31 07:47:15 +00:00
|
|
|
{
|
2021-10-19 18:03:11 +00:00
|
|
|
auto sp = &ac->s();
|
|
|
|
int j = sp->picnum;
|
|
|
|
markTileForPrecache(j, sp->pal);
|
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sp->pal);
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
2021-04-11 08:54:10 +00:00
|
|
|
precacheMarkedTiles();
|
2019-08-26 03:59:14 +00:00
|
|
|
}
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|