raze/source/games/duke/src/render.cpp

415 lines
11 KiB
C++
Raw Normal View History

2020-07-04 21:40:54 +00:00
//-------------------------------------------------------------------------
/*
Copyright (C) 1996, 2003 - 3D Realms Entertainment
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
Modifications for JonoF's port by Jonathon Fowler (jf@jonof.id.au)
*/
//-------------------------------------------------------------------------
#include "ns.h"
#include "duke3d.h"
2020-07-05 14:49:00 +00:00
#include "build.h"
#include "v_video.h"
#include "prediction.h"
#include "automap.h"
2020-11-04 06:01:25 +00:00
#include "dukeactor.h"
#include "interpolate.h"
#include "render.h"
2020-07-04 21:40:54 +00:00
// temporary hack to pass along RRRA's global fog. Needs to be done better later.
extern PalEntry GlobalMapFog;
extern float GlobalFogDensity;
2020-07-04 21:40:54 +00:00
BEGIN_DUKE_NS
//---------------------------------------------------------------------------
//
// Floor Over Floor
// If standing in sector with SE42
// then draw viewing to SE41 and raise all =hi SE43 cielings.
// If standing in sector with SE43
// then draw viewing to SE40 and lower all =hi SE42 floors.
// If standing in sector with SE44
// then draw viewing to SE40.
// If standing in sector with SE45
// then draw viewing to SE41.
//
//---------------------------------------------------------------------------
void renderView(DDukeActor* playersprite, sectortype* sect, int x, int y, int z, DAngle a, fixedhoriz h, DAngle rotscrnang, double smoothratio, bool sceneonly, float fov)
2020-07-04 21:40:54 +00:00
{
2022-08-03 13:50:27 +00:00
if (!sceneonly) drawweapon(smoothratio);
render_drawrooms(playersprite, { x, y, z }, sectnum(sect), a, h, rotscrnang, smoothratio, fov);
2020-07-05 14:49:00 +00:00
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void GameInterface::UpdateCameras(double smoothratio)
2020-07-05 14:49:00 +00:00
{
2020-07-06 20:23:18 +00:00
const int VIEWSCREEN_ACTIVE_DISTANCE = 8192;
2020-11-04 18:25:49 +00:00
if (camsprite == nullptr)
2020-07-05 14:49:00 +00:00
return;
auto p = &ps[screenpeek];
2020-11-04 18:25:49 +00:00
if (p->newOwner != nullptr) camsprite->SetOwner(p->newOwner);
2020-07-05 14:49:00 +00:00
2020-11-04 18:25:49 +00:00
if (camsprite->GetOwner() && dist(p->GetActor(), camsprite) < VIEWSCREEN_ACTIVE_DISTANCE)
2020-07-05 14:49:00 +00:00
{
2021-12-21 20:35:07 +00:00
auto tex = tileGetTexture(camsprite->spr.picnum);
2021-05-12 15:57:36 +00:00
TileFiles.MakeCanvas(TILE_VIEWSCR, (int)tex->GetDisplayWidth(), (int)tex->GetDisplayHeight());
2020-07-05 14:49:00 +00:00
auto canvas = tileGetCanvas(TILE_VIEWSCR);
2020-07-05 14:49:00 +00:00
if (!canvas) return;
screen->RenderTextureView(canvas, [=](IntRect& rect)
{
auto camera = camsprite->GetOwner();
2020-07-05 14:49:00 +00:00
display_mirror = 1; // should really be 'display external view'.
2022-08-03 13:50:27 +00:00
auto cstat = camera->spr.cstat;
camera->spr.cstat = CSTAT_SPRITE_INVISIBLE;
render_camtex(camera, camera->int_pos(), camera->sector(), camera->interpolatedangle(smoothratio * (1. / MaxSmoothRatio)), buildhoriz(camera->spr.shade), nullAngle, tex, rect, smoothratio);
2022-08-03 13:50:27 +00:00
camera->spr.cstat = cstat;
2020-07-05 14:49:00 +00:00
display_mirror = 0;
});
}
}
void GameInterface::EnterPortal(DCoreActor* viewer, int type)
2021-03-29 19:48:23 +00:00
{
if (type == PORTAL_WALL_MIRROR) display_mirror++;
}
void GameInterface::LeavePortal(DCoreActor* viewer, int type)
2021-03-29 19:48:23 +00:00
{
if (type == PORTAL_WALL_MIRROR) display_mirror--;
}
2021-11-18 18:33:32 +00:00
bool GameInterface::GetGeoEffect(GeoEffect* eff, sectortype* viewsector)
{
2021-11-18 18:33:32 +00:00
if (isRR() && viewsector->lotag == 848)
{
eff->geocnt = geocnt;
eff->geosector = geosector;
eff->geosectorwarp = geosectorwarp;
eff->geosectorwarp2 = geosectorwarp2;
eff->geox = geox;
eff->geoy = geoy;
eff->geox2 = geox2;
eff->geoy2 = geoy2;
return true;
}
return false;
}
2020-07-05 14:49:00 +00:00
//---------------------------------------------------------------------------
//
// RRRA's drug distortion effect
2020-07-05 14:49:00 +00:00
//
//---------------------------------------------------------------------------
int DrugTimer;
2020-07-05 14:49:00 +00:00
static int getdrugmode(player_struct *p, int oyrepeat)
2020-07-05 14:49:00 +00:00
{
int now = I_GetBuildTime() >> 1; // this function works on a 60 fps setup.
if (playrunning() && p->DrugMode > 0)
2020-07-05 14:49:00 +00:00
{
if (now - DrugTimer > 4 || now - DrugTimer < 0) DrugTimer = now - 1;
while (DrugTimer < now)
2020-07-05 14:49:00 +00:00
{
DrugTimer++;
2020-07-05 14:49:00 +00:00
int var_8c;
if (p->drug_stat[0] == 0)
{
p->drug_stat[1]++;
var_8c = oyrepeat + p->drug_stat[1] * 5000;
if (oyrepeat * 3 < var_8c)
{
p->drug_aspect = oyrepeat * 3;
p->drug_stat[0] = 2;
}
else
{
p->drug_aspect = var_8c;
}
}
else if (p->drug_stat[0] == 3)
{
p->drug_stat[1]--;
var_8c = oyrepeat + p->drug_stat[1] * 5000;
if (var_8c < oyrepeat)
{
p->DrugMode = 0;
p->drug_stat[0] = 0;
p->drug_stat[2] = 0;
p->drug_stat[1] = 0;
p->drug_aspect = oyrepeat;
2020-07-05 14:49:00 +00:00
}
else
{
p->drug_aspect = var_8c;
}
}
else if (p->drug_stat[0] == 2)
{
if (p->drug_stat[2] > 30)
{
p->drug_stat[0] = 1;
}
else
{
p->drug_stat[2]++;
p->drug_aspect = oyrepeat * 3 + p->drug_stat[2] * 500;
}
}
else
{
if (p->drug_stat[2] < 1)
{
p->drug_stat[0] = 2;
p->DrugMode--;
if (p->DrugMode == 1)
p->drug_stat[0] = 3;
}
else
{
p->drug_stat[2]--;
p->drug_aspect = oyrepeat * 3 + p->drug_stat[2] * 500;
}
}
}
return p->drug_aspect;
2020-07-05 14:49:00 +00:00
}
else
2020-07-05 14:49:00 +00:00
{
DrugTimer = now;
return oyrepeat;
2020-07-05 14:49:00 +00:00
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void displayrooms(int snum, double smoothratio, bool sceneonly)
2020-07-05 14:49:00 +00:00
{
2020-07-05 19:24:55 +00:00
int cposx, cposy, cposz, fz, cz;
DAngle cang, rotscrnang;
fixedhoriz choriz;
2022-02-07 10:04:19 +00:00
player_struct* p;
2020-07-05 14:49:00 +00:00
p = &ps[snum];
2021-11-21 07:45:07 +00:00
if (automapMode == am_full || !p->insector())
2020-07-05 14:49:00 +00:00
return;
// Do not light up the fog in RRRA's E2L1. Ideally this should apply to all foggy levels but all others use lookup table hacks for their fog.
if (isRRRA() && fogactive)
{
p->visibility = ud.const_visibility;
}
g_visibility = ud.const_visibility;
g_relvisibility = p->visibility - ud.const_visibility;
2020-07-05 14:49:00 +00:00
auto sect = p->cursector;
2020-07-05 14:49:00 +00:00
GlobalMapFog = fogactive ? 0x999999 : 0;
GlobalFogDensity = fogactive ? 350.f : 0.f;
DoInterpolations(smoothratio * (1. / MaxSmoothRatio));
2020-07-05 14:49:00 +00:00
setgamepalette(BASEPAL);
2020-07-05 14:49:00 +00:00
float fov = r_fov;
2020-11-02 22:53:55 +00:00
if (ud.cameraactor)
2020-07-05 14:49:00 +00:00
{
auto act = ud.cameraactor;
2020-07-05 14:49:00 +00:00
if (act->spr.yint < 0) act->spr.yint = -100;
else if (act->spr.yint > 199) act->spr.yint = 300;
2020-07-05 14:49:00 +00:00
cang = interpolatedangle(DAngle::fromBuild(ud.cameraactor->tempang), act->spr.angle, smoothratio);
2020-07-05 14:49:00 +00:00
auto bh = buildhoriz(act->spr.yint);
auto cstat = act->spr.cstat;
act->spr.cstat = CSTAT_SPRITE_INVISIBLE;
renderView(act, act->sector(), act->int_pos().X, act->int_pos().Y, act->int_pos().Z - (4 << 8), cang, bh, nullAngle, smoothratio, sceneonly, fov);
act->spr.cstat = cstat;
2020-07-05 14:49:00 +00:00
}
else
{
if (isRRRA() && p->DrugMode)
{
double fovdelta = atan(getdrugmode(p, 65536) * (1. / 65536.)) * (360. / pi::pi()) - 90.;
fov = (float)clamp<double>(r_fov + fovdelta * 0.6, r_fov, 150.);
}
2020-07-05 14:49:00 +00:00
// The camera texture must be rendered with the base palette, so this is the only place where the current global palette can be set.
// The setting here will be carried over to the rendering of the weapon sprites, but other 2D content will always default to the main palette.
setgamepalette(setpal(p));
// set screen rotation.
rotscrnang = !SyncInput() ? p->angle.rotscrnang : p->angle.interpolatedrotscrn(smoothratio);
2020-07-05 14:49:00 +00:00
2021-11-18 18:33:32 +00:00
#if 0
2020-07-05 14:49:00 +00:00
if ((snum == myconnectindex) && (numplayers > 1))
{
cposx = interpolatedvalue(omyx, myx, smoothratio);
cposy = interpolatedvalue(omyy, myy, smoothratio);
cposz = interpolatedvalue(omyz, myz, smoothratio);
if (SyncInput())
{
choriz = interpolatedhorizon(omyhoriz + omyhorizoff, myhoriz + myhorizoff, smoothratio);
cang = interpolatedangle(omyang, myang, smoothratio);
}
else
{
cang = myang;
choriz = myhoriz + myhorizoff;
}
2020-07-05 14:49:00 +00:00
sect = mycursectnum;
}
else
2021-11-18 18:33:32 +00:00
#endif
2020-07-05 14:49:00 +00:00
{
cposx = interpolatedvalue(p->player_int_opos().X, p->player_int_pos().X, smoothratio);
cposy = interpolatedvalue(p->player_int_opos().Y, p->player_int_pos().Y, smoothratio);
cposz = interpolatedvalue(p->player_int_opos().Z, p->player_int_pos().Z, smoothratio);;
if (SyncInput())
{
// Original code for when the values are passed through the sync struct
cang = p->angle.interpolatedsum(smoothratio);
choriz = p->horizon.interpolatedsum(smoothratio);
}
else
{
// This is for real time updating of the view direction.
cang = p->angle.sum();
choriz = p->horizon.sum();
}
2020-07-05 14:49:00 +00:00
}
DDukeActor* viewer;
bool camview = false;
2020-11-02 23:20:51 +00:00
if (p->newOwner != nullptr)
2020-07-05 14:49:00 +00:00
{
auto act = p->newOwner;
cang = act->interpolatedangle(smoothratio * (1. / MaxSmoothRatio));
choriz = buildhoriz(act->spr.shade);
cposx = act->int_pos().X;
cposy = act->int_pos().Y;
cposz = act->int_pos().Z;
sect = act->sector();
rotscrnang = nullAngle;
smoothratio = MaxSmoothRatio;
viewer = act;
camview = true;
2020-07-05 14:49:00 +00:00
}
else if (p->over_shoulder_on == 0)
{
2022-08-30 20:25:07 +00:00
if (cl_viewbob) cposz += interpolatedvaluef(p->opyoff, p->pyoff, smoothratio) * zworldtoint;
viewer = p->GetActor();
2020-07-05 14:49:00 +00:00
}
else
{
cposz -= isRR() ? 3840 : 3072;
viewer = p->GetActor();
if (!calcChaseCamPos(&cposx, &cposy, &cposz, viewer, &sect, cang, choriz, smoothratio))
{
cposz += isRR() ? 3840 : 3072;
calcChaseCamPos(&cposx, &cposy, &cposz, viewer, &sect, cang, choriz, smoothratio);
}
}
2020-07-05 14:49:00 +00:00
cz = int(p->GetActor()->ceilingz * zworldtoint);
fz = int(p->GetActor()->floorz * zworldtoint);
2020-07-05 14:49:00 +00:00
if (earthquaketime > 0 && p->on_ground == 1)
{
cposz += 256 - (((earthquaketime) & 1) << 9);
cang += DAngle::fromBuild((2 - ((earthquaketime) & 2)) << 2);
2020-07-05 14:49:00 +00:00
}
if (p->GetActor()->spr.pal == 1) cposz -= (18 << 8);
2020-07-05 14:49:00 +00:00
2020-11-02 23:20:51 +00:00
else if (p->spritebridge == 0 && p->newOwner == nullptr)
2020-07-05 14:49:00 +00:00
{
if (cposz < (p->truecz * zworldtoint + (4 << 8))) cposz = cz + (4 << 8);
else if (cposz > (p->truefz * zworldtoint - (4 << 8))) cposz = fz - (4 << 8);
2020-07-05 14:49:00 +00:00
}
2021-11-18 18:33:32 +00:00
if (sect)
2020-07-05 14:49:00 +00:00
{
2021-11-18 18:33:32 +00:00
getzsofslopeptr(sect, cposx, cposy, &cz, &fz);
2020-07-05 14:49:00 +00:00
if (cposz < cz + (4 << 8)) cposz = cz + (4 << 8);
if (cposz > fz - (4 << 8)) cposz = fz - (4 << 8);
}
choriz = clamp(choriz, q16horiz(gi->playerHorizMin()), q16horiz(gi->playerHorizMax()));
2020-07-05 14:49:00 +00:00
auto cstat = viewer->spr.cstat;
if (camview) viewer->spr.cstat = CSTAT_SPRITE_INVISIBLE;
renderView(viewer, sect, cposx, cposy, cposz, cang, choriz, rotscrnang, smoothratio, sceneonly, fov);
viewer->spr.cstat = cstat;
2020-07-05 14:49:00 +00:00
}
2020-09-05 21:20:48 +00:00
//GLInterface.SetMapFog(false);
RestoreInterpolations();
2020-07-05 14:49:00 +00:00
if (!isRRRA() || !fogactive)
{
if (PlayClock < lastvisinc)
2020-07-05 14:49:00 +00:00
{
if (abs(p->visibility - ud.const_visibility) > 8)
p->visibility += (ud.const_visibility - p->visibility) >> 2;
}
else p->visibility = ud.const_visibility;
}
}
bool GameInterface::GenerateSavePic()
{
displayrooms(myconnectindex, MaxSmoothRatio, true);
return true;
}
void GameInterface::processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, DAngle viewang, double smoothRatio)
{
fi.animatesprites(tsprites, viewx, viewy, viewang.Buildang(), int(smoothRatio));
}
2020-07-04 21:40:54 +00:00
END_DUKE_NS