TombEngine/TR5Main/Renderer/Renderer11Draw.cpp

3415 lines
137 KiB
C++
Raw Normal View History

#include "framework.h"
#include "Renderer11.h"
#include "configuration.h"
#include "savegame.h"
#include "health.h"
#include "camera.h"
#include "animation.h"
2021-11-16 15:51:50 +03:00
#include "gui.h"
#include "lara.h"
#include "rope.h"
#include "effects/tomb4fx.h"
#include "level.h"
#include "setup.h"
2021-09-19 23:41:26 +03:00
#include "control/control.h"
#include "tr5_rats_emitter.h"
#include "tr5_bats_emitter.h"
2020-06-21 20:57:35 +02:00
#include "ConstantBuffers/CameraMatrixBuffer.h"
#include "Objects/TR4/Entity/tr4_littlebeetle.h"
#include "RenderView/RenderView.h"
#include "effects/hair.h"
#include "effects/weather.h"
2020-08-18 20:26:24 +02:00
#include "winmain.h"
#include "Objects/Effects/tr4_locusts.h"
#include "control/volume.h"
2021-09-25 16:00:30 +03:00
#include "items.h"
#include <chrono>
#include "Objects/Generic/Object/rope.h"
#include <algorithm>
#include <execution>
using namespace TEN::Entities::Generic;
2021-09-25 11:27:47 +02:00
2021-08-30 18:03:21 +03:00
extern TEN::Renderer::RendererHUDBar *g_DashBar;
extern TEN::Renderer::RendererHUDBar *g_SFXVolumeBar;
extern TEN::Renderer::RendererHUDBar *g_MusicVolumeBar;
extern GUNSHELL_STRUCT Gunshells[MAX_GUNSHELL];
2021-08-30 18:03:21 +03:00
namespace TEN::Renderer
{
2021-08-30 18:03:21 +03:00
using namespace TEN::Renderer;
using namespace std::chrono;
2020-08-09 15:25:56 +02:00
void Renderer11::drawPickup(short objectNum)
{
drawObjectOn2DPosition(700 + PickupX, 450, objectNum, 0, m_pickupRotation, 0, 0.5f); // TODO: + PickupY
m_pickupRotation += 45 * 360 / 30;
}
void Renderer11::drawObjectOn2DPosition(short x, short y, short objectNum, short rotX, short rotY, short rotZ, float scale1)
{
Matrix translation;
Matrix rotation;
Matrix world;
Matrix view;
Matrix projection;
Matrix scale;
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
x *= (ScreenWidth / 800.0f);
y *= (ScreenHeight / 600.0f);
2021-11-16 15:51:50 +03:00
auto index = g_Gui.ConvertObjectToInventoryItem(objectNum);
2021-06-07 04:23:30 -05:00
2021-09-13 23:44:52 +03:00
if (index != -1)
{
auto objme = &inventry_objects_list[index];
y += objme->yoff;
rotX += objme->xrot;
rotY += objme->yrot;
rotZ += objme->zrot;
}
2021-06-07 04:23:30 -05:00
view = Matrix::CreateLookAt(Vector3(0.0f, 0.0f, 2048.0f), Vector3(0.0f, 0.0f, 0.0f), Vector3(0.0f, -1.0f, 0.0f));
projection = Matrix::CreateOrthographic(ScreenWidth, ScreenHeight, -1024.0f, 1024.0f);
2021-08-31 18:24:32 +02:00
auto& moveableObj = m_moveableObjects[objectNum];
if(!moveableObj)
return;
2021-09-08 16:47:16 +02:00
OBJECT_INFO* obj = &Objects[objectNum];
if (obj->animIndex != -1)
{
ANIM_FRAME *frame[] = {&g_Level.Frames[g_Level.Anims[obj->animIndex].framePtr]};
2021-08-31 18:24:32 +02:00
updateAnimation(NULL, *moveableObj, frame, 0, 0, 0xFFFFFFFF);
}
Vector3 pos = m_viewportToolkit.Unproject(Vector3(x, y, 1), projection, view, Matrix::Identity);
// Clear just the Z-buffer so we can start drawing on top of the scene
ID3D11DepthStencilView *dsv;
m_context->OMGetRenderTargets(1, NULL, &dsv);
2020-07-23 21:38:12 +02:00
m_context->ClearDepthStencilView(dsv, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
// Set vertex buffer
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
// Set shaders
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsInventory.Get(), NULL, 0);
m_context->PSSetShader(m_psInventory.Get(), NULL, 0);
// Set texture
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[0]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[0]), SamplerStateType::None);
// Set matrices
CCameraMatrixBuffer HudCamera;
HudCamera.ViewProjection = view * projection;
2020-08-09 22:15:32 +02:00
m_cbCameraMatrices.updateData(HudCamera, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(0, 1, m_cbCameraMatrices.get());
2021-08-31 18:24:32 +02:00
for (int n = 0; n < (*moveableObj).ObjectMeshes.size(); n++)
{
2021-08-31 18:24:32 +02:00
RendererMesh *mesh = (*moveableObj).ObjectMeshes[n];
2021-06-07 04:23:30 -05:00
/*if (GLOBAL_invMode)
{
2021-11-16 14:52:52 +03:00
InventoryObject* objme;
2021-06-07 04:23:30 -05:00
2021-11-16 15:51:50 +03:00
objme = &inventry_objects_list[g_Gui.ConvertObjectToInventoryItem(objectNum)];
2021-06-07 04:23:30 -05:00
if (!(objme->meshbits & (1 << n)))
continue;
}*/
// Finish the world matrix
translation = Matrix::CreateTranslation(pos.x, pos.y, pos.z + 1024.0f);
rotation = Matrix::CreateFromYawPitchRoll(TO_RAD(rotY), TO_RAD(rotX), TO_RAD(rotZ));
scale = Matrix::CreateScale(scale1);
world = scale * rotation;
world = world * translation;
if (obj->animIndex != -1)
2021-08-31 18:24:32 +02:00
m_stItem.World = ((*moveableObj).AnimationTransforms[n] * world);
else
2021-08-31 18:24:32 +02:00
m_stItem.World = ((*moveableObj).BindPoseTransforms[n] * world);
m_stItem.AmbientLight = Vector4(0.5f, 0.5f, 0.5f, 1.0f);
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
m_context->PSSetConstantBuffers(1, 1, m_cbItem.get());
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0)
continue;
setBlendMode(bucket.blendMode);
m_stMisc.AlphaTest = (bucket.blendMode != BLEND_MODES::BLENDMODE_OPAQUE);
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
}
}
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderShadowMap(RenderView& renderView)
{
if (shadowLight == nullptr)
2020-08-09 15:25:56 +02:00
return;
// Reset GPU state
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
// Bind and clear render target
m_context->ClearRenderTargetView(m_shadowMap.RenderTargetView.Get(), Colors::White);
m_context->ClearDepthStencilView(m_shadowMap.DepthStencilView.Get(), D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
m_context->OMSetRenderTargets(1, m_shadowMap.RenderTargetView.GetAddressOf(), m_shadowMap.DepthStencilView.Get());
m_context->RSSetViewports(1, &m_shadowMapViewport);
//drawLara(false, true);
Vector3 lightPos = Vector3(shadowLight->Position.x, shadowLight->Position.y, shadowLight->Position.z);
Vector3 itemPos = Vector3(LaraItem->pos.xPos, LaraItem->pos.yPos, LaraItem->pos.zPos);
if (lightPos == itemPos)
2020-08-09 15:25:56 +02:00
return;
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
// Set shaders
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsShadowMap.Get(), NULL, 0);
m_context->PSSetShader(m_psShadowMap.Get(), NULL, 0);
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
// Set texture
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[0]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[0]), SamplerStateType::None);
// Set camera matrices
Matrix view = Matrix::CreateLookAt(lightPos,
itemPos,
Vector3(0.0f, -1.0f, 0.0f));
Matrix projection = Matrix::CreatePerspectiveFieldOfView(90.0f * RADIAN, 1.0f, 64.0f,
(shadowLight->Type == LIGHT_TYPE_POINT ? shadowLight->Out : shadowLight->Range) * 1.2f);
CCameraMatrixBuffer shadowProjection;
shadowProjection.ViewProjection = view * projection;
2020-08-09 22:15:32 +02:00
m_cbCameraMatrices.updateData(shadowProjection, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(0, 1, m_cbCameraMatrices.get());
m_stShadowMap.LightViewProjection = (view * projection);
m_stMisc.AlphaTest = true;
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
2021-10-28 00:08:36 +03:00
RendererObject& laraObj = *m_moveableObjects[ID_LARA];
RendererObject& laraSkin = *m_moveableObjects[ID_LARA_SKIN];
RendererRoom& room = m_rooms[LaraItem->roomNumber];
m_stItem.World = m_LaraWorldMatrix;
m_stItem.Position = Vector4(LaraItem->pos.xPos, LaraItem->pos.yPos, LaraItem->pos.zPos, 1.0f);
m_stItem.AmbientLight = room.AmbientLight;
memcpy(m_stItem.BonesMatrices, laraObj.AnimationTransforms.data(), sizeof(Matrix) * 32);
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
m_context->PSSetConstantBuffers(1, 1, m_cbItem.get());
for (int k = 0; k < laraSkin.ObjectMeshes.size(); k++)
{
RendererMesh *mesh = getMesh(Lara.meshPtrs[k]);
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0 && bucket.blendMode != 0)
continue;
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
if (m_moveableObjects[ID_LARA_SKIN_JOINTS].has_value())
{
RendererObject &laraSkinJoints = *m_moveableObjects[ID_LARA_SKIN_JOINTS];
for (int k = 0; k < laraSkinJoints.ObjectMeshes.size(); k++)
{
RendererMesh *mesh = laraSkinJoints.ObjectMeshes[k];
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0 && bucket.blendMode != 0)
continue;
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
for (int k = 0; k < laraSkin.ObjectMeshes.size(); k++)
{
RendererMesh *mesh = laraSkin.ObjectMeshes[k];
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0 && bucket.blendMode != 0)
continue;
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
// Draw items
RendererObject &hairsObj = *m_moveableObjects[ID_LARA_HAIR];
// First matrix is Lara's head matrix, then all 6 hairs matrices. Bones are adjusted at load time for accounting this.
m_stItem.World = Matrix::Identity;
Matrix matrices[7];
matrices[0] = laraObj.AnimationTransforms[LM_HEAD] * m_LaraWorldMatrix;
for (int i = 0; i < hairsObj.BindPoseTransforms.size(); i++)
{
HAIR_STRUCT *hairs = &Hairs[0][i];
Matrix world = Matrix::CreateFromYawPitchRoll(TO_RAD(hairs->pos.yRot), TO_RAD(hairs->pos.xRot), 0) * Matrix::CreateTranslation(hairs->pos.xPos, hairs->pos.yPos, hairs->pos.zPos);
matrices[i + 1] = world;
}
memcpy(m_stItem.BonesMatrices, matrices, sizeof(Matrix) * 7);
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
m_context->PSSetConstantBuffers(1, 1, m_cbItem.get());
for (int k = 0; k < hairsObj.ObjectMeshes.size(); k++)
{
RendererMesh *mesh = hairsObj.ObjectMeshes[k];
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0 && bucket.blendMode != 0)
continue;
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderTitleImage()
{
wchar_t introFileChars[255];
std::mbstowcs(introFileChars, g_GameFlow->IntroImagePath.c_str(), 255);
std::wstring titleStringFileName(introFileChars);
2020-08-09 22:15:32 +02:00
Texture2D texture = Texture2D(m_device.Get(), titleStringFileName);
float currentFade = 0;
while (currentFade <= 1.0f)
{
drawFullScreenImage(texture.ShaderResourceView.Get(), currentFade, m_backBufferRTV, m_depthStencilView);
SyncRenderer();
currentFade += FADE_FACTOR;
m_swapChain->Present(0, 0);
}
for (int i = 0; i < 20; i++)
{
drawFullScreenImage(texture.ShaderResourceView.Get(), 1.0f, m_backBufferRTV, m_depthStencilView);
SyncRenderer();
m_swapChain->Present(0, 0);
}
currentFade = 1.0f;
while (currentFade >= 0.0f)
{
drawFullScreenImage(texture.ShaderResourceView.Get(), currentFade, m_backBufferRTV, m_depthStencilView);
SyncRenderer();
currentFade -= FADE_FACTOR;
m_swapChain->Present(0, 0);
}
}
2020-10-11 16:47:36 +02:00
void Renderer11::drawGunShells(RenderView& view)
2020-08-09 15:25:56 +02:00
{
2021-10-28 00:08:36 +03:00
RendererRoom& room = m_rooms[LaraItem->roomNumber];
RendererItem* item = &m_items[Lara.itemNumber];
m_stItem.AmbientLight = room.AmbientLight;
memcpy(m_stItem.BonesMatrices, &Matrix::Identity, sizeof(Matrix));
m_stLights.NumLights = item->LightsToDraw.size();
for (int j = 0; j < item->LightsToDraw.size(); j++)
memcpy(&m_stLights.Lights[j], item->LightsToDraw[j], sizeof(ShaderLight));
2020-08-09 22:15:32 +02:00
m_cbLights.updateData(m_stLights, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(2, 1, m_cbLights.get());
m_stMisc.AlphaTest = true;
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
for (int i = 0; i < 24; i++)
{
GUNSHELL_STRUCT *gunshell = &Gunshells[i];
if (gunshell->counter > 0)
{
2020-07-07 07:32:33 +02:00
OBJECT_INFO *obj = &Objects[gunshell->objectNumber];
RendererObject &moveableObj = *m_moveableObjects[gunshell->objectNumber];
Matrix translation = Matrix::CreateTranslation(gunshell->pos.xPos, gunshell->pos.yPos, gunshell->pos.zPos);
Matrix rotation = Matrix::CreateFromYawPitchRoll(TO_RAD(gunshell->pos.yRot), TO_RAD(gunshell->pos.xRot), TO_RAD(gunshell->pos.zRot));
Matrix world = rotation * translation;
m_stItem.World = world;
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
RendererMesh *mesh = moveableObj.ObjectMeshes[0];
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0 && bucket.blendMode == BLENDMODE_OPAQUE)
continue;
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
2021-10-12 00:26:46 -05:00
2021-05-14 18:01:56 -05:00
void Renderer11::renderTitleMenu()
{
char stringBuffer[255];
int y = 400;
short lastY;
RendererVideoAdapter* adapter = &m_adapters[g_Configuration.Adapter];
2021-11-16 15:51:50 +03:00
RendererDisplayMode* mode = &adapter->DisplayModes[g_Gui.GetCurrentSettings().videoMode];
__int64 title_option = g_Gui.GetSelectedOption();
Menu title_menu = g_Gui.GetMenuToDisplay();
2021-05-14 18:01:56 -05:00
2021-10-12 04:15:22 -05:00
switch (title_menu)
2021-05-14 18:01:56 -05:00
{
2021-11-16 14:38:04 +03:00
case Menu::Title:
2021-05-14 18:01:56 -05:00
a:
2021-10-13 15:10:48 -05:00
if (title_option == 0)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_NEW_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_NEW_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (title_option == 1)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_LOAD_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_LOAD_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (title_option == 2)
2021-05-18 19:16:58 -05:00
drawString(400, y, "Options", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
2021-05-14 18:01:56 -05:00
else
2021-05-18 19:16:58 -05:00
drawString(400, y, "Options", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
2021-05-14 18:01:56 -05:00
y += 25;
2021-10-13 15:10:48 -05:00
if (title_option == 3)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_EXIT_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_EXIT_GAME), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
break;
2021-11-16 14:38:04 +03:00
case Menu::SelectLevel:
2021-05-14 18:01:56 -05:00
lastY = 50;
drawString(400, 26, g_GameFlow->GetString(STRING_SELECT_LEVEL), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
for (int i = 1; i < g_GameFlow->GetNumLevels(); i++)
{
int i2 = i - 1;
GameScriptLevel* levelScript = g_GameFlow->GetLevel(i);
drawString(400, lastY, g_GameFlow->GetString(levelScript->NameStringKey.c_str()), D3DCOLOR_ARGB(255, 255, 255, 255),
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == (i - 1) ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
lastY += 24;
}
break;
2021-11-16 14:38:04 +03:00
case Menu::LoadGame:
2021-05-14 18:01:56 -05:00
if (g_GameFlow->EnableLoadSave)
{
y = 44;
LoadSavegameInfos();
for (int n = 1; n < SAVEGAME_MAX + 1; n++)
2021-05-14 18:01:56 -05:00
{
2021-10-31 23:55:17 +03:00
if (!SavegameInfos[n - 1].Present)
drawString(400, y, g_GameFlow->GetString(STRING_UNUSED), D3DCOLOR_ARGB(255, 255, 255, 255),
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == (n - 1) ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
else
{
2021-10-31 23:55:17 +03:00
sprintf(stringBuffer, "%05d", SavegameInfos[n-1].Count);
2021-10-13 15:10:48 -05:00
drawString(200, y, stringBuffer, D3DCOLOR_ARGB(255, 255, 255, 255), PRINTSTRING_OUTLINE | (title_option == (n - 1) ? PRINTSTRING_BLINK | PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-05-14 18:01:56 -05:00
2021-10-31 23:55:17 +03:00
drawString(250, y, (char*)SavegameInfos[n-1].LevelName.c_str(), D3DCOLOR_ARGB(255, 255, 255, 255), PRINTSTRING_OUTLINE | (title_option == (n - 1) ? PRINTSTRING_BLINK | PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-05-14 18:01:56 -05:00
2021-10-31 23:55:17 +03:00
sprintf(stringBuffer, g_GameFlow->GetString(STRING_SAVEGAME_TIMESTAMP), SavegameInfos[n-1].Days, SavegameInfos[n-1].Hours, SavegameInfos[n-1].Minutes, SavegameInfos[n-1].Seconds);
2021-05-14 18:01:56 -05:00
drawString(475, y, stringBuffer, D3DCOLOR_ARGB(255, 255, 255, 255),
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == (n - 1) ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
}
y += 24;
}
}
else
goto a;
break;
2021-11-16 14:38:04 +03:00
case Menu::Options:
2021-05-14 18:01:56 -05:00
y = 350;
2021-10-13 15:10:48 -05:00
if (title_option == 0)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (title_option == 1)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (title_option == 2)
2021-05-14 18:01:56 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_SOUND), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_SOUND), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
break;
2021-11-16 14:38:04 +03:00
case Menu::Display:
2021-05-14 18:01:56 -05:00
y = 200;
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
// Screen resolution
drawString(200, y, g_GameFlow->GetString(STRING_SCREEN_RESOLUTION),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
ZeroMemory(stringBuffer, 255);
sprintf(stringBuffer, "%d x %d (%d Hz)", mode->Width, mode->Height, mode->RefreshRate);
drawString(400, y, stringBuffer, PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Windowed mode
drawString(200, y, g_GameFlow->GetString(STRING_WINDOWED),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 1 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.Windowed ? STRING_ENABLED : STRING_DISABLED),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 1 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Enable dynamic shadows
drawString(200, y, g_GameFlow->GetString(STRING_SHADOWS),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 2 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableShadows ? STRING_ENABLED : STRING_DISABLED),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 2 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Enable caustics
drawString(200, y, g_GameFlow->GetString(STRING_CAUSTICS),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 3 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableCaustics ? STRING_ENABLED : STRING_DISABLED),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 3 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Enable volumetric fog
drawString(200, y, g_GameFlow->GetString(STRING_VOLUMETRIC_FOG),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 4 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableVolumetricFog ? STRING_ENABLED : STRING_DISABLED),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 4 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Apply
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 5 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
//cancel
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 6 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
break;
2021-11-16 14:38:04 +03:00
case Menu::Controls:
2021-05-14 18:01:56 -05:00
y = 40;
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
2021-07-08 17:57:08 -05:00
for (int k = 0; k < 16; k++)
2021-05-14 18:01:56 -05:00
{
2021-07-08 17:57:08 -05:00
drawString(200, y, g_GameFlow->GetString(controlmsgs[k]),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == k ? PRINTSTRING_BLINK : 0) |
2021-11-16 15:51:50 +03:00
(g_Gui.GetCurrentSettings().waitingForkey ? PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-05-14 18:01:56 -05:00
2021-11-16 15:51:50 +03:00
if (g_Gui.GetCurrentSettings().waitingForkey && title_option == k)
2021-05-14 18:01:56 -05:00
{
drawString(400, y, g_GameFlow->GetString(STRING_WAITING_FOR_KEY),
PRINTSTRING_COLOR_YELLOW,
PRINTSTRING_OUTLINE | PRINTSTRING_BLINK);
}
else
{
drawString(400, y, (char*)g_KeyNames[KeyboardLayout[1][k]],
PRINTSTRING_COLOR_ORANGE,
PRINTSTRING_OUTLINE);
}
y += 25;
}
// Apply and cancel
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 16 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 17 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
break;
2021-11-16 14:38:04 +03:00
case Menu::Sound:
2021-05-14 18:01:56 -05:00
y = 200;
drawString(400, y, g_GameFlow->GetString(STRING_SOUND),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
// Enable sound special effects
drawString(200, y, g_GameFlow->GetString(STRING_SPECIAL_SOUND_FX),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (title_option == 0 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableAudioSpecialEffects ? STRING_ENABLED : STRING_DISABLED),
2021-05-14 18:01:56 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
// Music volume
drawString(200, y, g_GameFlow->GetString(STRING_MUSIC_VOLUME),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 1 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawBar(g_Gui.GetCurrentSettings().conf.MusicVolume / 100.0f, g_MusicVolumeBar,ID_SFX_BAR_TEXTURE,0,false);
2021-05-14 18:01:56 -05:00
y += 25;
// Sound FX volume
drawString(200, y, g_GameFlow->GetString(STRING_SFX_VOLUME),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (title_option == 2 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawBar(g_Gui.GetCurrentSettings().conf.SfxVolume / 100.0f, g_SFXVolumeBar, ID_SFX_BAR_TEXTURE,0,false);
2021-05-14 18:01:56 -05:00
y += 25;
// Apply and cancel
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 3 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
y += 25;
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (title_option == 4 ? PRINTSTRING_BLINK : 0));
2021-05-14 18:01:56 -05:00
break;
}
}
2021-05-18 19:16:58 -05:00
void Renderer11::renderPauseMenu()
{
char stringBuffer[255];
int y;
RendererVideoAdapter* adapter = &m_adapters[g_Configuration.Adapter];
2021-11-16 15:51:50 +03:00
RendererDisplayMode* mode = &adapter->DisplayModes[g_Gui.GetCurrentSettings().videoMode];
Menu pause_menu = g_Gui.GetMenuToDisplay();
__int64 pause_option = g_Gui.GetSelectedOption();
2021-05-18 19:16:58 -05:00
2021-10-12 04:15:22 -05:00
switch (pause_menu)
2021-05-18 19:16:58 -05:00
{
2021-11-16 14:38:04 +03:00
case Menu::Pause:
2021-05-18 19:16:58 -05:00
y = 275;
2021-10-13 15:10:48 -05:00
if (pause_option == 0)
2021-05-18 19:16:58 -05:00
drawString(400, y, "Statistics", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, "Statistics", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (pause_option == 1)
2021-05-18 19:16:58 -05:00
drawString(400, y, "Options", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, "Options", PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (pause_option == 2)
2021-05-18 19:16:58 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_EXIT_TO_TITLE), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_EXIT_TO_TITLE), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
break;
2021-11-16 14:38:04 +03:00
case Menu::Statistics:
drawStatistics();
2021-05-18 19:16:58 -05:00
break;
2021-11-16 14:38:04 +03:00
case Menu::Options:
2021-05-18 19:16:58 -05:00
y = 275;
2021-10-13 15:10:48 -05:00
if (pause_option == 0)
2021-05-18 19:16:58 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (pause_option == 1)
2021-05-18 19:16:58 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
y += 25;
2021-10-13 15:10:48 -05:00
if (pause_option == 2)
2021-05-18 19:16:58 -05:00
drawString(400, y, g_GameFlow->GetString(STRING_SOUND), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER | PRINTSTRING_BLINK);
else
drawString(400, y, g_GameFlow->GetString(STRING_SOUND), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
break;
2021-11-16 14:38:04 +03:00
case Menu::Display:
2021-05-18 19:16:58 -05:00
y = 200;
drawString(400, y, g_GameFlow->GetString(STRING_DISPLAY),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
// Screen resolution
drawString(200, y, g_GameFlow->GetString(STRING_SCREEN_RESOLUTION),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
ZeroMemory(stringBuffer, 255);
sprintf(stringBuffer, "%d x %d (%d Hz)", mode->Width, mode->Height, mode->RefreshRate);
drawString(400, y, stringBuffer, PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Windowed mode
drawString(200, y, g_GameFlow->GetString(STRING_WINDOWED),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 1 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.Windowed ? STRING_ENABLED : STRING_DISABLED),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 1 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Enable dynamic shadows
drawString(200, y, g_GameFlow->GetString(STRING_SHADOWS),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 2 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableShadows ? STRING_ENABLED : STRING_DISABLED),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 2 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Enable caustics
drawString(200, y, g_GameFlow->GetString(STRING_CAUSTICS),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 3 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableCaustics ? STRING_ENABLED : STRING_DISABLED),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 3 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Enable volumetric fog
drawString(200, y, g_GameFlow->GetString(STRING_VOLUMETRIC_FOG),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 4 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableVolumetricFog ? STRING_ENABLED : STRING_DISABLED),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 4 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Apply
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 5 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
//cancel
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 6 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
break;
2021-11-16 14:38:04 +03:00
case Menu::Controls:
2021-05-18 19:16:58 -05:00
y = 40;
drawString(400, y, g_GameFlow->GetString(STRING_CONTROLS),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
2021-07-08 17:57:08 -05:00
for (int k = 0; k < 16; k++)
2021-05-18 19:16:58 -05:00
{
2021-07-08 17:57:08 -05:00
drawString(200, y, g_GameFlow->GetString(controlmsgs[k]),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == k ? PRINTSTRING_BLINK : 0) |
2021-11-16 15:51:50 +03:00
(g_Gui.GetCurrentSettings().waitingForkey ? PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-05-18 19:16:58 -05:00
2021-11-16 15:51:50 +03:00
if (g_Gui.GetCurrentSettings().waitingForkey && pause_option == k)
2021-05-18 19:16:58 -05:00
{
drawString(400, y, g_GameFlow->GetString(STRING_WAITING_FOR_KEY),
PRINTSTRING_COLOR_YELLOW,
PRINTSTRING_OUTLINE | PRINTSTRING_BLINK);
}
else
{
drawString(400, y, (char*)g_KeyNames[KeyboardLayout[1][k]],
PRINTSTRING_COLOR_ORANGE,
PRINTSTRING_OUTLINE);
}
y += 25;
}
2021-06-06 10:51:20 -05:00
// Apply and cancel
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 16 ? PRINTSTRING_BLINK : 0));
2021-06-06 10:51:20 -05:00
y += 25;
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 17 ? PRINTSTRING_BLINK : 0));
2021-06-06 10:51:20 -05:00
2021-05-18 19:16:58 -05:00
break;
2021-11-16 14:38:04 +03:00
case Menu::Sound:
2021-05-18 19:16:58 -05:00
y = 200;
drawString(400, y, g_GameFlow->GetString(STRING_SOUND),
PRINTSTRING_COLOR_YELLOW, PRINTSTRING_OUTLINE | PRINTSTRING_CENTER);
y += 25;
// Enable sound special effects
drawString(200, y, g_GameFlow->GetString(STRING_SPECIAL_SOUND_FX),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_DONT_UPDATE_BLINK | PRINTSTRING_OUTLINE | (pause_option == 0 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawString(400, y, g_GameFlow->GetString(g_Gui.GetCurrentSettings().conf.EnableAudioSpecialEffects ? STRING_ENABLED : STRING_DISABLED),
2021-05-18 19:16:58 -05:00
PRINTSTRING_COLOR_WHITE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 0 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
// Music volume
drawString(200, y, g_GameFlow->GetString(STRING_MUSIC_VOLUME),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 1 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawBar(g_Gui.GetCurrentSettings().conf.MusicVolume / 100.0f, g_MusicVolumeBar, ID_SFX_BAR_TEXTURE,0,0);
2021-05-18 19:16:58 -05:00
y += 25;
// Sound FX volume
drawString(200, y, g_GameFlow->GetString(STRING_SFX_VOLUME),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_OUTLINE | (pause_option == 2 ? PRINTSTRING_BLINK : 0));
2021-11-16 15:51:50 +03:00
drawBar(g_Gui.GetCurrentSettings().conf.SfxVolume / 100.0f, g_SFXVolumeBar, ID_SFX_BAR_TEXTURE,0,0);
2021-05-18 19:16:58 -05:00
y += 25;
// Apply and cancel
drawString(400, y, g_GameFlow->GetString(STRING_APPLY),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 3 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
y += 25;
drawString(400, y, g_GameFlow->GetString(STRING_CANCEL),
PRINTSTRING_COLOR_ORANGE,
2021-10-13 15:10:48 -05:00
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (pause_option == 4 ? PRINTSTRING_BLINK : 0));
2021-05-18 19:16:58 -05:00
break;
}
2021-09-14 19:53:09 +03:00
drawLines2D();
drawRects2D();
2021-05-18 19:16:58 -05:00
drawAllStrings();
}
void Renderer11::renderLoadSaveMenu()
{
if (!g_GameFlow->EnableLoadSave)
{
2021-11-16 15:51:50 +03:00
g_Gui.SetInventoryMode(InventoryMode::InGame);
return;
}
2021-11-16 15:51:50 +03:00
short selection = g_Gui.GetLoadSaveSelection();
char stringBuffer[255];
long y = 70;
LoadSavegameInfos();
2021-11-16 15:51:50 +03:00
if (g_Gui.GetInventoryMode() == InventoryMode::Load)
drawString(400, 40, "Load Game", D3DCOLOR_ARGB(255, 255, 140, 0), PRINTSTRING_CENTER | PRINTSTRING_OUTLINE);
else
drawString(400, 40, "Save Game", D3DCOLOR_ARGB(255, 255, 140, 0), PRINTSTRING_CENTER | PRINTSTRING_OUTLINE);
for (int n = 1; n < SAVEGAME_MAX + 1; n++)
{
int n2 = n - 1;
2021-10-31 23:55:17 +03:00
if (!SavegameInfos[n - 1].Present)
drawString(400, y, g_GameFlow->GetString(STRING_UNUSED), D3DCOLOR_ARGB(255, 255, 255, 255),
PRINTSTRING_CENTER | PRINTSTRING_OUTLINE | (selection == n2 ? PRINTSTRING_BLINK : 0));
else
{
2021-10-31 23:55:17 +03:00
sprintf(stringBuffer, "%05d", SavegameInfos[n - 1].Count);
drawString(200, y, stringBuffer, D3DCOLOR_ARGB(255, 255, 255, 255), PRINTSTRING_OUTLINE | (selection == n2 ? PRINTSTRING_BLINK | PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-10-31 23:55:17 +03:00
drawString(250, y, (char*)SavegameInfos[n - 1].LevelName.c_str(), D3DCOLOR_ARGB(255, 255, 255, 255), PRINTSTRING_OUTLINE | (selection == n2 ? PRINTSTRING_BLINK | PRINTSTRING_DONT_UPDATE_BLINK : 0));
2021-10-31 23:55:17 +03:00
sprintf(stringBuffer, g_GameFlow->GetString(STRING_SAVEGAME_TIMESTAMP), SavegameInfos[n - 1].Days, SavegameInfos[n - 1].Hours, SavegameInfos[n - 1].Minutes, SavegameInfos[n - 1].Seconds);
drawString(475, y, stringBuffer, D3DCOLOR_ARGB(255, 255, 255, 255),
PRINTSTRING_OUTLINE | (selection == n2 ? PRINTSTRING_BLINK : 0));
}
y += 30;
}
drawAllStrings();
}
2021-05-18 19:16:58 -05:00
void Renderer11::renderNewInventory()
{
2021-11-16 15:51:50 +03:00
g_Gui.DrawCurrentObjectList((int)RingTypes::Inventory);
2021-05-18 19:16:58 -05:00
2021-11-16 15:51:50 +03:00
g_Gui.HandleInventoryMenu();
2021-05-18 19:16:58 -05:00
2021-11-16 15:51:50 +03:00
if (g_Gui.GetRings((int)RingTypes::Ammo)->ringactive)
g_Gui.DrawCurrentObjectList((int)RingTypes::Ammo);
2021-05-18 19:16:58 -05:00
2021-11-16 15:51:50 +03:00
g_Gui.DrawAmmoSelector();
g_Gui.FadeAmmoSelector();
g_Gui.DrawCompass();
2021-05-18 19:16:58 -05:00
drawAllStrings();
}
void Renderer11::drawStatistics()
{
unsigned short ypos;
short Days, Hours, Min, Sec;
char buffer[40];
int seconds;
2021-05-23 00:47:06 -05:00
GameScriptLevel* lvl = g_GameFlow->GetLevel(CurrentLevel);
ypos = 150;
drawString(400, ypos, STRING_STATISTICS, PRINTSTRING_COLOR_ORANGE, PRINTSTRING_CENTER);
drawString(400, ypos + 2 * 25, g_GameFlow->GetString(lvl->NameStringKey.c_str()), PRINTSTRING_COLOR_WHITE, PRINTSTRING_CENTER);
drawString(200, ypos + 3 * 25, g_GameFlow->GetString(STRING_TIME_TAKEN), PRINTSTRING_COLOR_WHITE, 0);
drawString(200, ypos + 4 * 25, g_GameFlow->GetString(STRING_DISTANCE_TRAVELLED), PRINTSTRING_COLOR_WHITE, 0);
drawString(200, ypos + 5 * 25, g_GameFlow->GetString(STRING_USED_AMMOS), PRINTSTRING_COLOR_WHITE, 0);
drawString(200, ypos + 6 * 25, g_GameFlow->GetString(STRING_USED_MEDIPACKS), PRINTSTRING_COLOR_WHITE, 0);
drawString(200, ypos + 7 * 25, g_GameFlow->GetString(STRING_SECRETS_FOUND), PRINTSTRING_COLOR_WHITE, 0);
seconds = GameTimer / 30;
Days = seconds / (24 * 60 * 60);
Hours = (seconds % (24 * 60 * 60)) / (60 * 60);
Min = (seconds / 60) % 60;
Sec = (seconds % 60);
sprintf(buffer, "%02d:%02d:%02d", (Days * 24) + Hours, Min, Sec);
drawString(500, ypos + 3 * 25, buffer, PRINTSTRING_COLOR_WHITE, 0);
sprintf(buffer, "%dm", Statistics.Game.Distance / 419);
drawString(500, ypos + 4 * 25, buffer, PRINTSTRING_COLOR_WHITE, 0);
sprintf(buffer, "%d", Statistics.Game.AmmoUsed);
drawString(500, ypos + 5 * 25, buffer, PRINTSTRING_COLOR_WHITE, 0);
sprintf(buffer, "%d", Statistics.Game.HealthUsed);
drawString(500, ypos + 6 * 25, buffer, PRINTSTRING_COLOR_WHITE, 0);
sprintf(buffer, "%d / 36", Statistics.Game.Secrets);
drawString(500, ypos + 7 * 25, buffer, PRINTSTRING_COLOR_WHITE, 0);
drawAllStrings();
}
void Renderer11::drawExamines()
{
static short xrot = 0, yrot = 0, zrot = 0;
static float scaler = 1.2f;
float saved_scale;
2021-11-16 15:51:50 +03:00
short inv_item = g_Gui.GetRings((int)RingTypes::Inventory)->current_object_list[g_Gui.GetRings((int)RingTypes::Inventory)->curobjinlist].invitem;
2021-11-16 14:52:52 +03:00
InventoryObject* obj = &inventry_objects_list[inv_item];
if (TrInput & IN_LEFT)
yrot += ANGLE(3);
if (TrInput & IN_RIGHT)
yrot -= ANGLE(3);
if (TrInput & IN_FORWARD)
xrot += ANGLE(3);
if (TrInput & IN_BACK)
xrot -= ANGLE(3);
if (TrInput & IN_SPRINT)
scaler += 0.03f;
if (TrInput & IN_DUCK)
scaler -= 0.03f;
if (scaler > 1.6f)
scaler = 1.6f;
if (scaler < 0.8f)
scaler = 0.8f;
saved_scale = obj->scale1;
obj->scale1 = scaler;
2021-11-16 15:51:50 +03:00
drawObjectOn2DPosition(400, 300, g_Gui.ConvertInventoryItemToObject(inv_item), xrot, yrot, zrot, obj->scale1);
obj->scale1 = saved_scale;
}
2021-06-15 14:09:49 -05:00
void Renderer11::drawDiary()
{
2021-11-16 14:52:52 +03:00
InventoryObject* obj = &inventry_objects_list[INV_OBJECT_OPEN_DIARY];
2021-06-15 14:09:49 -05:00
short currentPage = Lara.Diary.currentPage;
2021-11-16 15:51:50 +03:00
drawObjectOn2DPosition(400, 300, g_Gui.ConvertInventoryItemToObject(INV_OBJECT_OPEN_DIARY), obj->xrot, obj->yrot, obj->zrot, obj->scale1);
2021-06-15 14:09:49 -05:00
for (int i = 0; i < MaxStringsPerPage; i++)
{
if (!Lara.Diary.Pages[Lara.Diary.currentPage].Strings[i].x && !Lara.Diary.Pages[Lara.Diary.currentPage].Strings[i].y && !Lara.Diary.Pages[Lara.Diary.currentPage].Strings[i].stringID)
break;
2021-06-19 07:14:38 +02:00
//drawString(Lara.Diary.Pages[currentPage].Strings[i].x, Lara.Diary.Pages[currentPage].Strings[i].y, g_GameFlow->GetString(Lara.Diary.Pages[currentPage].Strings[i].stringID), PRINTSTRING_COLOR_WHITE, 0);
2021-06-15 14:09:49 -05:00
}
drawAllStrings();
}
2021-10-12 00:26:46 -05:00
2020-08-09 15:25:56 +02:00
void Renderer11::renderInventoryScene(ID3D11RenderTargetView* target, ID3D11DepthStencilView* depthTarget, ID3D11ShaderResourceView* background)
{
char stringBuffer[255];
bool drawLogo = true;
RECT guiRect;
Vector4 guiColor = Vector4(0.0f, 0.0f, 0.25f, 0.5f);
bool drawGuiRect = false;
RECT rect;
rect.left = 0;
rect.top = 0;
rect.right = ScreenWidth;
rect.bottom = ScreenHeight;
m_lines2DToDraw.clear();
2021-09-14 19:53:09 +03:00
m_rects2DToDraw.clear();
m_strings.clear();
m_nextLine2D = 0;
2021-09-14 19:53:09 +03:00
m_nextRect2D = 0;
// Set basic render states
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
// Bind and clear render target
//m_context->ClearRenderTargetView(target, Colors::Black);
//m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
m_context->OMSetRenderTargets(1, &target, depthTarget);
m_context->RSSetViewports(1, &m_viewport);
if (background != nullptr)
{
drawFullScreenImage(background, 0.5f, target, depthTarget);
}
m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
// Set vertex buffer
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
// Set shaders
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsInventory.Get(), NULL, 0);
m_context->PSSetShader(m_psInventory.Get(), NULL, 0);
// Set texture
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[0]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[0]), SamplerStateType::None);
if (CurrentLevel == 0)
2021-05-14 18:01:56 -05:00
{
2021-11-16 15:51:50 +03:00
Menu title_menu = g_Gui.GetMenuToDisplay();
2021-10-12 04:15:22 -05:00
2021-11-16 14:38:04 +03:00
if (title_menu == Menu::Title || title_menu == Menu::Options)
2021-05-14 18:01:56 -05:00
drawLogo = 1;
else
drawLogo = 0;
if (drawLogo)
{
float factorX = (float)ScreenWidth / REFERENCE_RES_WIDTH;
float factorY = (float)ScreenHeight / REFERENCE_RES_HEIGHT;
RECT rect;
rect.left = 250 * factorX;
rect.right = 550 * factorX;
rect.top = 50 * factorY;
rect.bottom = 200 * factorY;
m_spriteBatch->Begin(SpriteSortMode_BackToFront, m_states->Additive());
m_spriteBatch->Draw(m_logo.ShaderResourceView.Get(), rect, Vector4::One);
m_spriteBatch->End();
}
renderTitleMenu();
return;
}
2021-05-18 19:16:58 -05:00
2021-11-16 15:51:50 +03:00
InventoryMode mode = g_Gui.GetInventoryMode();
2021-10-12 04:15:22 -05:00
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::Load || mode == InventoryMode::Save)
{
renderLoadSaveMenu();
return;
}
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::InGame)
2021-05-18 19:16:58 -05:00
{
renderNewInventory();
return;
}
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::Statistics)
{
drawStatistics();
return;
}
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::Examine)
{
drawExamines();
return;
}
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::Pause)
2021-05-18 19:16:58 -05:00
{
2021-11-16 15:51:50 +03:00
Menu pause_menu = g_Gui.GetMenuToDisplay();
2021-10-12 04:15:22 -05:00
2021-11-16 14:38:04 +03:00
if (pause_menu == Menu::Pause || pause_menu == Menu::Options)
2021-05-18 19:16:58 -05:00
{
2021-11-16 14:38:04 +03:00
guiRect.left = pause_menu == Menu::Pause ? 335 : 295;
guiRect.right = pause_menu == Menu::Pause ? 135 : 215;
2021-05-18 19:16:58 -05:00
guiRect.top = 265;
guiRect.bottom = 100;
2021-09-14 19:53:09 +03:00
addQuad2D(guiRect, 0, 0, 64, 180);
2021-05-18 19:16:58 -05:00
}
renderPauseMenu();
return;
}
2021-05-14 18:01:56 -05:00
2021-11-16 14:38:04 +03:00
if (mode == InventoryMode::Diary)
2021-06-15 14:09:49 -05:00
{
drawDiary();
return;
}
}
2020-08-09 15:25:56 +02:00
void Renderer11::drawFullScreenQuad(ID3D11ShaderResourceView* texture, DirectX::SimpleMath::Vector3 color, bool cinematicBars)
{
RendererVertex vertices[4];
if (!cinematicBars)
{
vertices[0].Position.x = -1.0f;
vertices[0].Position.y = 1.0f;
vertices[0].Position.z = 0.0f;
vertices[0].UV.x = 0.0f;
vertices[0].UV.y = 0.0f;
vertices[0].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[1].Position.x = 1.0f;
vertices[1].Position.y = 1.0f;
vertices[1].Position.z = 0.0f;
vertices[1].UV.x = 1.0f;
vertices[1].UV.y = 0.0f;
vertices[1].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[2].Position.x = 1.0f;
vertices[2].Position.y = -1.0f;
vertices[2].Position.z = 0.0f;
vertices[2].UV.x = 1.0f;
vertices[2].UV.y = 1.0f;
vertices[2].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[3].Position.x = -1.0f;
vertices[3].Position.y = -1.0f;
vertices[3].Position.z = 0.0f;
vertices[3].UV.x = 0.0f;
vertices[3].UV.y = 1.0f;
vertices[3].Color = Vector4(color.x, color.y, color.z, 1.0f);
}
else
{
float cinematicFactor = 0.12f;
vertices[0].Position.x = -1.0f;
vertices[0].Position.y = 1.0f - cinematicFactor * 2;
vertices[0].Position.z = 0.0f;
vertices[0].UV.x = 0.0f;
vertices[0].UV.y = cinematicFactor;
vertices[0].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[1].Position.x = 1.0f;
vertices[1].Position.y = 1.0f - cinematicFactor * 2;
vertices[1].Position.z = 0.0f;
vertices[1].UV.x = 1.0f;
vertices[1].UV.y = cinematicFactor;
vertices[1].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[2].Position.x = 1.0f;
vertices[2].Position.y = -(1.0f - cinematicFactor * 2);
vertices[2].Position.z = 0.0f;
vertices[2].UV.x = 1.0f;
vertices[2].UV.y = 1.0f - cinematicFactor;
vertices[2].Color = Vector4(color.x, color.y, color.z, 1.0f);
vertices[3].Position.x = -1.0f;
vertices[3].Position.y = -(1.0f - cinematicFactor * 2);
vertices[3].Position.z = 0.0f;
vertices[3].UV.x = 0.0f;
vertices[3].UV.y = 1.0f - cinematicFactor;
vertices[3].Color = Vector4(color.x, color.y, color.z, 1.0f);
}
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsFullScreenQuad.Get(), NULL, 0);
m_context->PSSetShader(m_psFullScreenQuad.Get(), NULL, 0);
m_context->PSSetShaderResources(0, 1, &texture);
ID3D11SamplerState *sampler = m_states->AnisotropicClamp();
m_context->PSSetSamplers(0, 1, &sampler);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_primitiveBatch->Begin();
m_primitiveBatch->DrawQuad(vertices[0], vertices[1], vertices[2], vertices[3]);
m_primitiveBatch->End();
}
2020-10-11 16:47:36 +02:00
void Renderer11::drawRopes(RenderView& view)
{
for (int n = 0; n < Ropes.size(); n++)
{
ROPE_STRUCT* rope = &Ropes[n];
if (rope->active)
{
Matrix world = Matrix::CreateTranslation(
rope->position.x,
rope->position.y,
rope->position.z
);
Vector3 absolute[24];
for (int n = 0; n < ROPE_SEGMENTS; n++)
{
PHD_VECTOR* s = &rope->meshSegment[n];
Vector3 t;
Vector3 output;
t.x = s->x >> FP_SHIFT;
t.y = s->y >> FP_SHIFT;
t.z = s->z >> FP_SHIFT;
output = Vector3::Transform(t, world);
Vector3 absolutePosition = Vector3(output.x, output.y, output.z);
absolute[n] = absolutePosition;
}
for (int n = 0; n < ROPE_SEGMENTS - 1; n++)
{
addLine3D(absolute[n], absolute[n + 1], Vector4::One);
}
}
}
}
2021-09-14 19:53:09 +03:00
void Renderer11::drawLines2D()
{
m_context->RSSetState(m_states->CullNone());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthRead(), 0);
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsSolid.Get(), NULL, 0);
m_context->PSSetShader(m_psSolid.Get(), NULL, 0);
Matrix world = Matrix::CreateOrthographicOffCenter(0, ScreenWidth, ScreenHeight, 0, m_viewport.MinDepth, m_viewport.MaxDepth);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_primitiveBatch->Begin();
for (int i = 0; i < m_lines2DToDraw.size(); i++)
{
RendererLine2D *line = m_lines2DToDraw[i];
RendererVertex v1;
v1.Position.x = line->Vertices[0].x;
v1.Position.y = line->Vertices[0].y;
v1.Position.z = 1.0f;
v1.Color.x = line->Color.x / 255.0f;
v1.Color.y = line->Color.y / 255.0f;
v1.Color.z = line->Color.z / 255.0f;
v1.Color.w = line->Color.w / 255.0f;
RendererVertex v2;
v2.Position.x = line->Vertices[1].x;
v2.Position.y = line->Vertices[1].y;
v2.Position.z = 1.0f;
v2.Color.x = line->Color.x / 255.0f;
v2.Color.y = line->Color.y / 255.0f;
v2.Color.z = line->Color.z / 255.0f;
v2.Color.w = line->Color.w / 255.0f;
v1.Position = Vector3::Transform(v1.Position, world);
v2.Position = Vector3::Transform(v2.Position, world);
v1.Position.z = 0.5f;
v2.Position.z = 0.5f;
m_primitiveBatch->DrawLine(v1, v2);
}
m_primitiveBatch->End();
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
}
2021-09-14 19:53:09 +03:00
void Renderer11::drawRects2D()
{
m_context->VSSetShader(m_vsSolid.Get(), NULL, 0);
m_context->PSSetShader(m_psSolid.Get(), NULL, 0);
m_context->RSSetState(m_states->CullNone());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthRead(), 0);
float factorW = ScreenWidth / 800.0f;
float factorH = ScreenHeight / 600.0f;
int shiftW = 4 * factorW;
int shiftH = 4 * factorH;
m_spriteBatch->Begin(SpriteSortMode_BackToFront, m_states->AlphaBlend(), NULL, m_states->DepthRead());
for (int i = 0; i < m_rects2DToDraw.size(); i++)
{
auto rawRect = m_rects2DToDraw[i]->Rectangle;
auto color = m_rects2DToDraw[i]->Color / 255.0f;
RECT rect;
rect.top = rawRect.top * factorH;
rect.left = rawRect.left * factorW;
rect.bottom = (rawRect.top + rawRect.bottom) * factorH;
rect.right = (rawRect.left + rawRect.right) * factorW;
m_spriteBatch->Draw(m_whiteTexture.ShaderResourceView.Get(), rect, color);
auto r = m_rects2DToDraw[i]->Color.x * 0.5f;
auto g = m_rects2DToDraw[i]->Color.y * 0.5f;
auto b = m_rects2DToDraw[i]->Color.z * 0.5f;
auto a = m_rects2DToDraw[i]->Color.w;
addLine2D(rect.left + shiftW, rect.top + shiftH, rect.right - shiftW, rect.top + shiftH, r, g, b, a);
addLine2D(rect.right - shiftW, rect.top + shiftH, rect.right - shiftW, rect.bottom - shiftH, r, g, b, a);
addLine2D(rect.left + shiftW, rect.bottom - shiftH, rect.right - shiftW, rect.bottom - shiftH, r, g, b, a);
addLine2D(rect.left + shiftW, rect.top + shiftH, rect.left + shiftW, rect.bottom - shiftH, r, g, b, a);
}
m_spriteBatch->End();
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
}
2020-10-11 16:47:36 +02:00
void Renderer11::drawSpiders(RenderView& view)
2020-08-09 15:25:56 +02:00
{
/*XMMATRIX world;
UINT cPasses = 1;
if (Objects[ID_SPIDERS_EMITTER].loaded)
{
2020-07-07 07:32:33 +02:00
OBJECT_INFO* obj = &Objects[ID_SPIDERS_EMITTER];
RendererObject* moveableObj = m_moveableObjects[ID_SPIDERS_EMITTER].get();
short* meshPtr = Meshes[Objects[ID_SPIDERS_EMITTER].meshIndex + ((Wibble >> 2) & 2)];
RendererMesh* mesh = m_meshPointersToMesh[meshPtr];
RendererBucket* bucket = mesh->GetBucket(bucketIndex);
if (bucket->NumVertices == 0)
return true;
setGpuStateForBucket(bucketIndex);
m_device->SetStreamSource(0, bucket->GetVertexBuffer(), 0, sizeof(RendererVertex));
m_device->SetIndices(bucket->GetIndexBuffer());
LPD3DXEFFECT effect;
if (pass == RENDERER_PASS_SHADOW_MAP)
effect = m_shaderDepth->GetEffect();
else if (pass == RENDERER_PASS_RECONSTRUCT_DEPTH)
effect = m_shaderReconstructZBuffer->GetEffect();
else if (pass == RENDERER_PASS_GBUFFER)
effect = m_shaderFillGBuffer->GetEffect();
else
effect = m_shaderTransparent->GetEffect();
effect->SetBool(effect->GetParameterByName(NULL, "UseSkinning"), false);
effect->SetInt(effect->GetParameterByName(NULL, "ModelType"), MODEL_TYPE_MOVEABLE);
if (bucketIndex == RENDERER_BUCKET_SOLID || bucketIndex == RENDERER_BUCKET_SOLID_DS)
effect->SetInt(effect->GetParameterByName(NULL, "BlendMode"), BLENDMODE_OPAQUE);
else
effect->SetInt(effect->GetParameterByName(NULL, "BlendMode"), BLENDMODE_ALPHATEST);
for (int i = 0; i < NUM_SPIDERS; i++)
{
SPIDER_STRUCT* spider = &Spiders[i];
if (spider->on)
{
XMMATRIXTranslation(&m_tempTranslation, spider->pos.xPos, spider->pos.yPos, spider->pos.zPos);
XMMATRIXRotationYawPitchRoll(&m_tempRotation, spider->pos.yRot, spider->pos.xRot, spider->pos.zRot);
XMMATRIXMultiply(&m_tempWorld, &m_tempRotation, &m_tempTranslation);
effect->SetMatrix(effect->GetParameterByName(NULL, "World"), &m_tempWorld);
effect->SetVector(effect->GetParameterByName(NULL, "AmbientLight"), &m_rooms[spider->roomNumber]->AmbientLight);
for (int iPass = 0; iPass < cPasses; iPass++)
{
effect->BeginPass(iPass);
effect->CommitChanges();
2020-07-03 07:05:33 +02:00
drawPrimitives(D3DPT_TRIANGLELIST, 0, 0, bucket->NumVertices, 0, bucket->Indices.size() / 3);
effect->EndPass();
}
}
}
}*/
}
2021-10-02 21:38:24 +03:00
void Renderer11::drawRats(RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
if (Objects[ID_RATS_EMITTER].loaded)
{
2020-07-07 07:32:33 +02:00
OBJECT_INFO *obj = &Objects[ID_RATS_EMITTER];
RendererObject &moveableObj = *m_moveableObjects[ID_RATS_EMITTER];
for (int m = 0; m < 32; m++)
memcpy(&m_stItem.BonesMatrices[m], &Matrix::Identity, sizeof(Matrix));
for (int i = 0; i < NUM_RATS; i++)
{
RAT_STRUCT *rat = &Rats[i];
if (rat->on)
{
RendererMesh *mesh = getMesh(Objects[ID_RATS_EMITTER].meshIndex + (rand() % 8));
Matrix translation = Matrix::CreateTranslation(rat->pos.xPos, rat->pos.yPos, rat->pos.zPos);
2021-10-02 21:38:24 +03:00
Matrix rotation = Matrix::CreateFromYawPitchRoll(TO_RAD(rat->pos.yRot), TO_RAD(rat->pos.xRot), TO_RAD(rat->pos.zRot));
Matrix world = rotation * translation;
m_stItem.World = world;
m_stItem.Position = Vector4(rat->pos.xPos, rat->pos.yPos, rat->pos.zPos, 1.0f);
m_stItem.AmbientLight = m_rooms[rat->roomNumber].AmbientLight;
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2021-10-02 21:38:24 +03:00
for (int b = 0; b < mesh->buckets.size(); b++)
{
RendererBucket* bucket = &mesh->buckets[b];
2021-10-02 21:38:24 +03:00
if (bucket->Vertices.size() == 0)
continue;
2021-10-02 21:38:24 +03:00
m_context->DrawIndexed(bucket->Indices.size(), bucket->StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
2021-10-02 21:38:24 +03:00
void Renderer11::drawBats(RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
if (Objects[ID_BATS_EMITTER].loaded)
{
2020-07-07 07:32:33 +02:00
OBJECT_INFO *obj = &Objects[ID_BATS_EMITTER];
RendererObject &moveableObj = *m_moveableObjects[ID_BATS_EMITTER];
RendererMesh *mesh = getMesh(Objects[ID_BATS_EMITTER].meshIndex + (-GlobalCounter & 3));
for (int m = 0; m < 32; m++)
memcpy(&m_stItem.BonesMatrices[m], &Matrix::Identity, sizeof(Matrix));
2021-10-02 21:38:24 +03:00
for (int b = 0; b < mesh->buckets.size(); b++)
{
2021-10-02 21:38:24 +03:00
RendererBucket* bucket = &mesh->buckets[b];
if (bucket->Vertices.size() == 0)
continue;
for (int i = 0; i < NUM_BATS; i++)
{
BAT_STRUCT *bat = &Bats[i];
if (bat->on)
{
Matrix translation = Matrix::CreateTranslation(bat->pos.xPos, bat->pos.yPos, bat->pos.zPos);
2021-10-02 21:38:24 +03:00
Matrix rotation = Matrix::CreateFromYawPitchRoll(TO_RAD(bat->pos.yRot), TO_RAD(bat->pos.xRot), TO_RAD(bat->pos.zRot));
Matrix world = rotation * translation;
m_stItem.World = world;
m_stItem.Position = Vector4(bat->pos.xPos, bat->pos.yPos, bat->pos.zPos, 1.0f);
m_stItem.AmbientLight = m_rooms[bat->roomNumber].AmbientLight;
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-07-03 07:05:33 +02:00
m_context->DrawIndexed(bucket->Indices.size(), bucket->StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
2021-08-23 05:49:47 +02:00
void Renderer11::drawScarabs(RenderView& view) {
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
if (Objects[ID_LITTLE_BEETLE].loaded)
{
OBJECT_INFO* obj = &Objects[ID_LITTLE_BEETLE];
RendererObject& moveableObj = *m_moveableObjects[ID_LITTLE_BEETLE];
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
for (int m = 0; m < 32; m++)
memcpy(&m_stItem.BonesMatrices[m], &Matrix::Identity, sizeof(Matrix));
2020-08-06 06:51:32 +02:00
for (int i = 0; i < TEN::Entities::TR4::NUM_SCARABS; i++)
2021-08-23 05:49:47 +02:00
{
SCARAB_STRUCT* beetle = &TEN::Entities::TR4::Scarabs[i];
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
if (beetle->on)
{
RendererMesh* mesh = getMesh(Objects[ID_LITTLE_BEETLE].meshIndex + ((Wibble >> 2) % 2));
Matrix translation = Matrix::CreateTranslation(beetle->pos.xPos, beetle->pos.yPos, beetle->pos.zPos);
Matrix rotation = Matrix::CreateFromYawPitchRoll(TO_RAD(beetle->pos.yRot), TO_RAD(beetle->pos.xRot), TO_RAD(beetle->pos.zRot));
Matrix world = rotation * translation;
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
m_stItem.World = world;
m_stItem.Position = Vector4(beetle->pos.xPos, beetle->pos.yPos, beetle->pos.zPos, 1.0f);
m_stItem.AmbientLight = m_rooms[beetle->roomNumber].AmbientLight;
2021-08-23 05:49:47 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-08-06 06:51:32 +02:00
2021-08-22 06:08:02 +02:00
for (int b = 0; b < mesh->buckets.size(); b++)
2021-08-23 05:49:47 +02:00
{
RendererBucket* bucket = &mesh->buckets[b];
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
if (bucket->Vertices.size() == 0)
continue;
2020-08-06 06:51:32 +02:00
2021-08-23 05:49:47 +02:00
m_context->DrawIndexed(bucket->Indices.size(), bucket->StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
2020-08-06 06:51:32 +02:00
void Renderer11::drawLocusts(RenderView& view) {
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
if (Objects[ID_LOCUSTS].loaded)
{
OBJECT_INFO* obj = &Objects[ID_LOCUSTS];
RendererObject& moveableObj = *m_moveableObjects[ID_LOCUSTS];
for (int m = 0; m < 32; m++)
memcpy(&m_stItem.BonesMatrices[m], &Matrix::Identity, sizeof(Matrix));
2021-08-28 06:37:22 +02:00
for (int i = 0; i < TEN::Entities::TR4::MAX_LOCUSTS; i++)
{
2021-08-28 06:37:22 +02:00
LOCUST_INFO* locust = &TEN::Entities::TR4::Locusts[i];
if (locust->on)
{
RendererMesh* mesh = getMesh(Objects[ID_LOCUSTS].meshIndex + (-locust->counter & 3));
Matrix translation = Matrix::CreateTranslation(locust->pos.xPos, locust->pos.yPos, locust->pos.zPos);
Matrix rotation = Matrix::CreateFromYawPitchRoll(locust->pos.yRot, locust->pos.xRot, locust->pos.zRot);
Matrix world = rotation * translation;
m_stItem.World = world;
m_stItem.Position = Vector4(locust->pos.xPos, locust->pos.yPos, locust->pos.zPos, 1.0f);
m_stItem.AmbientLight = m_rooms[locust->roomNumber].AmbientLight;
m_cbItem.updateData(m_stItem,m_context.Get());
for (int b = 0; b < mesh->buckets.size(); b++)
{
RendererBucket* bucket = &mesh->buckets[b];
if (bucket->Vertices.size() == 0)
continue;
m_context->DrawIndexed(bucket->Indices.size(), bucket->StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
2020-08-06 06:51:32 +02:00
void Renderer11::drawLines3D(RenderView& view) {
m_context->RSSetState(m_states->CullNone());
m_context->OMSetBlendState(m_states->Additive(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthRead(), 0);
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsSolid.Get(), NULL, 0);
m_context->PSSetShader(m_psSolid.Get(), NULL, 0);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_LINELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_primitiveBatch->Begin();
for (int i = 0; i < m_lines3DToDraw.size(); i++)
{
RendererLine3D *line = m_lines3DToDraw[i];
RendererVertex v1;
v1.Position = line->start;
v1.Color = line->color;
RendererVertex v2;
v2.Position = line->end;
v2.Color = line->color;
m_primitiveBatch->DrawLine(v1, v2);
}
m_primitiveBatch->End();
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
}
2020-08-09 15:25:56 +02:00
void Renderer11::addLine3D(Vector3 start, Vector3 end, Vector4 color)
{
if (m_nextLine3D >= MAX_LINES_3D)
return;
RendererLine3D *line = &m_lines3DBuffer[m_nextLine3D++];
line->start = start;
line->end = end;
line->color = color;
m_lines3DToDraw.push_back(line);
}
void Renderer11::addSphere(Vector3 center, float radius, Vector4 color)
{
2021-10-09 05:01:39 +03:00
constexpr auto subdivisions = 10;
constexpr auto steps = 6;
constexpr auto step = PI / steps;
2021-10-09 05:01:39 +03:00
std::array<Vector3, 3> prevPoint;
2021-10-09 05:01:39 +03:00
for (int s = 0; s < steps; s++)
{
auto x = sin(step * (float)s) * radius;
auto z = cos(step * (float)s) * radius;
float currAngle = 0.0f;
2021-10-09 05:01:39 +03:00
for (int i = 0; i < subdivisions; i++)
{
2021-10-09 05:01:39 +03:00
std::array<Vector3, 3> point =
{
center + Vector3(sin(currAngle) * abs(x), z, cos(currAngle) * abs(x)),
center + Vector3(cos(currAngle) * abs(x), sin(currAngle) * abs(x), z),
center + Vector3(z, sin(currAngle) * abs(x), cos(currAngle) * abs(x))
};
2021-10-09 05:01:39 +03:00
if (i > 0)
for (int p = 0; p < 3; p++)
addLine3D(prevPoint[p], point[p], color);
prevPoint = point;
currAngle += ((PI * 2) / (subdivisions - 1));
}
}
}
void Renderer11::addDebugSphere(Vector3 center, float radius, Vector4 color, RENDERER_DEBUG_PAGE page)
{
#ifdef _DEBUG
if (m_numDebugPage != page)
return;
addSphere(center, radius, color);
#endif _DEBUG
}
2021-08-06 12:18:28 +03:00
void Renderer11::addBox(Vector3* corners, Vector4 color)
{
if (m_nextLine3D >= MAX_LINES_3D)
return;
for (int i = 0; i < 12; i++)
{
auto line = &m_lines3DBuffer[m_nextLine3D++];
switch (i)
{
case 0: line->start = corners[0]; line->end = corners[1]; break;
case 1: line->start = corners[1]; line->end = corners[2]; break;
case 2: line->start = corners[2]; line->end = corners[3]; break;
case 3: line->start = corners[3]; line->end = corners[0]; break;
case 4: line->start = corners[4]; line->end = corners[5]; break;
case 5: line->start = corners[5]; line->end = corners[6]; break;
case 6: line->start = corners[6]; line->end = corners[7]; break;
case 7: line->start = corners[7]; line->end = corners[4]; break;
case 8: line->start = corners[0]; line->end = corners[4]; break;
case 9: line->start = corners[1]; line->end = corners[5]; break;
case 10: line->start = corners[2]; line->end = corners[6]; break;
case 11: line->start = corners[3]; line->end = corners[7]; break;
}
line->color = color;
m_lines3DToDraw.push_back(line);
}
}
void Renderer11::addBox(Vector3 min, Vector3 max, Vector4 color)
{
if (m_nextLine3D >= MAX_LINES_3D)
return;
for (int i = 0; i < 12; i++)
{
auto line = &m_lines3DBuffer[m_nextLine3D++];
switch (i)
{
case 0: line->start = Vector3(min.x, min.y, min.z); line->end = Vector3(min.x, min.y, max.z); break;
case 1: line->start = Vector3(min.x, min.y, max.z); line->end = Vector3(max.x, min.y, max.z); break;
case 2: line->start = Vector3(max.x, min.y, max.z); line->end = Vector3(max.x, min.y, min.z); break;
case 3: line->start = Vector3(max.x, min.y, min.z); line->end = Vector3(min.x, min.y, min.z); break;
case 4: line->start = Vector3(min.x, max.y, min.z); line->end = Vector3(min.x, max.y, max.z); break;
case 5: line->start = Vector3(min.x, max.y, max.z); line->end = Vector3(max.x, max.y, max.z); break;
case 6: line->start = Vector3(max.x, max.y, max.z); line->end = Vector3(max.x, max.y, min.z); break;
case 7: line->start = Vector3(max.x, max.y, min.z); line->end = Vector3(min.x, max.y, min.z); break;
case 8: line->start = Vector3(min.x, min.y, min.z); line->end = Vector3(min.x, max.y, min.z); break;
case 9: line->start = Vector3(min.x, min.y, max.z); line->end = Vector3(min.x, max.y, max.z); break;
case 10: line->start = Vector3(max.x, min.y, max.z); line->end = Vector3(max.x, max.y, max.z); break;
case 11: line->start = Vector3(max.x, min.y, min.z); line->end = Vector3(max.x, max.y, min.z); break;
}
line->color = color;
m_lines3DToDraw.push_back(line);
}
}
2021-08-06 12:18:28 +03:00
void Renderer11::addDebugBox(BoundingOrientedBox box, Vector4 color, RENDERER_DEBUG_PAGE page)
{
#ifdef _DEBUG
if (m_numDebugPage != page)
return;
2021-08-06 12:18:28 +03:00
Vector3 corners[8];
box.GetCorners(corners);
addBox(corners, color);
#endif _DEBUG
}
2021-08-06 12:21:16 +03:00
void Renderer11::addDebugBox(Vector3 min, Vector3 max, Vector4 color, RENDERER_DEBUG_PAGE page)
{
#ifdef _DEBUG
2021-08-06 12:21:16 +03:00
if (m_numDebugPage != page)
return;
addBox(min, max, color);
#endif _DEBUG
2021-08-06 12:21:16 +03:00
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderLoadingScreen(std::wstring& fileName)
{
return;
/*
Texture2D texture = Texture2D(m_device, fileName);
m_fadeStatus = RENDERER_FADE_STATUS::FADE_IN;
m_fadeFactor = 0.0f;
while (true) {
if (m_fadeStatus == RENDERER_FADE_STATUS::FADE_IN && m_fadeFactor < 1.0f)
m_fadeFactor += FADE_FACTOR;
if (m_fadeStatus == RENDERER_FADE_STATUS::FADE_OUT && m_fadeFactor > 0.0f)
m_fadeFactor -= FADE_FACTOR;
// Set basic render states
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
// Clear screen
m_context->ClearRenderTargetView(m_backBufferRTV, Colors::Black);
m_context->ClearDepthStencilView(m_depthStencilView, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
// Bind the back buffer
m_context->OMSetRenderTargets(1, &m_backBufferRTV, m_depthStencilView);
m_context->RSSetViewports(1, &m_viewport);
// Draw the full screen background
drawFullScreenQuad(texture.ShaderResourceView.GetAddressOf(), Vector3(m_fadeFactor, m_fadeFactor, m_fadeFactor), false);
m_context->ClearDepthStencilView(m_depthStencilView, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
m_swapChain->Present(0, 0);
m_context->ClearState();
if (m_fadeStatus == RENDERER_FADE_STATUS::FADE_IN && m_fadeFactor >= 1.0f) {
m_fadeStatus = RENDERER_FADE_STATUS::NO_FADE;
m_fadeFactor = 1.0f;
}
if (m_fadeStatus == RENDERER_FADE_STATUS::NO_FADE && m_progress == 100) {
m_fadeStatus = RENDERER_FADE_STATUS::FADE_OUT;
m_fadeFactor = 1.0f;
}
if (m_fadeStatus == RENDERER_FADE_STATUS::FADE_OUT && m_fadeFactor <= 0.0f) {
break;
}
}
*/
}
2020-08-09 15:25:56 +02:00
void Renderer11::addDynamicLight(int x, int y, int z, short falloff, byte r, byte g, byte b)
{
if (m_nextLight >= MAX_LIGHTS)
return;
RendererLight *dynamicLight = &m_lights[m_nextLight++];
if (falloff >= 8)
{
dynamicLight->Color = Vector3(r / 255.0f, g / 255.0f, b / 255.0f);
}
else
{
r = (r * falloff) >> 3;
g = (g * falloff) >> 3;
b = (b * falloff) >> 3;
dynamicLight->Color = Vector3(r / 255.0f, g / 255.0f, b / 255.0f);
}
dynamicLight->Position = Vector3(float(x), float(y), float(z));
dynamicLight->Out = falloff * 256.0f;
dynamicLight->Type = LIGHT_TYPES::LIGHT_TYPE_POINT;
dynamicLight->Intensity = 2.0f;
m_dynamicLights.push_back(dynamicLight);
}
2020-08-09 15:25:56 +02:00
void Renderer11::clearDynamicLights()
{
m_dynamicLights.clear();
}
2020-08-09 15:25:56 +02:00
void Renderer11::drawFullScreenImage(ID3D11ShaderResourceView* texture, float fade, ID3D11RenderTargetView* target, ID3D11DepthStencilView* depthTarget)
{
// Reset GPU state
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
m_context->OMSetRenderTargets(1, &target, depthTarget);
m_context->RSSetViewports(1, &m_viewport);
drawFullScreenQuad(texture, Vector3(fade, fade, fade), false);
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderInventory()
{
m_context->ClearDepthStencilView(m_depthStencilView, D3D11_CLEAR_STENCIL | D3D11_CLEAR_DEPTH, 1.0f, 0);
m_context->ClearRenderTargetView(m_backBufferRTV, Colors::Black);
2020-08-09 15:25:56 +02:00
renderInventoryScene(m_backBufferRTV, m_depthStencilView, m_dumpScreenRenderTarget.ShaderResourceView.Get());
m_swapChain->Present(0, 0);
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderTitle()
{
m_context->ClearDepthStencilView(m_depthStencilView, D3D11_CLEAR_STENCIL | D3D11_CLEAR_DEPTH, 1.0f, 0);
m_context->ClearRenderTargetView(m_backBufferRTV, Colors::Black);
2020-08-09 15:25:56 +02:00
renderScene(m_backBufferRTV, m_depthStencilView, gameCamera);
m_context->ClearDepthStencilView(m_depthStencilView, D3D11_CLEAR_STENCIL | D3D11_CLEAR_DEPTH, 1.0f, 0);
2020-08-09 15:25:56 +02:00
renderInventoryScene(m_backBufferRTV, m_depthStencilView, nullptr);
2021-01-19 16:49:40 +01:00
#if _DEBUG
2020-08-18 20:26:24 +02:00
drawString(0, 0, commit.c_str(), D3DCOLOR_ARGB(255, 255,255, 255), 0);
drawAllStrings();
#else
drawAllStrings();
2021-01-19 16:49:40 +01:00
#endif
m_swapChain->Present(0, 0);
}
void Renderer11::clearScene()
{
resetAnimations();
// Clear dynamic lights
ClearFires();
clearDynamicLights();
clearSceneItems();
m_strings.clear();
m_currentCausticsFrame++;
m_currentCausticsFrame %= 32;
2021-12-08 06:59:01 +01:00
calculateFrameRate();
}
void Renderer11::drawDebugInfo()
{
if (CurrentLevel != 0)
{
m_currentY = 60;
ROOM_INFO* r = &g_Level.Rooms[LaraItem->roomNumber];
switch (m_numDebugPage)
{
case RENDERER_DEBUG_PAGE::NO_PAGE:
break;
case RENDERER_DEBUG_PAGE::RENDERER_STATS:
2021-12-08 06:59:01 +01:00
printDebugMessage("Fps: %3.2f", m_fps);
printDebugMessage("Update time: %d", m_timeUpdate);
printDebugMessage("Frame time: %d", m_timeFrame);
printDebugMessage("Total draw calls: %d", m_numDrawCalls);
printDebugMessage("Transparent faces draw calls: %d", m_numTransparentDrawCalls);
printDebugMessage(" For rooms: %d", m_numRoomsTransparentDrawCalls);
printDebugMessage(" For moveables: %d", m_numMoveablesTransparentDrawCalls);
printDebugMessage(" For statics: %d", m_numStaticsTransparentDrawCalls);
printDebugMessage(" For sprites: %d", m_numSpritesTransparentDrawCalls);
printDebugMessage("Biggest room's index buffer: %d", m_biggestRoomIndexBuffer);
break;
case RENDERER_DEBUG_PAGE::DIMENSION_STATS:
printDebugMessage("Lara.location: %d %d", LaraItem->location.roomNumber, LaraItem->location.yNumber);
printDebugMessage("Lara.roomNumber: %d", LaraItem->roomNumber);
printDebugMessage("LaraItem.boxNumber: %d",/* canJump: %d, canLongJump: %d, canMonkey: %d,*/ LaraItem->boxNumber);
printDebugMessage("Lara.pos: %d %d %d", LaraItem->pos.xPos, LaraItem->pos.yPos, LaraItem->pos.zPos);
printDebugMessage("Lara.rot: %d %d %d", LaraItem->pos.xRot, LaraItem->pos.yRot, LaraItem->pos.zRot);
2021-11-08 17:28:04 +03:00
printDebugMessage("Room: %d %d %d %d", r->x, r->z, r->x + r->xSize * WALL_SIZE, r->z + r->zSize * WALL_SIZE);
printDebugMessage("Room.y, minFloor, maxCeiling: %d %d %d ", r->y, r->minfloor, r->maxceiling);
printDebugMessage("Camera.pos: %d %d %d", Camera.pos.x, Camera.pos.y, Camera.pos.z);
printDebugMessage("Camera.target: %d %d %d", Camera.target.x, Camera.target.y, Camera.target.z);
break;
case RENDERER_DEBUG_PAGE::LARA_STATS:
printDebugMessage("Lara.animNumber: %d", LaraItem->animNumber);
printDebugMessage("Lara.frameNumber: %d", LaraItem->frameNumber);
printDebugMessage("Lara.currentAnimState: %d", LaraItem->currentAnimState);
printDebugMessage("Lara.requiredAnimState: %d", LaraItem->requiredAnimState);
printDebugMessage("Lara.goalAnimState: %d", LaraItem->goalAnimState);
printDebugMessage("Lara.weaponItem: %d", Lara.weaponItem);
printDebugMessage("Lara.gunType: %d", Lara.gunType);
printDebugMessage("Lara.gunStatus: %d", Lara.gunStatus);
printDebugMessage("Lara.speed, fallspeed: %d %d", LaraItem->speed, LaraItem->fallspeed);
printDebugMessage("Lara.climbStatus: %d", Lara.climbStatus);
printDebugMessage("Lara.waterSurfaceDist: %d", Lara.waterSurfaceDist);
break;
case RENDERER_DEBUG_PAGE::LOGIC_STATS:
printDebugMessage("target hitPoints: %d", Lara.target ? Lara.target->hitPoints : NULL);
2021-08-30 18:03:21 +03:00
printDebugMessage("CollidedVolume: %d", TEN::Control::Volumes::CurrentCollidedVolume);
break;
}
}
}
void Renderer11::switchDebugPage(bool back)
{
auto index = (int)m_numDebugPage;
if (back)
--index;
else
++index;
if (index < RENDERER_DEBUG_PAGE::NO_PAGE)
index = 4;
else if (index > RENDERER_DEBUG_PAGE::LOGIC_STATS)
index = 0;
m_numDebugPage = (RENDERER_DEBUG_PAGE)index;
}
void Renderer11::drawTransparentFaces(RenderView& view)
{
std::for_each(std::execution::par_unseq,
view.roomsToDraw.begin(),
view.roomsToDraw.end(),
[](RendererRoom* room) {
std::sort(
room->TransparentFacesToDraw.begin(),
room->TransparentFacesToDraw.end(),
[](RendererTransparentFace& a, RendererTransparentFace& b) {
int aDistance = std::floor(a.distance / 256);
int bDistance = std::floor(b.distance / 256);
if (aDistance == bDistance)
return a.info.texture < b.info.texture;
else
return aDistance < bDistance;
}
);
}
);
for (int r = view.roomsToDraw.size() - 1; r >= 0; r--)
{
RendererRoom& room = *view.roomsToDraw[r];
int size = room.TransparentFacesToDraw.size();
int currentBlendMode = -1;
int altas = -1;
int lastType = 0;
std::vector<RendererVertex> vertices;
//vertices.reserve(50000);
m_transparentFacesVertices.clear();
m_transparentFacesIndices.clear();
RendererTransparentFaceType oldType = RendererTransparentFaceType::TRANSPARENT_FACE_NONE;
RendererTransparentFaceInfo* oldInfo = nullptr;
bool outputPolygons = false;
for (auto& face : room.TransparentFacesToDraw)
{
if (oldInfo != nullptr)
{
// Check if it's time to output polygons
if (oldType != face.type)
{
outputPolygons = true;
}
else
{
// If same type, check additional conditions
if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_ROOM &&
(oldInfo->room != face.info.room
|| oldInfo->texture != face.info.texture
|| oldInfo->animated != face.info.animated
|| oldInfo->blendMode != face.info.blendMode
|| m_transparentFacesIndices.size() + (face.info.polygon->shape ? 3 : 6) > MAX_TRANSPARENT_VERTICES))
{
outputPolygons = true;
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_MOVEABLE &&
(oldInfo->blendMode != face.info.blendMode
|| oldInfo->item->ItemNumber != face.info.item->ItemNumber
|| m_transparentFacesIndices.size() + (face.info.polygon->shape ? 3 : 6) > MAX_TRANSPARENT_VERTICES))
{
outputPolygons = true;
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_STATIC &&
(oldInfo->blendMode != face.info.blendMode
|| oldInfo->staticMesh != face.info.staticMesh
|| m_transparentFacesIndices.size() + (face.info.polygon->shape ? 3 : 6) > MAX_TRANSPARENT_VERTICES))
{
outputPolygons = true;
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_SPRITE &&
(oldInfo->blendMode != face.info.blendMode
|| oldInfo->sprite->Type != face.info.sprite->Type
|| oldInfo->sprite->color != face.info.sprite->color
|| oldInfo->sprite->Sprite != face.info.sprite->Sprite
|| m_transparentFacesIndices.size() + 6 > MAX_TRANSPARENT_VERTICES))
{
outputPolygons = true;
}
}
}
if (outputPolygons)
{
// Here we send polygons to the GPU for drawing and we clear the vertex buffer
if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_ROOM)
{
drawRoomsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_MOVEABLE)
{
drawItemsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_STATIC)
{
drawStaticsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_SPRITE)
{
drawSpritesTransparent(oldInfo, view);
}
outputPolygons = false;
m_transparentFacesVertices.clear();
m_transparentFacesIndices.clear();
}
oldInfo = &face.info;
oldType = face.type;
// Accumulate vertices in the buffer
if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_ROOM)
{
// For rooms, we already pass world coordinates, just copy vertices
int numVertices = (face.info.polygon->shape == 0 ? 6 : 3);
m_transparentFacesIndices.bulk_push_back(face.info.bucket->Indices.data(), face.info.polygon->baseIndex, numVertices);
/*int* srcData = face.info.bucket->Indices.data();
int* destData = m_transparentFacesIndices.data();
memcpy(destData + m_transparentFacesIndices.size(), srcData + face.info.polygon->baseIndex, sizeof(int) * numVertices);
m_numTransparentIndices += numVertices;*/
//for (int i = 0; i < numVertices; i++)
//{
// m_transparentFacesIndices.push_back(face.info.bucket->Indices[face.info.polygon->baseIndex + i]);
//}
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_MOVEABLE)
{
// For rooms, we already pass world coordinates, just copy vertices
int numVertices = (face.info.polygon->shape == 0 ? 6 : 3);
m_transparentFacesIndices.bulk_push_back(face.info.bucket->Indices.data(), face.info.polygon->baseIndex, numVertices);
/*int* srcData = face.info.bucket->Indices.data();
int* destData = m_transparentFacesIndices.data();
memcpy(destData + m_transparentFacesIndices.size(), srcData + face.info.polygon->baseIndex, sizeof(int) * numVertices);
m_numTransparentIndices += numVertices;*/
//for (int i = 0; i < numVertices; i++)
//{
// m_transparentFacesIndices.push_back(face.info.bucket->Indices[face.info.polygon->baseIndex + i]);
//}
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_STATIC)
{
// For rooms, we already pass world coordinates, just copy vertices
int numVertices = (face.info.polygon->shape == 0 ? 6 : 3);
m_transparentFacesIndices.bulk_push_back(face.info.bucket->Indices.data(), face.info.polygon->baseIndex, numVertices);
/*int* srcData = face.info.bucket->Indices.data();
int* destData = m_transparentFacesIndices.data();
memcpy(destData + m_transparentFacesIndices.size(), srcData + face.info.polygon->baseIndex, sizeof(int) * numVertices);
m_numTransparentIndices += numVertices;*/
//for (int i = 0; i < numVertices; i++)
//{
// m_transparentFacesIndices.push_back(face.info.bucket->Indices[face.info.polygon->baseIndex + i]);
//}
}
else if (face.type == RendererTransparentFaceType::TRANSPARENT_FACE_SPRITE)
{
// For sprites, we need to compute the corners of the quad and multiply
// by the world matrix that can be an identity (for 3D sprites) or
// a billboard matrix. We transform vertices on the CPU because
// CPUs nowadays are fast enough and we save draw calls, in fact
// each sprite would require a different world matrix and then
// we would fall in the case 1 poly = 1 draw call (worst case scenario).
// For the same reason, we store also color directly there and we simply
// pass a Vector4::One as color to the shader.
RendererSpriteToDraw* spr = face.info.sprite;
Vector3 p0t;
Vector3 p1t;
Vector3 p2t;
Vector3 p3t;
Vector2 uv0;
Vector2 uv1;
Vector2 uv2;
Vector2 uv3;
if (spr->Type == RENDERER_SPRITE_TYPE::SPRITE_TYPE_3D)
{
p0t = spr->vtx1;
p1t = spr->vtx2;
p2t = spr->vtx3;
p3t = spr->vtx4;
uv0 = spr->Sprite->UV[0];
uv1 = spr->Sprite->UV[1];
uv2 = spr->Sprite->UV[2];
uv3 = spr->Sprite->UV[3];
}
else
{
p0t = Vector3(-0.5, -0.5, 0);
p1t = Vector3(-0.5, 0.5, 0);
p2t = Vector3(0.5, -0.5, 0);
p3t = Vector3(0.5, 0.5, 0);
uv0 = Vector2(0, 0);
uv1 = Vector2(1, 0);
uv2 = Vector2(0, 1);
uv3 = Vector2(1, 1);
}
RendererVertex v0;
v0.Position = Vector3::Transform(p0t, face.info.world);
v0.UV = uv0;
v0.Color = spr->color;
RendererVertex v1;
v1.Position = Vector3::Transform(p1t, face.info.world);
v1.UV = uv1;
v1.Color = spr->color;
RendererVertex v2;
v2.Position = Vector3::Transform(p2t, face.info.world);
v2.UV = uv2;
v2.Color = spr->color;
RendererVertex v3;
v3.Position = Vector3::Transform(p3t, face.info.world);
v3.UV = uv3;
v3.Color = spr->color;
m_transparentFacesVertices.push_back(v0);
m_transparentFacesVertices.push_back(v1);
m_transparentFacesVertices.push_back(v3);
m_transparentFacesVertices.push_back(v2);
m_transparentFacesVertices.push_back(v3);
m_transparentFacesVertices.push_back(v1);
}
}
// Here we send polygons to the GPU for drawing and we clear the vertex buffer
if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_ROOM)
{
drawRoomsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_MOVEABLE)
{
drawItemsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_STATIC)
{
drawStaticsTransparent(oldInfo, view);
}
else if (oldType == RendererTransparentFaceType::TRANSPARENT_FACE_SPRITE)
{
drawSpritesTransparent(oldInfo, view);
}
}
}
void Renderer11::drawRoomsTransparent(RendererTransparentFaceInfo* info, RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
ROOM_INFO* nativeRoom = &g_Level.Rooms[info->room->RoomNumber];
// Set vertex buffer
//m_transparentFacesVertexBuffer.Update(m_context.Get(), m_transparentFacesVertices, 0, m_transparentFacesVertices.size());
m_context->IASetVertexBuffers(0, 1, m_transparentFacesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
// Set shaders
if (!info->animated)
{
m_context->VSSetShader(m_vsRooms.Get(), nullptr, 0);
}
else {
m_context->VSSetConstantBuffers(6, 1, m_cbAnimated.get());
m_context->VSSetShader(m_vsRooms_Anim.Get(), nullptr, 0);
}
m_context->PSSetShader(m_psRooms.Get(), NULL, 0);
// Set texture
int nmeshes = -Objects[ID_CAUSTICS_TEXTURES].nmeshes;
int meshIndex = Objects[ID_CAUSTICS_TEXTURES].meshIndex;
int causticsFrame = nmeshes ? meshIndex + ((GlobalCounter) % nmeshes) : 0;
bindTexture(TextureRegister::CausticsTexture, m_sprites[causticsFrame].Texture, SamplerStateType::None);
bindTexture(TextureRegister::ShadowMapTexture, &m_shadowMap, SamplerStateType::ShadowMap);
// Set shadow map data
if (shadowLight != NULL)
{
memcpy(&m_stShadowMap.Light, shadowLight, sizeof(ShaderLight));
m_stShadowMap.CastShadows = true;
//m_stShadowMap.ViewProjectionInverse = ViewProjection.Invert();
}
else
{
m_stShadowMap.CastShadows = false;
}
m_cbShadowMap.updateData(m_stShadowMap, m_context.Get());
m_context->VSSetConstantBuffers(4, 1, m_cbShadowMap.get());
m_context->PSSetConstantBuffers(4, 1, m_cbShadowMap.get());
m_stLights.NumLights = view.lightsToDraw.size();
for (int j = 0; j < view.lightsToDraw.size(); j++)
memcpy(&m_stLights.Lights[j], view.lightsToDraw[j], sizeof(ShaderLight));
m_cbLights.updateData(m_stLights, m_context.Get());
m_context->PSSetConstantBuffers(1, 1, m_cbLights.get());
m_stMisc.Caustics = (nativeRoom->flags & ENV_FLAG_WATER);
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
m_stRoom.AmbientColor = info->room->AmbientLight;
m_stRoom.Water = (nativeRoom->flags & ENV_FLAG_WATER) != 0 ? 1 : 0;
m_cbRoom.updateData(m_stRoom, m_context.Get());
m_context->VSSetConstantBuffers(5, 1, m_cbRoom.get());
m_context->PSSetConstantBuffers(5, 1, m_cbRoom.get());
// Draw geometry
if (info->animated) {
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_animatedTextures[info->texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_animatedTextures[info->texture]), SamplerStateType::None);
RendererAnimatedTextureSet& set = m_animatedTextureSets[info->texture];
m_stAnimated.NumFrames = set.NumTextures;
for (unsigned char i = 0; i < set.NumTextures; i++) {
auto& tex = set.Textures[i];
m_stAnimated.Textures[i].topLeft = set.Textures[i].UV[0];
m_stAnimated.Textures[i].topRight = set.Textures[i].UV[1];
m_stAnimated.Textures[i].bottomRight = set.Textures[i].UV[2];
m_stAnimated.Textures[i].bottomLeft = set.Textures[i].UV[3];
}
m_cbAnimated.updateData(m_stAnimated, m_context.Get());
}
else {
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_roomTextures[info->texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_roomTextures[info->texture]), SamplerStateType::None);
}
setBlendMode(info->blendMode);
m_biggestRoomIndexBuffer = std::fmaxf(m_biggestRoomIndexBuffer, m_transparentFacesIndices.size());
int drawnVertices = 0;
int size = m_transparentFacesIndices.size();
while (drawnVertices < size)
{
int count = (drawnVertices + TRANSPARENT_BUCKET_SIZE > size ? size - drawnVertices : TRANSPARENT_BUCKET_SIZE);
m_transparentFacesIndexBuffer.Update(m_context.Get(), m_transparentFacesIndices, drawnVertices, count);
m_context->IASetIndexBuffer(m_transparentFacesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
m_context->DrawIndexed(count, 0, 0);
m_numDrawCalls++;
m_numTransparentDrawCalls++;
m_numRoomsTransparentDrawCalls++;
drawnVertices += TRANSPARENT_BUCKET_SIZE;
}
}
void Renderer11::drawStaticsTransparent(RendererTransparentFaceInfo* info, RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_transparentFacesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
// Set shaders
m_context->VSSetShader(m_vsStatics.Get(), NULL, 0);
m_context->PSSetShader(m_psStatics.Get(), NULL, 0);
// Set texture
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_staticsTextures[info->bucket->texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_staticsTextures[info->bucket->texture]), SamplerStateType::None);
m_stStatic.World = Matrix::Identity;
m_stStatic.Position = Vector4::One;
m_stStatic.Color = Vector4::One;
m_cbStatic.updateData(m_stStatic, m_context.Get());
m_context->VSSetConstantBuffers(1, 1, m_cbStatic.get());
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->VSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(info->blendMode);
int drawnVertices = 0;
while (drawnVertices < m_transparentFacesVertices.size())
{
int count = (drawnVertices + TRANSPARENT_BUCKET_SIZE > m_transparentFacesVertices.size() ?
m_transparentFacesVertices.size() - drawnVertices : TRANSPARENT_BUCKET_SIZE);
m_transparentFacesVertexBuffer.Update(m_context.Get(), m_transparentFacesVertices, drawnVertices, count);
m_context->Draw(count, 0);
m_numDrawCalls++;
m_numTransparentDrawCalls++;
m_numStaticsTransparentDrawCalls++;
drawnVertices += TRANSPARENT_BUCKET_SIZE;
}
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderScene(ID3D11RenderTargetView* target, ID3D11DepthStencilView* depthTarget, RenderView& view)
{
m_timeUpdate = 0;
m_timeDraw = 0;
m_timeFrame = 0;
m_numDrawCalls = 0;
m_numTransparentDrawCalls = 0;
m_nextLight = 0;
m_nextSprite = 0;
m_nextLine3D = 0;
m_nextLine2D = 0;
2021-09-14 19:53:09 +03:00
m_nextRect2D = 0;
m_numRoomsTransparentDrawCalls = 0;
m_numMoveablesTransparentDrawCalls = 0;
m_numStaticsTransparentDrawCalls = 0;
m_numSpritesTransparentDrawCalls = 0;
m_biggestRoomIndexBuffer = 0;
m_transparentFaces.clear();
using ns = std::chrono::nanoseconds;
using get_time = std::chrono::steady_clock;
GameScriptLevel *level = g_GameFlow->GetLevel(CurrentLevel);
m_stLights.CameraPosition = view.camera.WorldPosition;
// Prepare the scene to draw
auto time1 = std::chrono::high_resolution_clock::now();
collectRooms(view, false);
2020-08-09 15:25:56 +02:00
updateLaraAnimations(false);
2020-07-24 07:03:36 +02:00
updateItemsAnimations(view);
updateEffects(view);
// Prepare the shadow map
if (g_Configuration.EnableShadows)
2020-08-09 15:25:56 +02:00
renderShadowMap(view);
// Setup Lara item
m_items[Lara.itemNumber].ItemNumber = Lara.itemNumber;
collectLightsForItem(LaraItem->roomNumber, &m_items[Lara.itemNumber], view);
auto time2 = std::chrono::high_resolution_clock::now();
m_timeUpdate = (std::chrono::duration_cast<ns>(time2 - time1)).count() / 1000000;
time1 = time2;
// Reset GPU state
setBlendMode(BLENDMODE_OPAQUE);
m_context->RSSetState(m_states->CullCounterClockwise());
// Bind and clear render target
m_context->ClearRenderTargetView(target, Colors::Black);
m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
m_context->OMSetRenderTargets(1, &target, depthTarget);
2020-07-01 16:49:53 +02:00
m_context->RSSetViewports(1, &view.viewport);
// The camera constant buffer contains matrices, camera position, fog values and other
// things that are shared for all shaders
CCameraMatrixBuffer cameraConstantBuffer;
view.fillConstantBuffer(cameraConstantBuffer);
cameraConstantBuffer.Frame = GlobalCounter;
cameraConstantBuffer.CameraUnderwater = g_Level.Rooms[cameraConstantBuffer.RoomNumber].flags & ENV_FLAG_WATER;
2021-11-23 09:10:07 +01:00
GameScriptFog fog = g_GameFlow->GetLevel(CurrentLevel)->Fog;
if (fog.Enabled)
{
cameraConstantBuffer.FogColor = Vector4(fog.R / 255.0f, fog.G / 255.0f, fog.B / 255.0f, 1.0f);
cameraConstantBuffer.FogMinDistance = fog.MinDistance;
cameraConstantBuffer.FogMaxDistance = fog.MaxDistance;
2021-11-23 09:10:07 +01:00
}
else
{
cameraConstantBuffer.FogMaxDistance = 0;
2021-11-23 09:10:07 +01:00
}
m_cbCameraMatrices.updateData(cameraConstantBuffer, m_context.Get());
m_context->VSSetConstantBuffers(0, 1, m_cbCameraMatrices.get());
// Draw the horizon and the sky
drawHorizonAndSky(view, depthTarget);
2021-11-23 09:10:07 +01:00
// Draw rooms and objects
drawRooms(view);
drawStatics(view);
drawLara(false, view);
drawItems(view);
drawEffects(view, false);
2020-10-11 16:47:36 +02:00
drawGunFlashes(view);
drawGunShells(view);
drawBaddieGunflashes(view);
drawDebris(view,false);
drawBats(view);
drawRats(view);
drawSpiders(view);
2021-08-22 06:08:02 +02:00
drawScarabs(view);
drawLocusts(view);
// Do special effects and weather
// NOTE: functions here just fill the sprites to draw array
2020-10-11 16:47:36 +02:00
drawFires(view);
drawSmokes(view);
drawSmokeParticles(view);
drawSimpleParticles(view);
drawSparkParticles(view);
drawExplosionParticles(view);
drawFootprints(view);
drawDripParticles(view);
drawBlood(view);
2021-11-10 16:21:41 +03:00
drawWeatherParticles(view);
2020-10-11 16:47:36 +02:00
drawSparks(view);
drawBubbles(view);
drawDrips(view);
drawRipples(view);
2021-11-23 02:59:16 +03:00
drawUnderwaterDust(view);
2020-10-11 16:47:36 +02:00
drawSplahes(view);
drawShockwaves(view);
drawLightning(view);
2020-10-11 16:47:36 +02:00
drawRopes(view);
// Here is where we actually output sprites
2020-10-11 16:47:36 +02:00
drawSprites(view);
drawLines3D(view);
// Here we sort transparent faces and draw them with a simplified shaders for alpha blending
drawTransparentFaces(view);
// Draw GUI stuff at the end
2021-09-14 19:53:09 +03:00
drawRects2D();
drawLines2D();
// Bars
int flash = FlashIt();
2021-11-10 16:11:36 +11:00
UpdateSprintBar();
UpdateHealthBar(LaraItem, flash);
UpdateAirBar(LaraItem, flash);
DrawAllPickups();
drawOverlays(view); // Draw binoculars or lasersight
time2 = std::chrono::high_resolution_clock::now();
m_timeFrame = (std::chrono::duration_cast<ns>(time2 - time1)).count() / 1000000;
time1 = time2;
drawDebugInfo();
drawAllStrings();
clearScene();
}
2020-08-09 15:25:56 +02:00
void Renderer11::renderSimpleScene(ID3D11RenderTargetView* target, ID3D11DepthStencilView* depthTarget, RenderView& view)
{
GameScriptLevel *level = g_GameFlow->GetLevel(CurrentLevel);
collectRooms(view, true);
// Draw shadow map
// Reset GPU state
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
m_context->RSSetState(m_states->CullCounterClockwise());
m_context->OMSetDepthStencilState(m_states->DepthDefault(), 0);
// Bind and clear render target
m_context->ClearRenderTargetView(target, Colors::Black);
m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
m_context->OMSetRenderTargets(1, &target, depthTarget);
2020-07-01 16:49:53 +02:00
m_context->RSSetViewports(1, &view.viewport);
// Opaque geometry
m_context->OMSetBlendState(m_states->Opaque(), NULL, 0xFFFFFFFF);
CCameraMatrixBuffer cameraConstantBuffer;
view.fillConstantBuffer(cameraConstantBuffer);
cameraConstantBuffer.CameraUnderwater = g_Level.Rooms[cameraConstantBuffer.RoomNumber].flags & ENV_FLAG_WATER;
2020-08-09 22:15:32 +02:00
m_cbCameraMatrices.updateData(cameraConstantBuffer, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(0, 1, m_cbCameraMatrices.get());
2021-09-09 13:30:49 +03:00
drawHorizonAndSky(view, depthTarget);
drawRooms(view);
}
2020-08-09 15:25:56 +02:00
void Renderer11::DumpGameScene()
{
renderScene(m_dumpScreenRenderTarget.RenderTargetView.Get(), m_dumpScreenRenderTarget.DepthStencilView.Get(), gameCamera);
}
void Renderer11::drawItems(RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
// Set shaders
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsItems.Get(), NULL, 0);
m_context->PSSetShader(m_psItems.Get(), NULL, 0);
for (auto room : view.roomsToDraw)
{
for (auto itemToDraw : room->ItemsToDraw)
{
ITEM_INFO* nativeItem = &g_Level.Items[itemToDraw->ItemNumber];
RendererRoom& room = m_rooms[nativeItem->roomNumber];
RendererObject& moveableObj = *m_moveableObjects[nativeItem->objectNumber];
if (moveableObj.DoNotDraw)
continue;
short objectNumber = nativeItem->objectNumber;
if (objectNumber >= ID_WATERFALL1 && objectNumber <= ID_WATERFALLSS2)
{
// We'll draw waterfalls later
continue;
}
else if (objectNumber >= ID_WRAITH1 && objectNumber <= ID_WRAITH3)
{
// Wraiths have some additional special effects
drawAnimatingItem(itemToDraw, view);
drawWraithExtra(itemToDraw, view);
}
else if (objectNumber == ID_DARTS)
{
//TODO: for now legacy way, in the future mesh
drawDarts(itemToDraw, view);
}
else
{
drawAnimatingItem(itemToDraw, view);
}
}
}
}
void Renderer11::drawAnimatingItem(RendererItem* item, RenderView& view)
{
ITEM_INFO* nativeItem = &g_Level.Items[item->ItemNumber];
RendererRoom* room = &m_rooms[nativeItem->roomNumber];
RendererObject& moveableObj = *m_moveableObjects[nativeItem->objectNumber];
OBJECT_INFO* obj = &Objects[nativeItem->objectNumber];
Vector3 itemPosition = Vector3(nativeItem->pos.xPos, nativeItem->pos.yPos, nativeItem->pos.zPos);
Vector3 cameraPosition = Vector3(Camera.pos.x, Camera.pos.y, Camera.pos.z);
m_stItem.World = item->World;
m_stItem.Position = Vector4(nativeItem->pos.xPos, nativeItem->pos.yPos, nativeItem->pos.zPos, 1.0f);
m_stItem.AmbientLight = room->AmbientLight;
memcpy(m_stItem.BonesMatrices, item->AnimationTransforms, sizeof(Matrix) * 32);
2020-08-09 22:15:32 +02:00
m_cbItem.updateData(m_stItem, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
m_context->PSSetConstantBuffers(1, 1, m_cbItem.get());
m_stLights.NumLights = item->LightsToDraw.size();
for (int j = 0; j < m_stLights.NumLights; j++)
memcpy(&m_stLights.Lights[j], item->LightsToDraw[j], sizeof(ShaderLight));
2020-08-09 22:15:32 +02:00
m_cbLights.updateData(m_stLights, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(2, 1, m_cbLights.get());
for (int k = 0; k < moveableObj.ObjectMeshes.size(); k++) {
if (!(nativeItem->meshBits & (1 << k)))
continue;
RendererMesh* mesh = moveableObj.ObjectMeshes[k];
2021-08-02 19:20:58 +03:00
if (obj->meshSwapSlot != -1 && ((nativeItem->swapMeshFlags >> k) & 1))
2021-08-02 19:20:58 +03:00
{
RendererObject& swapMeshObj = *m_moveableObjects[obj->meshSwapSlot];
if (swapMeshObj.ObjectMeshes.size() > k)
2021-08-02 19:20:58 +03:00
mesh = swapMeshObj.ObjectMeshes[k];
}
drawMoveableMesh(item, mesh, room, k);
}
}
void Renderer11::drawItemsTransparent(RendererTransparentFaceInfo* info, RenderView& view)
{
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
// Set vertex buffer
//m_transparentFacesVertexBuffer.Update(m_context.Get(), m_transparentFacesVertices, 0, m_transparentFacesVertices.size());
m_context->IASetVertexBuffers(0, 1, m_transparentFacesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
ITEM_INFO* nativeItem = &g_Level.Items[info->item->ItemNumber];
RendererRoom& room = m_rooms[nativeItem->roomNumber];
RendererObject& moveableObj = *m_moveableObjects[nativeItem->objectNumber];
OBJECT_INFO* obj = &Objects[nativeItem->objectNumber];
// Set shaders
m_context->VSSetShader(m_vsItems.Get(), NULL, 0);
m_context->PSSetShader(m_psItems.Get(), NULL, 0);
m_stItem.World = info->item->World;
m_stItem.Position = Vector4(info->position.x, info->position.y, info->position.z, 1.0f);
m_stItem.AmbientLight = room.AmbientLight;
memcpy(m_stItem.BonesMatrices, info->item->AnimationTransforms, sizeof(Matrix) * 32);
m_cbItem.updateData(m_stItem, m_context.Get());
m_context->VSSetConstantBuffers(1, 1, m_cbItem.get());
m_context->PSSetConstantBuffers(1, 1, m_cbItem.get());
m_stLights.NumLights = info->item->LightsToDraw.size();
for (int j = 0; j < info->item->LightsToDraw.size(); j++)
memcpy(&m_stLights.Lights[j], info->item->LightsToDraw[j], sizeof(ShaderLight));
m_cbLights.updateData(m_stLights, m_context.Get());
m_context->PSSetConstantBuffers(2, 1, m_cbLights.get());
// Set texture
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[info->bucket->texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[info->bucket->texture]), SamplerStateType::None);
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(info->blendMode);
int drawnVertices = 0;
while (drawnVertices < m_transparentFacesVertices.size())
{
int count = (drawnVertices + TRANSPARENT_BUCKET_SIZE > m_transparentFacesVertices.size() ?
m_transparentFacesVertices.size() - drawnVertices : TRANSPARENT_BUCKET_SIZE);
m_transparentFacesVertexBuffer.Update(m_context.Get(), m_transparentFacesVertices, drawnVertices, count);
m_context->Draw(count, 0);
m_numDrawCalls++;
m_numTransparentDrawCalls++;
m_numMoveablesTransparentDrawCalls++;
drawnVertices += TRANSPARENT_BUCKET_SIZE;
}
}
void Renderer11::drawDarts(RendererItem* item, RenderView& view)
{
ITEM_INFO* nativeItem = &g_Level.Items[item->ItemNumber];
Vector3 start = Vector3(
nativeItem->pos.xPos,
nativeItem->pos.yPos,
nativeItem->pos.zPos);
float speed = (-96 * phd_cos(TO_RAD(nativeItem->pos.xRot)));
Vector3 end = Vector3(
nativeItem->pos.xPos + speed * phd_sin(TO_RAD(nativeItem->pos.yRot)),
nativeItem->pos.yPos + 96 * phd_sin(TO_RAD(nativeItem->pos.xRot)),
nativeItem->pos.zPos + speed * phd_cos(TO_RAD(nativeItem->pos.yRot)));
addLine3D(start, end, Vector4(30 / 255.0f, 30 / 255.0f, 30 / 255.0f, 0.5f));
}
void Renderer11::drawWraithExtra(RendererItem* item, RenderView& view)
{
ITEM_INFO* nativeItem = &g_Level.Items[item->ItemNumber];
WRAITH_INFO* info = (WRAITH_INFO*)nativeItem->data;
for (int j = 0; j <= 4; j++)
{
Matrix rotation;
switch (j)
{
case 0:
rotation = Matrix::CreateRotationY(TO_RAD(-1092));
break;
case 1:
rotation = Matrix::CreateRotationY(TO_RAD(1092));
break;
case 2:
rotation = Matrix::CreateRotationZ(TO_RAD(-1092));
break;
case 3:
rotation = Matrix::CreateRotationZ(TO_RAD(1092));
break;
default:
rotation = Matrix::Identity;
break;
}
Matrix world = rotation * item->World;
for (int i = 0; i < 7; i++)
{
Vector3 p1 = Vector3(info[i].xPos, info[i].yPos, info[i].zPos);
Vector3 p2 = Vector3(info[i + 1].xPos , info[i + 1].yPos, info[i + 1].zPos);
2020-08-09 15:25:56 +02:00
addLine3D(p1, p2, Vector4(info[i].r / 255.0f, info[i].g / 255.0f, info[i].b / 255.0f, 1.0f));
}
}
}
void Renderer11::drawStatics(RenderView& view)
{
// Bind vertex and index buffer
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
m_context->IASetVertexBuffers(0, 1, m_staticsVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_staticsIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
// Bind shaders
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsStatics.Get(), NULL, 0);
m_context->PSSetShader(m_psStatics.Get(), NULL, 0);
Vector3 cameraPosition = Vector3(Camera.pos.x, Camera.pos.y, Camera.pos.z);
for (auto room : view.roomsToDraw)
{
for (auto msh : room->StaticsToDraw)
{
if (!m_staticObjects[msh->staticNumber])
continue;
Matrix world = (Matrix::CreateFromYawPitchRoll(TO_RAD(msh->pos.yRot), TO_RAD(msh->pos.xRot), TO_RAD(msh->pos.zRot)) * Matrix::CreateTranslation(msh->pos.xPos, msh->pos.yPos, msh->pos.zPos));
m_stStatic.World = world;
m_stStatic.Position = Vector4(msh->pos.xPos, msh->pos.yPos, msh->pos.zPos, 1);
m_stStatic.Color = msh->color;
m_cbStatic.updateData(m_stStatic, m_context.Get());
m_context->VSSetConstantBuffers(1, 1, m_cbStatic.get());
RendererObject& staticObj = *m_staticObjects[msh->staticNumber];
if (staticObj.ObjectMeshes.size() > 0)
{
RendererMesh* mesh = staticObj.ObjectMeshes[0];
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0)
continue;
if (isSortingRequired(bucket.blendMode))
{
// Collect transparent faces
for (int j = 0; j < bucket.Polygons.size(); j++)
{
RendererPolygon* p = &bucket.Polygons[j];
// As polygon distance, for moveables, we use the averaged distance
Vector3 centre = Vector3::Transform(p->centre, world);
int distance = (centre - cameraPosition).Length();
RendererTransparentFace face;
face.type = RendererTransparentFaceType::TRANSPARENT_FACE_STATIC;
face.info.polygon = p;
face.distance = distance;
face.info.animated = bucket.animated;
face.info.texture = bucket.texture;
face.info.room = room;
face.info.staticMesh = msh;
face.info.position = Vector3(msh->pos.xPos, msh->pos.yPos, msh->pos.zPos);
face.info.color = Vector4(msh->color.x, msh->color.y, msh->color.z, 1.0f);
face.info.blendMode = bucket.blendMode;
face.info.bucket = &bucket;
room->TransparentFacesToDraw.push_back(face);
}
}
else
{
int passes = bucket.blendMode == BLENDMODE_ALPHATEST ? 2 : 1;
for (int pass = 0; pass < passes; pass++)
{
if (pass == 0)
{
m_stMisc.AlphaTest = bucket.blendMode == BLENDMODE_ALPHATEST;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(bucket.blendMode);
}
else
{
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(BLENDMODE_ALPHABLEND);
}
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_staticsTextures[bucket.texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_staticsTextures[bucket.texture]), SamplerStateType::None);
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
}
}
void Renderer11::drawRooms(RenderView& view)
{
2021-12-13 06:51:08 +01:00
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
2021-12-09 12:13:25 +01:00
// Bind vertex and index buffer
m_context->IASetVertexBuffers(0, 1, m_roomsVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_roomsIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
2021-12-09 12:13:25 +01:00
// Bind pixel shaders
2020-08-09 22:15:32 +02:00
m_context->PSSetShader(m_psRooms.Get(), NULL, 0);
// Bind caustics and shadow map textures
ID3D11SamplerState* sampler = m_states->AnisotropicWrap();
m_context->PSSetSamplers(0, 1, &sampler);
int nmeshes = -Objects[ID_CAUSTICS_TEXTURES].nmeshes;
int meshIndex = Objects[ID_CAUSTICS_TEXTURES].meshIndex;
int causticsFrame = nmeshes ? meshIndex + ((GlobalCounter) % nmeshes) : 0;
bindTexture(TextureRegister::CausticsTexture, m_sprites[causticsFrame].Texture, SamplerStateType::None);
bindTexture(TextureRegister::ShadowMapTexture, &m_shadowMap, SamplerStateType::ShadowMap);
// Set shadow map data
if (shadowLight != NULL)
{
memcpy(&m_stShadowMap.Light, shadowLight, sizeof(ShaderLight));
m_stShadowMap.CastShadows = true;
}
else
{
m_stShadowMap.CastShadows = false;
}
2020-08-09 22:15:32 +02:00
m_cbShadowMap.updateData(m_stShadowMap, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(4, 1, m_cbShadowMap.get());
m_context->PSSetConstantBuffers(4, 1, m_cbShadowMap.get());
for (int i = 0; i < view.roomsToDraw.size(); i++)
{
int index = i;
RendererRoom* room = view.roomsToDraw[index];
ROOM_INFO* nativeRoom = &g_Level.Rooms[room->RoomNumber];
m_stLights.NumLights = view.lightsToDraw.size();
for (int j = 0; j < view.lightsToDraw.size(); j++)
memcpy(&m_stLights.Lights[j], view.lightsToDraw[j], sizeof(ShaderLight));
2020-08-09 22:15:32 +02:00
m_cbLights.updateData(m_stLights, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(1, 1, m_cbLights.get());
m_stMisc.Caustics = (nativeRoom->flags & ENV_FLAG_WATER);
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
m_stRoom.AmbientColor = room->AmbientLight;
m_stRoom.Water = (nativeRoom->flags & ENV_FLAG_WATER) != 0 ? 1 : 0;
2020-08-09 22:15:32 +02:00
m_cbRoom.updateData(m_stRoom, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(5, 1, m_cbRoom.get());
m_context->PSSetConstantBuffers(5, 1, m_cbRoom.get());
for (int animated = 0; animated < 2; animated++)
{
if (animated == 0)
{
m_context->VSSetShader(m_vsRooms.Get(), nullptr, 0);
}
else
{
m_context->VSSetConstantBuffers(6, 1, m_cbAnimated.get());
m_context->VSSetShader(m_vsRooms_Anim.Get(), nullptr, 0);
}
for (auto& bucket : room->Buckets)
{
2021-12-13 06:51:08 +01:00
if ((animated == 1) ^ bucket.animated || bucket.Vertices.size() == 0)
continue;
if (isSortingRequired(bucket.blendMode))
{
// Collect transparent faces
for (int j = 0; j < bucket.Polygons.size(); j++)
{
RendererPolygon* p = &bucket.Polygons[j];
// As polygon distance, for rooms, we use the farthest vertex distance
Vector3 roomPosition = Vector3(nativeRoom->x, nativeRoom->y, nativeRoom->z);
Vector3 cameraPosition = Vector3(Camera.pos.x, Camera.pos.y, Camera.pos.z);
int d1 = (roomPosition + bucket.Vertices[bucket.Indices[p->baseIndex + 0]].Position - cameraPosition).Length();
int d2 = (roomPosition + bucket.Vertices[bucket.Indices[p->baseIndex + 1]].Position - cameraPosition).Length();
int d3 = (roomPosition + bucket.Vertices[bucket.Indices[p->baseIndex + 2]].Position - cameraPosition).Length();
int d4 = 0;
if (p->shape == 0)
d4 = (roomPosition + bucket.Vertices[bucket.Indices[p->baseIndex + 3]].Position - cameraPosition).Length();
int distance = std::max(std::max(std::max(d1, d2), d3), d4);
RendererTransparentFace face;
face.type = RendererTransparentFaceType::TRANSPARENT_FACE_ROOM;
face.info.polygon = p;
face.distance = distance;
face.info.animated = bucket.animated;
face.info.texture = bucket.texture;
face.info.room = room;
face.info.blendMode = bucket.blendMode;
face.info.bucket = &bucket;
room->TransparentFacesToDraw.push_back(face);
}
}
else
{
int passes = bucket.blendMode == BLENDMODE_ALPHATEST ? 2 : 1;
2021-12-13 06:51:08 +01:00
if (bucket.doubleSided)
{
m_context->RSSetState(m_states->CullNone());
}
else
{
m_context->RSSetState(m_states->CullCounterClockwise());
}
for (int pass = 0; pass < passes; pass++)
{
if (pass == 0)
{
m_stMisc.AlphaTest = bucket.blendMode == BLENDMODE_ALPHATEST;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(bucket.blendMode);
}
else
{
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(BLENDMODE_ALPHABLEND);
}
// Draw geometry
2021-12-13 06:51:08 +01:00
if (animated)
{
if (!bucket.animated)
continue;
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_animatedTextures[bucket.texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_animatedTextures[bucket.texture]), SamplerStateType::None);
RendererAnimatedTextureSet& set = m_animatedTextureSets[bucket.texture];
m_stAnimated.NumFrames = set.NumTextures;
2021-12-13 06:51:08 +01:00
for (unsigned char i = 0; i < set.NumTextures; i++)
{
auto& tex = set.Textures[i];
m_stAnimated.Textures[i].topLeft = set.Textures[i].UV[0];
m_stAnimated.Textures[i].topRight = set.Textures[i].UV[1];
m_stAnimated.Textures[i].bottomRight = set.Textures[i].UV[2];
m_stAnimated.Textures[i].bottomLeft = set.Textures[i].UV[3];
}
m_cbAnimated.updateData(m_stAnimated, m_context.Get());
}
2021-12-13 06:51:08 +01:00
else
{
if (bucket.animated)
continue;
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_roomTextures[bucket.texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_roomTextures[bucket.texture]), SamplerStateType::None);
}
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}
2021-12-13 06:51:08 +01:00
m_context->RSSetState(m_states->CullCounterClockwise());
}
2021-09-09 13:30:49 +03:00
void Renderer11::drawHorizonAndSky(RenderView& renderView, ID3D11DepthStencilView* depthTarget)
{
GameScriptLevel *level = g_GameFlow->GetLevel(CurrentLevel);
2021-09-09 13:30:49 +03:00
bool anyOutsideRooms = false;
for (int k = 0; k < renderView.roomsToDraw.size(); k++)
{
ROOM_INFO* nativeRoom = &g_Level.Rooms[renderView.roomsToDraw[k]->RoomNumber];
if (nativeRoom->flags & ENV_FLAG_OUTSIDE)
2021-09-09 13:30:49 +03:00
{
anyOutsideRooms = true;
break;
}
}
if (!level->Horizon || !anyOutsideRooms)
2020-08-09 15:25:56 +02:00
return ;
if (BinocularRange)
AlterFOV(14560 - BinocularRange);
ID3D11SamplerState *sampler;
UINT stride = sizeof(RendererVertex);
UINT offset = 0;
// Draw the sky
Matrix rotation = Matrix::CreateRotationX(PI);
RendererVertex vertices[4];
float size = 9728.0f;
vertices[0].Position.x = -size / 2.0f;
vertices[0].Position.y = 0.0f;
vertices[0].Position.z = size / 2.0f;
vertices[0].UV.x = 0.0f;
vertices[0].UV.y = 0.0f;
vertices[0].Color.x = 1.0f;
vertices[0].Color.y = 1.0f;
vertices[0].Color.z = 1.0f;
vertices[0].Color.w = 1.0f;
vertices[1].Position.x = size / 2.0f;
vertices[1].Position.y = 0.0f;
vertices[1].Position.z = size / 2.0f;
vertices[1].UV.x = 1.0f;
vertices[1].UV.y = 0.0f;
vertices[1].Color.x = 1.0f;
vertices[1].Color.y = 1.0f;
vertices[1].Color.z = 1.0f;
vertices[1].Color.w = 1.0f;
vertices[2].Position.x = size / 2.0f;
vertices[2].Position.y = 0.0f;
vertices[2].Position.z = -size / 2.0f;
vertices[2].UV.x = 1.0f;
vertices[2].UV.y = 1.0f;
vertices[2].Color.x = 1.0f;
vertices[2].Color.y = 1.0f;
vertices[2].Color.z = 1.0f;
vertices[2].Color.w = 1.0f;
vertices[3].Position.x = -size / 2.0f;
vertices[3].Position.y = 0.0f;
vertices[3].Position.z = -size / 2.0f;
vertices[3].UV.x = 0.0f;
vertices[3].UV.y = 1.0f;
vertices[3].Color.x = 1.0f;
vertices[3].Color.y = 1.0f;
vertices[3].Color.z = 1.0f;
vertices[3].Color.w = 1.0f;
2020-08-09 22:15:32 +02:00
m_context->VSSetShader(m_vsSky.Get(), NULL, 0);
m_context->PSSetShader(m_psSky.Get(), NULL, 0);
m_stMisc.AlphaTest = true;
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
bindTexture(TextureRegister::MainTexture, &m_skyTexture, SamplerStateType::AnisotropicClamp);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
2021-09-09 13:30:49 +03:00
setBlendMode(BLEND_MODES::BLENDMODE_ADDITIVE);
for (int i = 0; i < 2; i++)
{
2021-09-15 11:13:47 +03:00
auto weather = TEN::Effects::Environment::Weather;
2021-09-14 12:05:36 +03:00
2021-09-15 11:13:47 +03:00
Matrix translation = Matrix::CreateTranslation(Camera.pos.x + weather.SkyLayer1Position() - i * 9728.0f, Camera.pos.y - 1536.0f, Camera.pos.z);
Matrix world = rotation * translation;
m_stStatic.World = (rotation * translation);
2021-09-15 11:13:47 +03:00
m_stStatic.Color = weather.SkyColor();
2020-08-09 22:15:32 +02:00
m_cbStatic.updateData(m_stStatic, m_context.Get());
m_context->VSSetConstantBuffers(1, 1, m_cbStatic.get());
m_context->PSSetConstantBuffers(1, 1, m_cbStatic.get());
m_primitiveBatch->Begin();
m_primitiveBatch->DrawQuad(vertices[0], vertices[1], vertices[2], vertices[3]);
m_primitiveBatch->End();
}
m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1, 0);
2021-09-09 13:30:49 +03:00
// Draw horizon
if (m_moveableObjects[ID_HORIZON].has_value())
{
m_context->IASetVertexBuffers(0, 1, m_moveablesVertexBuffer.Buffer.GetAddressOf(), &stride, &offset);
m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
2020-08-09 22:15:32 +02:00
m_context->IASetInputLayout(m_inputLayout.Get());
m_context->IASetIndexBuffer(m_moveablesIndexBuffer.Buffer.Get(), DXGI_FORMAT_R32_UINT, 0);
RendererObject &moveableObj = *m_moveableObjects[ID_HORIZON];
m_stStatic.World = Matrix::CreateTranslation(Camera.pos.x, Camera.pos.y, Camera.pos.z);
m_stStatic.Position = Vector4::Zero;
m_stStatic.Color = Vector4::One;
2020-08-09 22:15:32 +02:00
m_cbStatic.updateData(m_stStatic, m_context.Get());
2020-07-23 21:40:07 +02:00
m_context->VSSetConstantBuffers(1, 1, m_cbStatic.get());
m_context->PSSetConstantBuffers(1, 1, m_cbStatic.get());
m_stMisc.AlphaTest = true;
2020-08-09 22:15:32 +02:00
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
for (int k = 0; k < moveableObj.ObjectMeshes.size(); k++) {
RendererMesh *mesh = moveableObj.ObjectMeshes[k];
for (auto& bucket: mesh->buckets) {
if (bucket.Vertices.size() == 0)
continue;
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[bucket.texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[bucket.texture]), SamplerStateType::None);
setBlendMode(bucket.blendMode);
// Draw vertices
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
// Clear just the Z-buffer so we can start drawing on top of the horizon
m_context->ClearDepthStencilView(depthTarget, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
}
2020-08-09 15:25:56 +02:00
void Renderer11::Draw()
{
//renderToCubemap(m_reflectionCubemap, Vector3(LaraItem->pos.xPos, LaraItem->pos.yPos - 1024, LaraItem->pos.zPos), LaraItem->roomNumber);
2020-08-09 15:25:56 +02:00
renderScene(m_backBufferRTV, m_depthStencilView, gameCamera);
m_context->ClearState();
//drawFinalPass();
m_swapChain->Present(0, 0);
}
void Renderer11::drawMoveableMesh(RendererItem* itemToDraw, RendererMesh* mesh, RendererRoom* room, int boneIndex)
{
Vector3 cameraPosition = Vector3(Camera.pos.x, Camera.pos.y, Camera.pos.z);
for (auto& bucket : mesh->buckets)
{
if (bucket.Vertices.size() == 0)
continue;
if (isSortingRequired(bucket.blendMode))
{
// Collect transparent faces
for (int j = 0; j < bucket.Polygons.size(); j++)
{
RendererPolygon* p = &bucket.Polygons[j];
// As polygon distance, for moveables, we use the averaged distance
Vector3 centre = Vector3::Transform(p->centre, itemToDraw->AnimationTransforms[boneIndex] * itemToDraw->World);
int distance = (centre - cameraPosition).Length();
RendererTransparentFace face;
face.type = RendererTransparentFaceType::TRANSPARENT_FACE_MOVEABLE;
face.info.polygon = p;
face.distance = distance;
face.info.animated = bucket.animated;
face.info.texture = bucket.texture;
face.info.room = room;
face.info.item = itemToDraw;
face.info.blendMode = bucket.blendMode;
face.info.bucket = &bucket;
room->TransparentFacesToDraw.push_back(face);
}
}
else
{
int passes = bucket.blendMode == BLENDMODE_ALPHATEST ? 2 : 1;
for (int pass = 0; pass < passes; pass++)
{
if (pass == 0)
{
m_stMisc.AlphaTest = bucket.blendMode == BLENDMODE_ALPHATEST;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(bucket.blendMode);
}
else
{
m_stMisc.AlphaTest = false;
m_cbMisc.updateData(m_stMisc, m_context.Get());
m_context->PSSetConstantBuffers(3, 1, m_cbMisc.get());
setBlendMode(BLENDMODE_ALPHABLEND);
}
bindTexture(TextureRegister::MainTexture, &std::get<0>(m_moveablesTextures[bucket.texture]), SamplerStateType::AnisotropicClamp);
bindTexture(TextureRegister::NormalMapTexture, &std::get<1>(m_moveablesTextures[bucket.texture]), SamplerStateType::None);
m_context->DrawIndexed(bucket.Indices.size(), bucket.StartIndex, 0);
m_numDrawCalls++;
}
}
}
}
}