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-06-02 19:31:38 +00:00
|
|
|
int j = sector[i].ceilingpicnum;
|
2021-04-11 08:54:10 +00:00
|
|
|
markTileForPrecache(j, sector[i].ceilingpal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sector[i].ceilingpal);
|
|
|
|
|
2019-08-31 07:47:15 +00:00
|
|
|
j = sector[i].floorpicnum;
|
2021-04-11 08:54:10 +00:00
|
|
|
markTileForPrecache(j, sector[i].floorpal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sector[i].floorpal);
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < numwalls; i++)
|
|
|
|
{
|
2021-06-02 19:31:38 +00:00
|
|
|
int j = wall[i].picnum;
|
2021-04-11 08:54:10 +00:00
|
|
|
markTileForPrecache(j, wall[i].pal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, wall[i].pal);
|
2019-08-31 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < kMaxSprites; i++)
|
|
|
|
{
|
|
|
|
if (sprite[i].statnum < kMaxStatus)
|
|
|
|
{
|
2021-06-02 19:31:38 +00:00
|
|
|
int j = sprite[i].picnum;
|
2021-04-11 08:54:10 +00:00
|
|
|
markTileForPrecache(j, sprite[i].pal);
|
2021-06-02 19:31:38 +00:00
|
|
|
if (picanm[j].sf & PICANM_ANIMTYPE_MASK)
|
|
|
|
for (int k = 1; k <= picanm[j].num; k++) markTileForPrecache(j + k, sprite[i].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
|