annotate Render.cpp @ 2356:08c4f1799ca1

Elements of VideoPlayer structure moved
author Ritor1
date Thu, 10 Apr 2014 17:34:50 +0600
parents d6407efaa4ea
children 23192f5b41d4
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2245
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2334
diff changeset
2 #include "mm7_unsorted_subs.h"
d6887ee81068 header file include cleanup
Grumpy7
parents: 2334
diff changeset
3 #include "ErrorHandling.h"
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2245
diff changeset
4
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
5 #include "Render.h"
1277
1803172dffd9 header stuff
Grumpy7
parents: 1268
diff changeset
6 #include "Outdoor_stuff.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
7 #include "VideoPlayer.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
8 #include "Sprites.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
9 #include "Mouse.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
10 #include "GammaControl.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
11 #include "stru6.h"
1183
fa30ea497e94 arcomage refactoring started
Gloval
parents: 1178
diff changeset
12 #include "GUIWindow.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
13 #include "DecalBuilder.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 992
diff changeset
14 #include "ParticleEngine.h"
0
Ritor1
parents:
diff changeset
15 #include "Outdoor.h"
Ritor1
parents:
diff changeset
16 #include "Party.h"
Ritor1
parents:
diff changeset
17 #include "LOD.h"
Ritor1
parents:
diff changeset
18 #include "Viewport.h"
2037
7a9477135943 Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents: 2016
diff changeset
19 #include "OurMath.h"
0
Ritor1
parents:
diff changeset
20 #include "PaletteManager.h"
2044
28cb79ae2f6f Time.h rename
Ritor1
parents: 2037
diff changeset
21 #include "Timer.h"
0
Ritor1
parents:
diff changeset
22 #include "Game.h"
Ritor1
parents:
diff changeset
23 #include "LightmapBuilder.h"
Ritor1
parents:
diff changeset
24 #include "ObjectList.h"
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
25 #include "SpriteObject.h"
0
Ritor1
parents:
diff changeset
26 #include "DecorationList.h"
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
27 #include "Actor.h"
0
Ritor1
parents:
diff changeset
28 #include "Log.h"
179
f102bbff6fd8 15.02.13 Water
Ritor1
parents: 169
diff changeset
29 #include "TileFrameTable.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 179
diff changeset
30 #include "texts.h"
0
Ritor1
parents:
diff changeset
31 #include "mm7_data.h"
860
8fc2f035abc0 * AI function renames
zipi
parents: 852
diff changeset
32 #include "MM7.h"
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1207
diff changeset
33 #include "Lights.h"
1828
35c1e4ff6ba7 party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents: 1814
diff changeset
34 #include "Level/Decoration.h"
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
35 #include "Vis.h"
2341
d6407efaa4ea Moving registry access stuff to Registry.h/cpp
Grumpy7
parents: 2336
diff changeset
36 #include "Registry.h"
0
Ritor1
parents:
diff changeset
37
1924
8cd321994943 MSVS 2012 project file & some compilation warning fixes
Nomad
parents: 1913
diff changeset
38 //#pragma comment(lib, "lib\\legacy_dx\\lib\\ddraw.lib")
8cd321994943 MSVS 2012 project file & some compilation warning fixes
Nomad
parents: 1913
diff changeset
39 //#pragma comment(lib, "lib\\legacy_dx\\lib\\dxguid.lib")
0
Ritor1
parents:
diff changeset
40
Ritor1
parents:
diff changeset
41 struct IDirectDrawClipper *pDDrawClipper;
Ritor1
parents:
diff changeset
42 struct Render *pRenderer; // idb
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
43 struct RenderVertexD3D3 pVertices[50];
0
Ritor1
parents:
diff changeset
44 int uNumDecorationsDrawnThisFrame; // weak
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
45 RenderBillboard pBillboardRenderList[500];
0
Ritor1
parents:
diff changeset
46 unsigned int uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
47 int uNumSpritesDrawnThisFrame; // weak
Ritor1
parents:
diff changeset
48
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
49 RenderVertexSoft array_507D30[50];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
50 RenderVertexSoft array_50AC10[50];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
51 RenderVertexSoft array_73D150[20];
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
52
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
53 RenderVertexD3D3 d3d_vertex_buffer[50];
0
Ritor1
parents:
diff changeset
54
Ritor1
parents:
diff changeset
55 /* 384 */
Ritor1
parents:
diff changeset
56 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
57 struct PCXHeader_1
Ritor1
parents:
diff changeset
58 {
Ritor1
parents:
diff changeset
59 char manufacturer;
Ritor1
parents:
diff changeset
60 char version;
Ritor1
parents:
diff changeset
61 char encoding;
Ritor1
parents:
diff changeset
62 char bpp;
Ritor1
parents:
diff changeset
63 __int16 left;
Ritor1
parents:
diff changeset
64 __int16 up;
Ritor1
parents:
diff changeset
65 __int16 right;
Ritor1
parents:
diff changeset
66 __int16 bottom;
Ritor1
parents:
diff changeset
67 __int16 hdpi;
Ritor1
parents:
diff changeset
68 __int16 vdpi;
Ritor1
parents:
diff changeset
69 };
Ritor1
parents:
diff changeset
70 #pragma pack(pop)
Ritor1
parents:
diff changeset
71
Ritor1
parents:
diff changeset
72 /* 385 */
Ritor1
parents:
diff changeset
73 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
74 struct PCXHeader_2
Ritor1
parents:
diff changeset
75 {
Ritor1
parents:
diff changeset
76 char reserved;
Ritor1
parents:
diff changeset
77 char planes;
Ritor1
parents:
diff changeset
78 __int16 pitch;
Ritor1
parents:
diff changeset
79 __int16 palette_info;
Ritor1
parents:
diff changeset
80 };
Ritor1
parents:
diff changeset
81 #pragma pack(pop)
Ritor1
parents:
diff changeset
82
Ritor1
parents:
diff changeset
83 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst);
Ritor1
parents:
diff changeset
84 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2);
Ritor1
parents:
diff changeset
85 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, struct RenderD3D_aux *a6);
Ritor1
parents:
diff changeset
86 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut); // idb
Ritor1
parents:
diff changeset
87
Ritor1
parents:
diff changeset
88 //----- (0049E79F) --------------------------------------------------------
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
89 bool Render::CheckTextureStages()
0
Ritor1
parents:
diff changeset
90 {
Ritor1
parents:
diff changeset
91 bool v0; // edi@1
Ritor1
parents:
diff changeset
92 IDirectDrawSurface4 *pSurface2; // [sp+Ch] [bp-14h]@1
Ritor1
parents:
diff changeset
93 IDirectDrawSurface4 *pSurface1; // [sp+10h] [bp-10h]@1
Ritor1
parents:
diff changeset
94 DWORD v4; // [sp+14h] [bp-Ch]@1
Ritor1
parents:
diff changeset
95 IDirect3DTexture2 *pTexture2; // [sp+18h] [bp-8h]@1
Ritor1
parents:
diff changeset
96 IDirect3DTexture2 *pTexture1; // [sp+1Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
97
Ritor1
parents:
diff changeset
98 v0 = false;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
99 pRenderD3D->CreateTexture(64u, 64u, &pSurface1, &pTexture1, true, false, 32u);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
100 pRenderD3D->CreateTexture(64u, 64u, &pSurface2, &pTexture2, true, false, 32u);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
101
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
102 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
103 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
104 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
105 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
106 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
107 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
108 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
109
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
110 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
111 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
112 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_TEXCOORDINDEX, 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
113 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 7));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
114 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG1, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
115 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLORARG2, 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
116 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MAGFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
117 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MINFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
118 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_MIPFILTER, 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
119
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
120 if ( !pRenderD3D->pDevice->ValidateDevice(&v4) && v4 == 1 )
0
Ritor1
parents:
diff changeset
121 v0 = true;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
122 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(1, D3DTSS_COLOROP, 1u));
0
Ritor1
parents:
diff changeset
123 pTexture1->Release();
Ritor1
parents:
diff changeset
124 pTexture2->Release();
Ritor1
parents:
diff changeset
125 pSurface1->Release();
Ritor1
parents:
diff changeset
126 pSurface2->Release();
Ritor1
parents:
diff changeset
127 return v0;
Ritor1
parents:
diff changeset
128 }
Ritor1
parents:
diff changeset
129
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
130
0
Ritor1
parents:
diff changeset
131 //----- (00440CB8) --------------------------------------------------------
Ritor1
parents:
diff changeset
132 void Render::DrawBillboardList_BLV()
Ritor1
parents:
diff changeset
133 {
Ritor1
parents:
diff changeset
134 __int16 v2; // ax@3
Ritor1
parents:
diff changeset
135 int v5; // eax@11
Ritor1
parents:
diff changeset
136 RenderBillboardTransform_local0 soft_billboard; // [sp+4h] [bp-50h]@1
Ritor1
parents:
diff changeset
137
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
138 soft_billboard.sParentBillboardID = -1;
0
Ritor1
parents:
diff changeset
139 soft_billboard.pTarget = pBLVRenderParams->pRenderTarget;
Ritor1
parents:
diff changeset
140 soft_billboard.pTargetZ = pBLVRenderParams->pTargetZBuffer;
Ritor1
parents:
diff changeset
141 soft_billboard.uTargetPitch = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
142 soft_billboard.uViewportX = pBLVRenderParams->uViewportX;
Ritor1
parents:
diff changeset
143 soft_billboard.uViewportY = pBLVRenderParams->uViewportY;
Ritor1
parents:
diff changeset
144 soft_billboard.uViewportZ = pBLVRenderParams->uViewportZ - 1;
Ritor1
parents:
diff changeset
145 soft_billboard.uViewportW = pBLVRenderParams->uViewportW;
Ritor1
parents:
diff changeset
146
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
147 pODMRenderParams->uNumBillboards = ::uNumBillboardsToDraw;
617
f2697c2b4109 Billboards are now rendered in BLV
Nomad
parents: 595
diff changeset
148 for (uint i = 0; i < ::uNumBillboardsToDraw; ++i)
0
Ritor1
parents:
diff changeset
149 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
150 RenderBillboard* p = &pBillboardRenderList[i];
0
Ritor1
parents:
diff changeset
151
Ritor1
parents:
diff changeset
152 soft_billboard.uScreenSpaceX = p->uScreenSpaceX;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
153 soft_billboard.sParentBillboardID = i;
0
Ritor1
parents:
diff changeset
154 soft_billboard.uScreenSpaceY = p->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
155 soft_billboard._screenspace_x_scaler_packedfloat = p->_screenspace_x_scaler_packedfloat;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
156 soft_billboard._screenspace_y_scaler_packedfloat = p->_screenspace_y_scaler_packedfloat;
0
Ritor1
parents:
diff changeset
157 soft_billboard.sZValue = p->sZValue;
Ritor1
parents:
diff changeset
158 soft_billboard.uFlags = p->field_1E;
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
159 soft_billboard.sTintColor = p->sTintColor;
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
160 v2 = p->HwSpriteID;
0
Ritor1
parents:
diff changeset
161 if ( v2 != -1 )
Ritor1
parents:
diff changeset
162 {
Ritor1
parents:
diff changeset
163 if ( pRenderer->pRenderD3D )
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
164 pRenderer->DrawBillboard_Indoor(&soft_billboard, &pSprites_LOD->pHardwareSprites[v2], p->dimming_level);
0
Ritor1
parents:
diff changeset
165 else
Ritor1
parents:
diff changeset
166 {
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
167 soft_billboard.pPalette = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, p->dimming_level, 1);
0
Ritor1
parents:
diff changeset
168 if (p->field_1E & 0x0100)
Ritor1
parents:
diff changeset
169 soft_billboard.pPalette = pPaletteManager->field_261600[p->uPalette];
Ritor1
parents:
diff changeset
170 if ( !(soft_billboard.uFlags & 0x40) && soft_billboard.uFlags & 0x80 )
Ritor1
parents:
diff changeset
171 soft_billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(p->uPalette, 0, 1);
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
172 v5 = p->HwSpriteID;
0
Ritor1
parents:
diff changeset
173 if ( v5 >= 0 )
733
700b58aac975 MonsterPopup preview doll fixed
Nomad
parents: 728
diff changeset
174 pSprites_LOD->pSpriteHeaders[v5].DrawSprite_sw(&soft_billboard, 1);
0
Ritor1
parents:
diff changeset
175 }
Ritor1
parents:
diff changeset
176 }
Ritor1
parents:
diff changeset
177 }
Ritor1
parents:
diff changeset
178 }
Ritor1
parents:
diff changeset
179
Ritor1
parents:
diff changeset
180 //----- (004A16A5) --------------------------------------------------------
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
181 bool Render::AreRenderSurfacesOk()
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
182 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
183 return pFrontBuffer4 && pBackBuffer4;
0
Ritor1
parents:
diff changeset
184 }
Ritor1
parents:
diff changeset
185
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
186
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
187 //----- (004A19D8) --------------------------------------------------------
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
188 unsigned int BlendColors(unsigned int a1, unsigned int a2)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
189 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
190 /*signed __int64 v2; // ST10_8@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
191 double v3; // st7@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
192 float v4; // ST24_4@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
193 double v5; // ST10_8@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
194 int v6; // ST1C_4@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
195 float v7; // ST24_4@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
196 double v8; // ST10_8@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
197 unsigned __int8 v9; // ST20_1@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
198 float v10; // ST24_4@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
199 double v11; // ST10_8@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
200 float v12; // ST24_4@1
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
201 double v13; // ST08_8@1*/
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
202
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
203 uint alpha = (uint)floorf(0.5f + (a1 >> 24) / 255.0f *
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
204 (a2 >> 24) / 255.0f * 255.0f),
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
205 red = (uint)floorf(0.5f + ((a1 >> 16) & 0xFF) / 255.0f *
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
206 ((a2 >> 16) & 0xFF) / 255.0f * 255.0f),
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
207 green = (uint)floorf(0.5f + ((a1 >> 8) & 0xFF) / 255.0f *
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
208 ((a2 >> 8) & 0xFF) / 255.0f * 255.0f),
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
209 blue = (uint)floorf(0.5f + ((a1 >> 0) & 0xFF) / 255.0f *
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
210 ((a2 >> 0) & 0xFF) / 255.0f * 255.0f);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
211 return (alpha << 24) | (red << 16) | (green << 8) | blue;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
212 /*v2 = a1 >> 24;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
213 v3 = (double)v2 / 255.0f;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
214 HIDWORD(v2) = 0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
215 LODWORD(v2) = a2 >> 24;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
216 v4 = v3 * (double)v2 / 255.0f * 255.0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
217 v5 = v4 + 6.7553994e15;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
218 v6 = LODWORD(v5);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
219 v7 = (double)((a1 >> 16) & 0xFFi64) / 255.0f * (double)((a2 >> 16) & 0xFF) * 0.0039215689 * 255.0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
220 v8 = v7 + 6.7553994e15;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
221 v9 = LOBYTE(v8);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
222 v10 = (double)((unsigned __int16)a1 >> 8) / 255.0f * (double)((unsigned __int16)a2 >> 8) / 255.0f * 255.0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
223 v11 = v10 + 6.7553994e15;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
224 v12 = (double)(a1 & 0xFFi64) / 255.0f * (double)(unsigned __int8)a2 / 255.0f * 255.0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
225 v13 = v12 + 6.7553994e15;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
226 return LOBYTE(v13) | ((LOBYTE(v11) | (((v6 << 8) | v9) << 8)) << 8);*/
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
227 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
228
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
229
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
230 void Render::RenderTerrainD3D() // New function
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
231 {
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
232 int v6; // ecx@8
1427
Ritor1
parents: 1424
diff changeset
233 struct Polygon *pTilePolygon; // ebx@8
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
234 // float Light_tile_dist;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
235
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
236 //warning: the game uses CW culling by default, ccw is incosistent
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
237 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CCW);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
238
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
239 static RenderVertexSoft pTerrainVertices[128 * 128];//vertexCountX and vertexCountZ
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
240
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
241 //Ãåíåðàöèÿ ìåñòîïîëîæåíèÿ âåðøèí-------------------------------------------------------------------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
242 //ðåø¸òêà âåðøèí äåëèòñÿ íà äâå ÷àñòè îò -64 äî 0 è îò 0 äî 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
243 //
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
244 // -64 X 0 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
245 // --------------- 64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
246 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
247 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
248 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
249 // 0|------+------| Z
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
250 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
251 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
252 // | | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
253 // ---------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
254 // -64
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
255
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
256 int blockScale = 512;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
257 int heightScale = 32;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
258 for (unsigned int z = 0; z < 128; ++z)
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
259 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
260 for (unsigned int x = 0; x < 128; ++x)
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
261 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
262 pTerrainVertices[z * 128 + x].vWorldPosition.x = (-64 + (signed)x) * blockScale;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
263 pTerrainVertices[z * 128 + x].vWorldPosition.y = (64 - (signed)z) * blockScale;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
264 pTerrainVertices[z * 128 + x].vWorldPosition.z = heightScale * pOutdoor->pTerrain.pHeightmap[z * 128 + x];
121
3471df3713e2 Teal line at game's viewport bottom fix
Nomad
parents: 107
diff changeset
265 pGame->pIndoorCameraD3D->ViewTransform(&pTerrainVertices[z * 128 + x], 1);
3471df3713e2 Teal line at game's viewport bottom fix
Nomad
parents: 107
diff changeset
266 pGame->pIndoorCameraD3D->Project(&pTerrainVertices[z * 128 + x], 1, 0);
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
267 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
268 }
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
269 //-------(Îòñå÷åíèå íåâèäèìîé ÷àñòè êàðòû)------------------------------------------------------------------------------------------
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
270 float direction = pGame->pIndoorCameraD3D->sRotationY / 256;//direction of the camera(íàïðâëåíèå êàìåðû)
2316
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
271 //0-East(B)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
272 //1-NorthEast(CB)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
273 //2-North(C)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
274 //3-WestNorth(CÇ)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
275 //4-West(Ç)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
276 //5-SouthWest(ÞÇ)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
277 //6-South(Þ)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
278 //7-SouthEast(ÞÂ)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
279 int Start_X, End_X, Start_Z, End_Z;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
280 if ( direction >= 0 && direction < 1.0 )//East(B) - NorthEast(CB)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
281 {
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
282 Start_X = pODMRenderParams->uMapGridCellX - 2, End_X = 127;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
283 Start_Z = 0, End_Z = 127;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
284 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
285 else if (direction >= 1.0 && direction < 3.0)//NorthEast(CB) - WestNorth(CÇ)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
286 {
2316
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
287 Start_X = 0, End_X = 127;
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
288 Start_Z = 0, End_Z = pODMRenderParams->uMapGridCellZ + 1;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
289 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
290 else if (direction >= 3.0 && direction < 5.0)//WestNorth(CÇ) - SouthWest(ÞÇ)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
291 {
2322
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
292 Start_X = 0, End_X = pODMRenderParams->uMapGridCellX + 2;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
293 Start_Z = 0, End_Z = 127;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
294 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
295 else if ( direction >= 5.0 && direction < 7.0 )//SouthWest(ÞÇ) - //SouthEast(ÞÂ)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
296 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
297 Start_X = 0, End_X = 127;
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
298 Start_Z = pODMRenderParams->uMapGridCellZ - 2, End_Z = 127;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
299 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
300 else//SouthEast(ÞÂ) - East(B)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
301 {
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
302 Start_X = pODMRenderParams->uMapGridCellX - 2, End_X = 127;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
303 Start_Z = 0, End_Z = 127;
2316
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
304 }
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
305 for (unsigned int z = Start_Z; z < End_Z; ++z)
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
306 {
25f771e528f0 Draw terrain
Ritor1
parents: 2275
diff changeset
307 for (unsigned int x = Start_X; x < End_X; ++x)
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
308 {
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
309 pTilePolygon = &array_77EC08[pODMRenderParams->uNumPolygons];
1427
Ritor1
parents: 1424
diff changeset
310 pTilePolygon->flags = 0;
Ritor1
parents: 1424
diff changeset
311 pTilePolygon->field_32 = 0;
Ritor1
parents: 1424
diff changeset
312 pTilePolygon->uTileBitmapID = pOutdoor->DoGetTileTexture(x, z);
Ritor1
parents: 1424
diff changeset
313 pTilePolygon->pTexture = (Texture *)&pBitmaps_LOD->pHardwareTextures[pTilePolygon->uTileBitmapID];
Ritor1
parents: 1424
diff changeset
314 if (pTilePolygon->uTileBitmapID == 0xFFFF)
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
315 continue;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
316
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
317 //pTile->flags = 0x8010 |pOutdoor->GetSomeOtherTileInfo(x, z);
1427
Ritor1
parents: 1424
diff changeset
318 pTilePolygon->flags = pOutdoor->GetSomeOtherTileInfo(x, z);
Ritor1
parents: 1424
diff changeset
319 pTilePolygon->field_32 = 0;
Ritor1
parents: 1424
diff changeset
320 pTilePolygon->field_59 = 1;
Ritor1
parents: 1424
diff changeset
321 pTilePolygon->sTextureDeltaU = 0;
Ritor1
parents: 1424
diff changeset
322 pTilePolygon->sTextureDeltaV = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
323 // x,z x+1,z
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
324 // .____________.
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
325 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
326 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
327 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
328 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
329 // | |
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
330 // .____________.
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
331 // x,z+1 x+1,z+1
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
332 memcpy(&array_73D150[0], &pTerrainVertices[z * 128 + x], sizeof(RenderVertexSoft));//x, z
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
333 array_73D150[0].u = 0;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
334 array_73D150[0].v = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
335 memcpy(&array_73D150[1], &pTerrainVertices[z * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
336 array_73D150[1].u = 1;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
337 array_73D150[1].v = 0;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
338 memcpy(&array_73D150[2], &pTerrainVertices[(z + 1) * 128 + x + 1], sizeof(RenderVertexSoft));//x + 1, z + 1
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
339 array_73D150[2].u = 1;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
340 array_73D150[2].v = 1;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
341 memcpy(&array_73D150[3], &pTerrainVertices[(z + 1) * 128 + x], sizeof(RenderVertexSoft));//x, z + 1
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
342 array_73D150[3].u = 0;
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
343 array_73D150[3].v = 1;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
344 //v58 = 0;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
345 //if (v58 == 4) // if all y == first y; primitive in xz plane
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
346 //pTile->field_32 |= 0x0001;
1427
Ritor1
parents: 1424
diff changeset
347 pTilePolygon->pODMFace = nullptr;
Ritor1
parents: 1424
diff changeset
348 pTilePolygon->uNumVertices = 4;
Ritor1
parents: 1424
diff changeset
349 pTilePolygon->field_59 = 5;
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
350
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
351 //shading (çàòåíåíèå)----------------------------------------------------------------------------
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
352 //uint norm_idx = pTerrainNormalIndices[2 * (z * 128 + x) + 1];
1424
5930342f092b fall to the water
Ritor1
parents: 1413
diff changeset
353 uint norm_idx = pTerrainNormalIndices[2 * (x * 128 + z) + 2];
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
354 assert(norm_idx < uNumTerrainNormals);
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
355
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
356 Vec3_float_* norm = &pTerrainNormals[norm_idx];
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
357 float _f = ((norm->x * (float)pOutdoor->vSunlight.x / 65536.0) -
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
358 (norm->y * (float)pOutdoor->vSunlight.y / 65536.0) -
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
359 (norm->z * (float)pOutdoor->vSunlight.z / 65536.0));
1427
Ritor1
parents: 1424
diff changeset
360 pTilePolygon->dimming_level = 20.0 - floorf(20.0 * _f + 0.5f);
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
361 if ( norm_idx < 0 || norm_idx > uNumTerrainNormals - 1 )
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
362 norm = 0;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
363 else
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
364 norm = &pTerrainNormals[norm_idx];
2322
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
365 //pGame->pLightmapBuilder->StackLights_TerrainFace(norm, &Light_tile_dist, array_50AC10, 4, 1);//Ritor1: slows
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
366 //pDecalBuilder->_49BE8A(pTilePolygon, norm, &Light_tile_dist, array_50AC10, 4, 1);
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
367 //unsigned int a5 = 4;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
368 //----------------------------------------------------------------------------
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
369
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
370 ++pODMRenderParams->uNumPolygons;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
371 ++pODMRenderParams->field_44;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
372 assert(pODMRenderParams->uNumPolygons < 20000);
265
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
373
1427
Ritor1
parents: 1424
diff changeset
374 pTilePolygon->uBModelID = 0;
Ritor1
parents: 1424
diff changeset
375 pTilePolygon->uBModelFaceID = 0;
Ritor1
parents: 1424
diff changeset
376 pTilePolygon->field_50 = (8 * (0 | (0 << 6))) | 6;
Ritor1
parents: 1424
diff changeset
377 for (unsigned int k = 0; k < pTilePolygon->uNumVertices; ++k)
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
378 {
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
379 memcpy(&array_50AC10[k], &array_73D150[k], sizeof(struct RenderVertexSoft));
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
380 array_50AC10[k]._rhw = 1.0 / (array_73D150[k].vWorldViewPosition.x + 0.0000001000000011686097);
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
381 }
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
382 //---------Draw distance(Äàëüíîñòü îòðèñîâêè)-------------------------------
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
383 int temp = pODMRenderParams->shading_dist_mist;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
384 if ( draw_terrain_dist_mist )
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
385 pODMRenderParams->shading_dist_mist = 0x5000;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
386 bool neer_clip = array_73D150[0].vWorldViewPosition.x < 8.0
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
387 || array_73D150[1].vWorldViewPosition.x < 8.0
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
388 || array_73D150[2].vWorldViewPosition.x < 8.0
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
389 || array_73D150[3].vWorldViewPosition.x < 8.0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
390 bool far_clip = (double)pODMRenderParams->shading_dist_mist < array_73D150[0].vWorldViewPosition.x
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
391 || (double)pODMRenderParams->shading_dist_mist < array_73D150[1].vWorldViewPosition.x
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
392 || (double)pODMRenderParams->shading_dist_mist < array_73D150[2].vWorldViewPosition.x
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
393 || (double)pODMRenderParams->shading_dist_mist < array_73D150[3].vWorldViewPosition.x;
2322
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
394
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
395 /* int v33 = 0;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
396 static stru154 static_sub_0048034E_stru_154;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
397 pGame->pLightmapBuilder->std__vector_000004_size = 0;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
398 if ( stru_F8AD28.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0 )
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
399 {
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
400 if ( neer_clip )
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
401 v33 = 3;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
402 else
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
403 v33 = far_clip != 0 ? 5 : 0;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
404 static_sub_0048034E_stru_154.ClassifyPolygon(norm, Light_tile_dist);
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
405 if ( pDecalBuilder->uNumDecals > 0 )
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
406 pDecalBuilder->ApplyDecals(31 - pTilePolygon->dimming_level, 4, &static_sub_0048034E_stru_154, a5, array_50AC10, 0, *(float *)&v33, -1);
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
407 }
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
408 if ( stru_F8AD28.uNumLightsApplied > 0 )
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
409 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &static_sub_0048034E_stru_154, a5, array_50AC10, 0, v33);*/
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
410
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
411 if ( !byte_4D864C || ~pGame->uFlags & 0x80 )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
412 {
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
413 //if ( neer_clip ) //Ritor1: Äà¸ò èñêàæåíèÿ íà ïîäú¸ìå, âîçìîæíî òðåáóåòñÿ ô-öèÿ Áåçüå
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
414 //{
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
415 // pTilePolygon->uNumVertices = ODM_NearClip(pTilePolygon->uNumVertices);
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
416 // ODM_Project(pTilePolygon->uNumVertices);
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
417 //}
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
418 if ( far_clip )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
419 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
420 pTilePolygon->uNumVertices = ODM_FarClip(pTilePolygon->uNumVertices);
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
421 ODM_Project(pTilePolygon->uNumVertices);
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
422 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
423 }
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
424 pODMRenderParams->shading_dist_mist = temp;
140
f4d7a9a8c363 Walk/run and other actions
Nomad
parents: 121
diff changeset
425
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
426 // check the transparency and texture (tiles) mapping (ïðîâåðêà ïðîçðà÷íîñòè è íàëîæåíèå òåêñòóð (òàéëîâ))----------------------
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
427 bool transparent = false;
1427
Ritor1
parents: 1424
diff changeset
428 if ( !( pTilePolygon->flags & 1 ) ) // íå ïîääåðæèâàåòñÿ TextureFrameTable
Ritor1
parents: 1424
diff changeset
429 {
Ritor1
parents: 1424
diff changeset
430 if ( /*pTile->flags & 2 && */pTilePolygon->uTileBitmapID == pRenderer->hd_water_tile_id)
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
431 {
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
432 //transparent = false;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
433 v6 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame];
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
434 }
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
435 else
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
436 {
1427
Ritor1
parents: 1424
diff changeset
437 v6 = pTilePolygon->uTileBitmapID;
Ritor1
parents: 1424
diff changeset
438 if ( !_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5) )
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
439 transparent = true;
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
440 }
179
f102bbff6fd8 15.02.13 Water
Ritor1
parents: 169
diff changeset
441
140
f4d7a9a8c363 Walk/run and other actions
Nomad
parents: 121
diff changeset
442 assert(v6 < 1000); // many random crashes here
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
443
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
444 // for all shore tiles - draw a tile water under them since they're half-empty
1427
Ritor1
parents: 1424
diff changeset
445 if (!_strnicmp(pBitmaps_LOD->pTextures[pTilePolygon->uTileBitmapID].pName, "wtrdr", 5)) // all shore tile filenames are wtrdrXXX
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
446 DrawBorderTiles(pTilePolygon);
1427
Ritor1
parents: 1424
diff changeset
447
Ritor1
parents: 1424
diff changeset
448 pRenderer->DrawTerrainPolygon(pTilePolygon->uNumVertices, pTilePolygon, pBitmaps_LOD->pHardwareTextures[v6], transparent, true);
1338
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
449 }
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
450 //else //çäåñü óæå ïîãðàíè÷íûå òàéëû âîäû
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
451 //pTile->DrawBorderTiles();
9749edd941c6 shading terrain
Ritor1
parents: 1301
diff changeset
452 //--------------------------------------------------------------------------------------------------------------------------------
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
453
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
454 --pODMRenderParams->uNumPolygons;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
455 --pODMRenderParams->field_44;
106
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
456 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
457 }
efece1632349 8.02.13
Ritor1
parents: 105
diff changeset
458 }
0
Ritor1
parents:
diff changeset
459
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
460 //----- (004811A3) --------------------------------------------------------
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
461 void Render::DrawBorderTiles(struct Polygon *poly)
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
462 {
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
463 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false);
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
464 DrawTerrainPolygon(poly->uNumVertices, poly,
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
465 pBitmaps_LOD->pHardwareTextures[pHDWaterBitmapIDs[hd_water_current_frame]], false, true);
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
466
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
467 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true);
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
468 //DrawTerrainPolygon(poly->uNumVertices, poly, pBitmaps_LOD->pHardwareTextures[poly->uTileBitmapID], true, true);
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
469 }
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
470
0
Ritor1
parents:
diff changeset
471
Ritor1
parents:
diff changeset
472 //----- (0047BACF) --------------------------------------------------------
Ritor1
parents:
diff changeset
473 void Render::TransformBillboardsAndSetPalettesODM()
Ritor1
parents:
diff changeset
474 {
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
475 //int v0; // edi@1
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
476 //char *v1; // esi@2
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
477 //unsigned int v2; // edx@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
478 //int v3; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
479 //int v4; // edi@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
480 //int v5; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
481 //__int16 v6; // di@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
482 //int v7; // eax@3
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
483 //int v8; // ebx@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
484 // unsigned __int16 *v9; // eax@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
485 // char v10; // zf@9
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
486 //DWORD v11; // eax@13
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
487 // int v12; // eax@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
488 // int v13; // eax@14
0
Ritor1
parents:
diff changeset
489 RenderBillboardTransform_local0 billboard; // [sp+4h] [bp-60h]@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
490 // int v15; // [sp+54h] [bp-10h]@13
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
491 //int v16; // [sp+58h] [bp-Ch]@1
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
492 //int v17; // [sp+5Ch] [bp-8h]@2
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
493 // int v18; // [sp+60h] [bp-4h]@13
0
Ritor1
parents:
diff changeset
494
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
495 billboard.sParentBillboardID = -1;
0
Ritor1
parents:
diff changeset
496 billboard.pTarget = pRenderer->pTargetSurface;
Ritor1
parents:
diff changeset
497 billboard.pTargetZ = pRenderer->pActiveZBuffer;
Ritor1
parents:
diff changeset
498 billboard.uTargetPitch = pRenderer->uTargetSurfacePitch;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
499 billboard.uViewportX = pViewport->uViewportTL_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
500 billboard.uViewportY = pViewport->uViewportTL_Y;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
501 billboard.uViewportZ = pViewport->uViewportBR_X - 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
502 billboard.uViewportW = pViewport->uViewportBR_Y;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
503 pODMRenderParams->uNumBillboards = uNumBillboardsToDraw;
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 140
diff changeset
504
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
505 for (int i = 0; i < ::uNumBillboardsToDraw; ++i)
0
Ritor1
parents:
diff changeset
506 {
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
507 billboard.uScreenSpaceX = pBillboardRenderList[i].uScreenSpaceX;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
508 billboard.uScreenSpaceY = pBillboardRenderList[i].uScreenSpaceY;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
509 billboard.sParentBillboardID = i;
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
510 billboard._screenspace_x_scaler_packedfloat = pBillboardRenderList[i]._screenspace_x_scaler_packedfloat;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
511 billboard.sTintColor = pBillboardRenderList[i].sTintColor;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
512 billboard._screenspace_y_scaler_packedfloat = pBillboardRenderList[i]._screenspace_y_scaler_packedfloat;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
513 billboard.sZValue = pBillboardRenderList[i].sZValue;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
514 billboard.uFlags = pBillboardRenderList[i].field_1E;
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
515 if (pBillboardRenderList[i].HwSpriteID != -1)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
516 {
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
517 if (!pRenderer->pRenderD3D) __debugbreak(); // no sw rendering
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
518 //if (pRenderer->pRenderD3D)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
519 pRenderer->TransformBillboard(&billboard,
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
520 &pSprites_LOD->pHardwareSprites[pBillboardRenderList[i].HwSpriteID],
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
521 pBillboardRenderList[i].dimming_level, &pBillboardRenderList[i]);
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
522 /*else
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
523 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
524 assert(false);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
525
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
526 auto v1 = (char *)&pBillboard->uScreenSpaceY;
0
Ritor1
parents:
diff changeset
527 if ( *(v1 - 10) & 2 )
Ritor1
parents:
diff changeset
528 v9 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 0, 1);
Ritor1
parents:
diff changeset
529 else
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
530 v9 = sr_GetBillboardPalette((RenderBillboard *)(v1 - 40), *((short *)v1 - 7), pBillboard->sZValue, *((short *)v1 + 1));
0
Ritor1
parents:
diff changeset
531 v10 = (*(v1 - 9) & 1) == 0;
Ritor1
parents:
diff changeset
532 billboard.pPalette = v9;
Ritor1
parents:
diff changeset
533 if ( !v10 )
Ritor1
parents:
diff changeset
534 billboard.pPalette = pPaletteManager->field_261600[*((short *)v1 - 7)];
Ritor1
parents:
diff changeset
535 if ( !(billboard.uFlags & 0x40) && billboard.uFlags & 0x80 )
Ritor1
parents:
diff changeset
536 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
537 v12 = stru_5C6E00->Cos(i * 5 + GetTickCount());
0
Ritor1
parents:
diff changeset
538 v15 = abs(v12);
Ritor1
parents:
diff changeset
539 v18 = (unsigned __int64)(15i64 * v15) >> 16;
Ritor1
parents:
diff changeset
540 billboard.pPalette2 = PaletteManager::Get_Dark_or_Red_LUT(*((short *)v1 - 7), 15 - v18, 1);
Ritor1
parents:
diff changeset
541 }
Ritor1
parents:
diff changeset
542 v13 = *((short *)v1 - 8);
Ritor1
parents:
diff changeset
543 if ( v13 >= 0 )
733
700b58aac975 MonsterPopup preview doll fixed
Nomad
parents: 728
diff changeset
544 pSprites_LOD->pSpriteHeaders[v13].DrawSprite_sw(&billboard, 1);
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1409
diff changeset
545 }*/
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
546 }
0
Ritor1
parents:
diff changeset
547 }
Ritor1
parents:
diff changeset
548 }
Ritor1
parents:
diff changeset
549
Ritor1
parents:
diff changeset
550 //----- (0047AF11) --------------------------------------------------------
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
551 void Render::DrawSpriteObjects_ODM()
0
Ritor1
parents:
diff changeset
552 {
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
553 SpriteFrame *frame; // eax@10
0
Ritor1
parents:
diff changeset
554 unsigned int v6; // eax@10
Ritor1
parents:
diff changeset
555 int v9; // ecx@10
Ritor1
parents:
diff changeset
556 int v17; // ecx@25
Ritor1
parents:
diff changeset
557 int v18; // eax@25
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
558 // int v22; // ST3C_4@29
0
Ritor1
parents:
diff changeset
559 signed __int64 v23; // qtt@30
Ritor1
parents:
diff changeset
560 int v26; // eax@31
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
561 // char v27; // zf@31
0
Ritor1
parents:
diff changeset
562 int v30; // [sp+14h] [bp-2Ch]@23
Ritor1
parents:
diff changeset
563 int v37; // [sp+1Ch] [bp-24h]@23
Ritor1
parents:
diff changeset
564 int a6; // [sp+20h] [bp-20h]@10
Ritor1
parents:
diff changeset
565 int v42; // [sp+2Ch] [bp-14h]@23
Ritor1
parents:
diff changeset
566 int y; // [sp+30h] [bp-10h]@10
Ritor1
parents:
diff changeset
567 int x; // [sp+34h] [bp-Ch]@10
Ritor1
parents:
diff changeset
568 int z; // [sp+38h] [bp-8h]@10
Ritor1
parents:
diff changeset
569 signed __int16 v46; // [sp+3Ch] [bp-4h]@12
Ritor1
parents:
diff changeset
570
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
571 //v41 = 0;
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
572 for (int i = 0; i < uNumSpriteObjects; ++i)
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
573 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
574 SpriteObject* object = &pSpriteObjects[i];
515
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
575 //auto v0 = (char *)&pSpriteObjects[i].uSectorID;
cb0ad52d6a26 LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents: 430
diff changeset
576 //v0 = (char *)&pSpriteObjects[0].uSectorID;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
577 //do
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
578 //{
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
579 if (!object->uObjectDescID) // item probably pciked up
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
580 continue;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
581
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
582 assert(object->uObjectDescID < pObjectList->uNumObjects);
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
583 ObjectDesc* object_desc = &pObjectList->pObjects[object->uObjectDescID];
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
584 if (object_desc->NoSprite())
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
585 continue;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
586
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
587 //v1 = &pObjectList->pObjects[*((short *)v0 - 13)];
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
588 //if ( !(v1->uFlags & 1) )
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
589 //{
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
590 //v2 = *((short *)v0 - 14)
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
591 //v2 = object->uType;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
592 if ( (object->uType < 1000 || object->uType >= 10000) && (object->uType < 500 || object->uType >= 600)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
593 || pGame->pStru6Instance->_4A81CA(object) )
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
594 {
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
595 //a5 = *(short *)v0;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
596 x = object->vPosition.x;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
597 y = object->vPosition.y;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
598 z = object->vPosition.z;
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
599 frame = pSpriteFrameTable->GetFrame(object_desc->uSpriteID, object->uSpriteFrameID);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
600 a6 = frame->uGlowRadius * object->field_22_glow_radius_multiplier;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
601 v6 = stru_5C6E00->Atan2(object->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, object->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y);
430
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
602 //LOWORD(v7) = object->uFacing;
58b71c1af7d8 Objects are drawn (items, spells sfx)
Nomad
parents: 373
diff changeset
603 //v8 = v36;
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
604 v9 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + object->uFacing - v6) >> 8) & 7;
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
605 pBillboardRenderList[::uNumBillboardsToDraw].HwSpriteID = frame->pHwSpriteIDs[v9];
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
606 if ( frame->uFlags & 0x20 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
607 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
608 //v8 = v36;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
609 z -= fixpoint_mul(frame->scale, pSprites_LOD->pSpriteHeaders[(signed __int16)frame->pHwSpriteIDs[v9]].uHeight) / 2;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
610 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
611 v46 = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
612 if ( frame->uFlags & 2 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
613 v46 = 2;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
614 //v11 = (int *)(256 << v9);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
615 if ( (256 << v9) & frame->uFlags )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
616 v46 |= 4u;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
617 if ( frame->uFlags & 0x40000 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
618 v46 |= 0x40u;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
619 if ( frame->uFlags & 0x20000 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
620 LOBYTE(v46) = v46 | 0x80;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
621 if ( a6 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
622 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
623 //LOBYTE(v11) = _4E94D3_light_type;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
624 pMobileLightsStack->AddLight(x, y, z, object->uSectorID, a6, 0xFFu, 0xFFu, 0xFFu, _4E94D3_light_type);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
625 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
626 if (pGame->pIndoorCameraD3D->sRotationX)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
627 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
628 v30 = fixpoint_mul((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16, pGame->pIndoorCameraD3D->int_cosine_y)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
629 + fixpoint_mul((y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16, pGame->pIndoorCameraD3D->int_sine_y);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
630 v37 = fixpoint_mul((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16, pGame->pIndoorCameraD3D->int_sine_y);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
631 v42 = fixpoint_mul((z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16, pGame->pIndoorCameraD3D->int_sine_x)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
632 + fixpoint_mul(v30, pGame->pIndoorCameraD3D->int_cosine_x);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
633 if ( v42 >= 0x40000 && v42 <= pODMRenderParams->shading_dist_mist << 16 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
634 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
635 v17 = fixpoint_mul((y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16, pGame->pIndoorCameraD3D->int_cosine_y) - v37;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
636 v18 = fixpoint_mul((z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16, pGame->pIndoorCameraD3D->int_cosine_x)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
637 - fixpoint_mul(v30, pGame->pIndoorCameraD3D->int_sine_x);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
638 if ( abs(v42) >= abs(v17) )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
639 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
640 LODWORD(v23) = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
641 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
642
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
643 object->uAttributes |= 1;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
644 pBillboardRenderList[::uNumBillboardsToDraw].uPalette = frame->uPaletteIndex;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
645 pBillboardRenderList[::uNumBillboardsToDraw].uIndoorSectorID = object->uSectorID;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
646 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_x_scaler_packedfloat = fixpoint_mul(frame->scale, v23 / v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
647 pBillboardRenderList[::uNumBillboardsToDraw].pSpriteFrame = frame;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
648 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_y_scaler_packedfloat = fixpoint_mul(frame->scale, v23 / v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
649 pBillboardRenderList[::uNumBillboardsToDraw].field_1E = v46;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
650 pBillboardRenderList[::uNumBillboardsToDraw].world_x = x;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
651 pBillboardRenderList[::uNumBillboardsToDraw].world_y = y;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
652 pBillboardRenderList[::uNumBillboardsToDraw].world_z = z;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
653 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceX = pViewport->uScreenCenterX - ((signed int)(fixpoint_mul(v23 / v42, v17) + 0x8000) >> 16);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
654 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceY = pViewport->uScreenCenterY - (((unsigned int)fixpoint_mul(v23 / v42, v18) + 0x8000) >> 16);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
655 HIWORD(v26) = HIWORD(v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
656 LOWORD(v26) = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
657 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = v26 + (PID(OBJECT_Item,i));
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
658 pBillboardRenderList[::uNumBillboardsToDraw].dimming_level = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
659 pBillboardRenderList[::uNumBillboardsToDraw].sTintColor = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
660 if ( !(object->uAttributes & 0x20) )
0
Ritor1
parents:
diff changeset
661 {
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
662 if ( !pRenderer->pRenderD3D )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
663 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = 0;
0
Ritor1
parents:
diff changeset
664 }
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
665 //if (::uNumBillboardsToDraw >= 500)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
666 // return;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
667 assert(::uNumBillboardsToDraw < 500);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
668 ++::uNumBillboardsToDraw;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
669 ++uNumSpritesDrawnThisFrame;
0
Ritor1
parents:
diff changeset
670 }
2206
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
671 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
672 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
673 else
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
674 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
675 v42 = fixpoint_mul((y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16, pGame->pIndoorCameraD3D->int_sine_y)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
676 + fixpoint_mul((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16, pGame->pIndoorCameraD3D->int_cosine_y);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
677 if ( v42 >= 0x40000 && v42 <= pODMRenderParams->shading_dist_mist << 16 )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
678 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
679 v17 = fixpoint_mul((y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16, pGame->pIndoorCameraD3D->int_cosine_y)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
680 - fixpoint_mul(((x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16), pGame->pIndoorCameraD3D->int_sine_y);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
681 v18 = (z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
682 if ( abs(v42) >= abs(v17) )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
683 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
684 LODWORD(v23) = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
685 HIDWORD(v23) = SLOWORD(pODMRenderParams->int_fov_rad);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
686
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
687 object->uAttributes |= 1;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
688 pBillboardRenderList[::uNumBillboardsToDraw].uPalette = frame->uPaletteIndex;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
689 pBillboardRenderList[::uNumBillboardsToDraw].uIndoorSectorID = object->uSectorID;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
690 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_x_scaler_packedfloat = fixpoint_mul(frame->scale, v23 / v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
691 pBillboardRenderList[::uNumBillboardsToDraw].pSpriteFrame = frame;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
692 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_y_scaler_packedfloat = fixpoint_mul(frame->scale, v23 / v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
693 pBillboardRenderList[::uNumBillboardsToDraw].field_1E = v46;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
694 pBillboardRenderList[::uNumBillboardsToDraw].world_x = x;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
695 pBillboardRenderList[::uNumBillboardsToDraw].world_y = y;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
696 pBillboardRenderList[::uNumBillboardsToDraw].world_z = z;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
697 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceX = pViewport->uScreenCenterX - ((signed int)(fixpoint_mul(v23 / v42, v17) + 0x8000) >> 16);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
698 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceY = pViewport->uScreenCenterY - (((unsigned int)fixpoint_mul(v23 / v42, v18) + 0x8000) >> 16);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
699 HIWORD(v26) = HIWORD(v42);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
700 LOWORD(v26) = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
701 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = v26 + (PID(OBJECT_Item,i));
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
702 pBillboardRenderList[::uNumBillboardsToDraw].dimming_level = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
703 pBillboardRenderList[::uNumBillboardsToDraw].sTintColor = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
704 if ( !(object->uAttributes & 0x20) )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
705 {
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
706 if ( !pRenderer->pRenderD3D )
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
707 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = 0;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
708 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
709 //if (::uNumBillboardsToDraw >= 500)
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
710 // return;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
711 assert(::uNumBillboardsToDraw < 500);
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
712 ++::uNumBillboardsToDraw;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
713 ++uNumSpritesDrawnThisFrame;
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
714 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
715 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
716 }
15a327be07e2 DrawSpriteObjects_ODM() cleaned
Ritor1
parents: 2199
diff changeset
717 }
0
Ritor1
parents:
diff changeset
718 }
Ritor1
parents:
diff changeset
719 }
Ritor1
parents:
diff changeset
720
Ritor1
parents:
diff changeset
721 //----- (0049D9BC) --------------------------------------------------------
Ritor1
parents:
diff changeset
722 signed int __stdcall RenderD3D__DeviceEnumerator(GUID *lpGUID, const char *lpDevDesc, const char *lpDriverName, RenderD3D__DevInfo *pOut)
Ritor1
parents:
diff changeset
723 {
Ritor1
parents:
diff changeset
724 size_t v4; // eax@1
Ritor1
parents:
diff changeset
725 size_t v5; // eax@1
Ritor1
parents:
diff changeset
726 IUnknown *v6; // eax@10
Ritor1
parents:
diff changeset
727 size_t v7; // eax@13
Ritor1
parents:
diff changeset
728 DDDEVICEIDENTIFIER ddDevId; // [sp+4h] [bp-4F8h]@11
Ritor1
parents:
diff changeset
729 DDSURFACEDESC2 v10;/*int v10; // [sp+42Ch] [bp-D0h]@16
Ritor1
parents:
diff changeset
730 int v11; // [sp+430h] [bp-CCh]@16
Ritor1
parents:
diff changeset
731 int v12; // [sp+434h] [bp-C8h]@16
Ritor1
parents:
diff changeset
732 int v13; // [sp+438h] [bp-C4h]@16
Ritor1
parents:
diff changeset
733 int v14; // [sp+474h] [bp-88h]@16*/
Ritor1
parents:
diff changeset
734 DDSCAPS2 ddsCaps; // [sp+4A8h] [bp-54h]@14
Ritor1
parents:
diff changeset
735 unsigned int uFreeVideoMem; // [sp+4B8h] [bp-44h]@14
Ritor1
parents:
diff changeset
736 RenderD3D_aux aux; // [sp+4BCh] [bp-40h]@19
Ritor1
parents:
diff changeset
737 IDirect3D3 *pDirect3D3; // [sp+4C4h] [bp-38h]@18
Ritor1
parents:
diff changeset
738 int v19; // [sp+4C8h] [bp-34h]@16
Ritor1
parents:
diff changeset
739 RenderD3D_D3DDevDesc v20; // [sp+4CCh] [bp-30h]@1
Ritor1
parents:
diff changeset
740 LPDIRECTDRAW pDirectDraw; // [sp+4F4h] [bp-8h]@4
Ritor1
parents:
diff changeset
741 IDirectDraw4 *pDirectDraw4; // [sp+4F8h] [bp-4h]@7
Ritor1
parents:
diff changeset
742
Ritor1
parents:
diff changeset
743 v4 = strlen(lpDriverName);
Ritor1
parents:
diff changeset
744 v20.pDriverName = new char[v4 + 1];
Ritor1
parents:
diff changeset
745 v5 = strlen(lpDevDesc);
Ritor1
parents:
diff changeset
746 v20.pDeviceDesc = new char[v5 + 1];
Ritor1
parents:
diff changeset
747 strcpy(v20.pDriverName, lpDriverName);
Ritor1
parents:
diff changeset
748 strcpy(v20.pDeviceDesc, lpDevDesc);
Ritor1
parents:
diff changeset
749 if ( lpGUID )
Ritor1
parents:
diff changeset
750 {
Ritor1
parents:
diff changeset
751 v20.pGUID = new GUID;
Ritor1
parents:
diff changeset
752 memcpy(v20.pGUID, lpGUID, 0x10u);
Ritor1
parents:
diff changeset
753 }
Ritor1
parents:
diff changeset
754 else
Ritor1
parents:
diff changeset
755 v20.pGUID = 0;
Ritor1
parents:
diff changeset
756
Ritor1
parents:
diff changeset
757 if (FAILED(DirectDrawCreate(v20.pGUID, &pDirectDraw, 0)))
Ritor1
parents:
diff changeset
758 {
Ritor1
parents:
diff changeset
759 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
760 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
761 if ( v20.pGUID )
Ritor1
parents:
diff changeset
762 delete v20.pGUID;
Ritor1
parents:
diff changeset
763 }
Ritor1
parents:
diff changeset
764 else
Ritor1
parents:
diff changeset
765 {
Ritor1
parents:
diff changeset
766 if (FAILED(pDirectDraw->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pDirectDraw4)))
Ritor1
parents:
diff changeset
767 {
Ritor1
parents:
diff changeset
768 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
769 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
770 if ( v20.pGUID )
Ritor1
parents:
diff changeset
771 delete v20.pGUID;
Ritor1
parents:
diff changeset
772 v6 = (IUnknown *)pDirectDraw;
Ritor1
parents:
diff changeset
773 }
Ritor1
parents:
diff changeset
774 else
Ritor1
parents:
diff changeset
775 {
Ritor1
parents:
diff changeset
776 pDirectDraw->Release();
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
777 if (FAILED( pDirectDraw4->GetDeviceIdentifier(&ddDevId, 1)))
0
Ritor1
parents:
diff changeset
778 v20.pDDraw4DevDesc = 0;
Ritor1
parents:
diff changeset
779 else
Ritor1
parents:
diff changeset
780 {
Ritor1
parents:
diff changeset
781 v7 = strlen(ddDevId.szDescription);
Ritor1
parents:
diff changeset
782 v20.pDDraw4DevDesc = new char[v7 + 1];
Ritor1
parents:
diff changeset
783 strcpy(v20.pDDraw4DevDesc, ddDevId.szDescription);
Ritor1
parents:
diff changeset
784 }
Ritor1
parents:
diff changeset
785 memset(&ddsCaps, 0, 0x10u);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
786 if (FAILED(pDirectDraw4->GetAvailableVidMem(&ddsCaps, (LPDWORD)&v20.uVideoMem, (LPDWORD)&uFreeVideoMem)))
0
Ritor1
parents:
diff changeset
787 v20.uVideoMem = 0;
Ritor1
parents:
diff changeset
788 memset(&v10, 0, 0x7Cu);
Ritor1
parents:
diff changeset
789 v10.dwSize = 124;
Ritor1
parents:
diff changeset
790 v10.dwFlags = 6;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
791 v10.dwHeight = window->GetWidth();
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
792 v10.dwWidth = window->GetHeight();
0
Ritor1
parents:
diff changeset
793 v10.ddpfPixelFormat.dwSize = 32;
Ritor1
parents:
diff changeset
794
Ritor1
parents:
diff changeset
795 v19 = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
796 if ( FAILED(pDirectDraw4->EnumDisplayModes(0, 0, &v19, (LPDDENUMMODESCALLBACK2)DDrawDisplayModesEnumerator))
0
Ritor1
parents:
diff changeset
797 || !v19
Ritor1
parents:
diff changeset
798 || FAILED(pDirectDraw4->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D3)))
Ritor1
parents:
diff changeset
799 {
Ritor1
parents:
diff changeset
800 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
801 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
802 if ( v20.pDDraw4DevDesc )
Ritor1
parents:
diff changeset
803 free(v20.pDDraw4DevDesc);
Ritor1
parents:
diff changeset
804 if ( v20.pGUID )
Ritor1
parents:
diff changeset
805 delete v20.pGUID;
Ritor1
parents:
diff changeset
806 v6 = (IUnknown *)pDirectDraw4;
Ritor1
parents:
diff changeset
807 }
Ritor1
parents:
diff changeset
808 else
Ritor1
parents:
diff changeset
809 {
Ritor1
parents:
diff changeset
810 aux.pInfo = pOut;
Ritor1
parents:
diff changeset
811 aux.ptr_4 = &v20;
Ritor1
parents:
diff changeset
812 pDirect3D3->EnumDevices((LPD3DENUMDEVICESCALLBACK)D3DDeviceEnumerator, &aux);
Ritor1
parents:
diff changeset
813 delete [] v20.pDriverName;
Ritor1
parents:
diff changeset
814 delete [] v20.pDeviceDesc;
Ritor1
parents:
diff changeset
815 if ( v20.pDDraw4DevDesc )
Ritor1
parents:
diff changeset
816 free(v20.pDDraw4DevDesc);
Ritor1
parents:
diff changeset
817 if ( v20.pGUID )
Ritor1
parents:
diff changeset
818 delete v20.pGUID;
Ritor1
parents:
diff changeset
819 pDirectDraw4->Release();
Ritor1
parents:
diff changeset
820 v6 = (IUnknown *)pDirect3D3;
Ritor1
parents:
diff changeset
821 pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
822 }
Ritor1
parents:
diff changeset
823 }
Ritor1
parents:
diff changeset
824 v6->Release();
Ritor1
parents:
diff changeset
825 }
Ritor1
parents:
diff changeset
826 return 1;
Ritor1
parents:
diff changeset
827 }
Ritor1
parents:
diff changeset
828
Ritor1
parents:
diff changeset
829 //----- (0049D784) --------------------------------------------------------
Ritor1
parents:
diff changeset
830 HRESULT __stdcall D3DDeviceEnumerator(const GUID *lpGUID, const char *lpDeviceDesc, const char *lpDeviceName, D3DDEVICEDESC *pHWDesc, D3DDEVICEDESC *pSWDesc, RenderD3D_aux *a6)
Ritor1
parents:
diff changeset
831 {
Ritor1
parents:
diff changeset
832 int v6; // eax@1
Ritor1
parents:
diff changeset
833 signed int v7; // edi@1
Ritor1
parents:
diff changeset
834 signed int v8; // edi@14
Ritor1
parents:
diff changeset
835 size_t v9; // eax@30
Ritor1
parents:
diff changeset
836 size_t v10; // eax@30
Ritor1
parents:
diff changeset
837 size_t v11; // eax@30
Ritor1
parents:
diff changeset
838 size_t v12; // eax@30
Ritor1
parents:
diff changeset
839 size_t v13; // eax@30
Ritor1
parents:
diff changeset
840
Ritor1
parents:
diff changeset
841 v6 = pHWDesc->dwFlags;
Ritor1
parents:
diff changeset
842 v7 = -1;
Ritor1
parents:
diff changeset
843 if ( v6 )
Ritor1
parents:
diff changeset
844 {
Ritor1
parents:
diff changeset
845 if ( !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
846 v7 = 0;
Ritor1
parents:
diff changeset
847 if ( v6 && a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
848 v7 = 1;
Ritor1
parents:
diff changeset
849 }
Ritor1
parents:
diff changeset
850 if ( !strcmp(lpDeviceName, "RGB Emulation") && !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
851 v7 = 2;
Ritor1
parents:
diff changeset
852 if ( !strcmp(lpDeviceName, "Reference Rasterizer") && !a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
853 v7 = 3;
Ritor1
parents:
diff changeset
854 if ( v7 != -1 )
Ritor1
parents:
diff changeset
855 {
Ritor1
parents:
diff changeset
856 v8 = v7;
Ritor1
parents:
diff changeset
857 a6->pInfo[v8].bIsDeviceCompatible = 1;
Ritor1
parents:
diff changeset
858 a6->pInfo[v8].uCaps = 0;
Ritor1
parents:
diff changeset
859 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 0x10) )
Ritor1
parents:
diff changeset
860 a6->pInfo[v8].uCaps |= 2u;
Ritor1
parents:
diff changeset
861 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 2) )
Ritor1
parents:
diff changeset
862 a6->pInfo[v8].uCaps |= 4u;
Ritor1
parents:
diff changeset
863 if ( !(pHWDesc->dpcTriCaps.dwSrcBlendCaps & 1) )
Ritor1
parents:
diff changeset
864 a6->pInfo[v8].uCaps |= 8u;
Ritor1
parents:
diff changeset
865 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 0x20) )
Ritor1
parents:
diff changeset
866 a6->pInfo[v8].uCaps |= 0x10u;
Ritor1
parents:
diff changeset
867 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 2) )
Ritor1
parents:
diff changeset
868 a6->pInfo[v8].uCaps |= 0x20u;
Ritor1
parents:
diff changeset
869 if ( !(pHWDesc->dpcTriCaps.dwDestBlendCaps & 4) )
Ritor1
parents:
diff changeset
870 a6->pInfo[v8].uCaps |= 0x40u;
Ritor1
parents:
diff changeset
871 if ( !(BYTE1(pHWDesc->dwDevCaps) & 0x10) )
Ritor1
parents:
diff changeset
872 BYTE1(a6->pInfo[v8].uCaps) |= 1u;
Ritor1
parents:
diff changeset
873 if ( pHWDesc->dpcTriCaps.dwTextureCaps & 0x20 )
Ritor1
parents:
diff changeset
874 LOBYTE(a6->pInfo[v8].uCaps) |= 0x80u;
Ritor1
parents:
diff changeset
875 v9 = strlen(lpDeviceName);
Ritor1
parents:
diff changeset
876 a6->pInfo[v8].pName = new char[v9 + 1];
Ritor1
parents:
diff changeset
877 strcpy(a6->pInfo[v8].pName, lpDeviceName);
Ritor1
parents:
diff changeset
878 v10 = strlen(lpDeviceDesc);
Ritor1
parents:
diff changeset
879 a6->pInfo[v8].pDescription = new char[v10 + 1];
Ritor1
parents:
diff changeset
880 strcpy(a6->pInfo[v8].pDescription, lpDeviceDesc);
1631
8094f1706b1f operator new() -> malloc
Nomad
parents: 1584
diff changeset
881 a6->pInfo[v8].pGUID = new GUID;
0
Ritor1
parents:
diff changeset
882 memcpy(a6->pInfo[v8].pGUID, lpGUID, 0x10u);
Ritor1
parents:
diff changeset
883 v11 = strlen(a6->ptr_4->pDriverName);
Ritor1
parents:
diff changeset
884 a6->pInfo[v8].pDriverName = new char[v11 + 1];
Ritor1
parents:
diff changeset
885 strcpy(a6->pInfo[v8].pDriverName, a6->ptr_4->pDriverName);
Ritor1
parents:
diff changeset
886 v12 = strlen(a6->ptr_4->pDeviceDesc);
Ritor1
parents:
diff changeset
887 a6->pInfo[v8].pDeviceDesc = new char[v12 + 1];
Ritor1
parents:
diff changeset
888 strcpy(a6->pInfo[v8].pDeviceDesc, a6->ptr_4->pDeviceDesc);
Ritor1
parents:
diff changeset
889 v13 = strlen(a6->ptr_4->pDDraw4DevDesc);
Ritor1
parents:
diff changeset
890 a6->pInfo[v8].pDDraw4DevDesc = new char[v13 + 1];
Ritor1
parents:
diff changeset
891 strcpy(a6->pInfo[v8].pDDraw4DevDesc, a6->ptr_4->pDDraw4DevDesc);
Ritor1
parents:
diff changeset
892 if ( a6->ptr_4->pGUID )
Ritor1
parents:
diff changeset
893 {
Ritor1
parents:
diff changeset
894 a6->pInfo[v8].pDirectDrawGUID = new GUID;
Ritor1
parents:
diff changeset
895 memcpy(a6->pInfo[v8].pDirectDrawGUID, a6->ptr_4->pGUID, 0x10u);
Ritor1
parents:
diff changeset
896 }
Ritor1
parents:
diff changeset
897 else
Ritor1
parents:
diff changeset
898 {
Ritor1
parents:
diff changeset
899 a6->pInfo[v8].pDirectDrawGUID = 0;
Ritor1
parents:
diff changeset
900 }
Ritor1
parents:
diff changeset
901 a6->pInfo[v8].uVideoMem = a6->ptr_4->uVideoMem;
Ritor1
parents:
diff changeset
902 }
Ritor1
parents:
diff changeset
903 return 1;
Ritor1
parents:
diff changeset
904 }
Ritor1
parents:
diff changeset
905
Ritor1
parents:
diff changeset
906 //----- (0049D75C) --------------------------------------------------------
Ritor1
parents:
diff changeset
907 HRESULT __stdcall DDrawDisplayModesEnumerator(DDSURFACEDESC2 *pSurfaceDesc, __int16 *a2)
Ritor1
parents:
diff changeset
908 {
Ritor1
parents:
diff changeset
909 HRESULT result; // eax@3
Ritor1
parents:
diff changeset
910
Ritor1
parents:
diff changeset
911 if ( pSurfaceDesc->ddsCaps.dwCaps | 0x2000 && pSurfaceDesc->ddpfPixelFormat.dwRGBBitCount == 16 )
Ritor1
parents:
diff changeset
912 {
Ritor1
parents:
diff changeset
913 *a2 = 1;
Ritor1
parents:
diff changeset
914 result = 0;
Ritor1
parents:
diff changeset
915 }
Ritor1
parents:
diff changeset
916 else
Ritor1
parents:
diff changeset
917 result = 1;
Ritor1
parents:
diff changeset
918 return result;
Ritor1
parents:
diff changeset
919 }
Ritor1
parents:
diff changeset
920
Ritor1
parents:
diff changeset
921 //----- (0047A95E) --------------------------------------------------------
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
922 void Render::PrepareDecorationsRenderList_ODM()
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
923 {
0
Ritor1
parents:
diff changeset
924 unsigned int v6; // edi@9
Ritor1
parents:
diff changeset
925 int v7; // eax@9
Ritor1
parents:
diff changeset
926 SpriteFrame *v8; // eax@9
Ritor1
parents:
diff changeset
927 unsigned __int16 *v10; // eax@9
Ritor1
parents:
diff changeset
928 int v13; // ecx@9
Ritor1
parents:
diff changeset
929 int v14; // ecx@20
Ritor1
parents:
diff changeset
930 char v15; // dl@20
Ritor1
parents:
diff changeset
931 signed int v16; // eax@20
Ritor1
parents:
diff changeset
932 int v17; // eax@23
Ritor1
parents:
diff changeset
933 int v18; // ecx@24
Ritor1
parents:
diff changeset
934 int v19; // eax@24
Ritor1
parents:
diff changeset
935 int v20; // ecx@24
Ritor1
parents:
diff changeset
936 int v21; // ebx@26
Ritor1
parents:
diff changeset
937 int v22; // eax@26
Ritor1
parents:
diff changeset
938 signed __int64 v24; // qtt@31
Ritor1
parents:
diff changeset
939 int v25; // ebx@31
Ritor1
parents:
diff changeset
940 __int16 v29; // cx@37
Ritor1
parents:
diff changeset
941 int v30; // ecx@37
Ritor1
parents:
diff changeset
942 int v31; // ebx@37
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 617
diff changeset
943 Particle_sw local_0; // [sp+Ch] [bp-98h]@7
0
Ritor1
parents:
diff changeset
944 unsigned __int16 *v37; // [sp+84h] [bp-20h]@9
Ritor1
parents:
diff changeset
945 int v38; // [sp+88h] [bp-1Ch]@9
Ritor1
parents:
diff changeset
946 int v40; // [sp+90h] [bp-14h]@24
Ritor1
parents:
diff changeset
947 int v41; // [sp+94h] [bp-10h]@24
Ritor1
parents:
diff changeset
948 int v42; // [sp+98h] [bp-Ch]@9
Ritor1
parents:
diff changeset
949 int b; // [sp+A0h] [bp-4h]@22
Ritor1
parents:
diff changeset
950
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
951 for (int i = 0; i < uNumLevelDecorations; ++i)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
952 {
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
953 //LevelDecoration* decor = &pLevelDecorations[i];
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
954 if ((!(pLevelDecorations[i].uFlags & LEVEL_DECORATION_OBELISK_CHEST)
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
955 || pLevelDecorations[i].IsObeliskChestActive()) && !(pLevelDecorations[i].uFlags & LEVEL_DECORATION_INVISIBLE))
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
956 {
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
957 DecorationDesc* decor_desc = &pDecorationList->pDecorations[pLevelDecorations[i].uDecorationDescID];
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
958 if ( (char)decor_desc->uFlags >= 0 )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
959 {
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
960 if ( !(decor_desc->uFlags & 0x22) )
0
Ritor1
parents:
diff changeset
961 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
962 v6 = pMiscTimer->uTotalGameTimeElapsed;
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
963 v7 = abs(pLevelDecorations[i].vPosition.x + pLevelDecorations[i].vPosition.y);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
964
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
965 #pragma region "New: seasons change"
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
966 extern bool change_seasons;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
967 if (change_seasons)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
968 switch (pParty->uCurrentMonth)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
969 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
970 // case 531 (tree60), 536 (tree65), 537 (tree66) have no autumn/winter sprites
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
971 case 11: case 0: case 1: // winter
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
972 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
973 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
974 //case 468: //bush02 grows on swamps, which are evergreeen actually
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
975 case 548: // flower10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
976 case 547: // flower09
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
977 case 541: // flower03
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
978 case 539: continue; // flower01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
979
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
980 case 483: // tree01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
981 case 486: // tree04
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
982 case 492: // tree10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
983 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 2);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
984 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 2, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
985 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
986
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
987 default:
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
988 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
989 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
990 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
991
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
992 case 2: case 3: case 4: // spring
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
993 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
994 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
995 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
996 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
997 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
998
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
999 case 8: case 9: case 10: // autumn
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1000 switch (decor_desc->uSpriteID)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1001 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1002 //case 468: //bush02 grows on swamps, which are evergreeen actually
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1003 case 548: // flower10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1004 case 547: // flower09
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1005 case 541: // flower03
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1006 case 539: continue; // flower01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1007
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1008 case 483: // tree01
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1009 case 486: // tree04
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1010 case 492: // tree10
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1011 pSpriteFrameTable->InitializeSprite(decor_desc->uSpriteID + 1);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1012 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID + 1, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1013 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1014
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1015 default:
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1016 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1017 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1018 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1019
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1020 case 5: case 6: case 7: // summer
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1021 //all green by default
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1022 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1023 break;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1024
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1025 default: assert(pParty->uCurrentMonth >= 0 && pParty->uCurrentMonth < 12);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1026 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1027 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1028 v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1029 #pragma endregion
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1030 //v8 = pSpriteFrameTable->GetFrame(decor_desc->uSpriteID, v6 + v7);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1031
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1032 v10 = (unsigned __int16 *)stru_5C6E00->Atan2(pLevelDecorations[i].vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x,
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1033 pLevelDecorations[i].vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1034 v38 = 0;
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1035 v13 = ((signed int)(stru_5C6E00->uIntegerPi + ((signed int)stru_5C6E00->uIntegerPi >> 3) + pLevelDecorations[i].field_10_y_rot - (signed int)v10) >> 8) & 7;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1036 v37 = (unsigned __int16 *)v13;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1037 if ( v8->uFlags & 2 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1038 v38 = 2;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1039 if ( (256 << v13) & v8->uFlags )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1040 v38 |= 4;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1041 if ( v8->uFlags & 0x40000 )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1042 v38 |= 0x40;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1043 if ( v8->uFlags & 0x20000 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1044 LOBYTE(v38) = v38 | 0x80;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1045 if ( v8->uGlowRadius )
0
Ritor1
parents:
diff changeset
1046 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1047 if ( pRenderer->pRenderD3D && pRenderer->bUseColoredLights )
0
Ritor1
parents:
diff changeset
1048 {
2322
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
1049 v14 = 255;//decor_desc->uColoredLightRed;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
1050 v15 = 255;//decor_desc->uColoredLightGreen;
a59892f99d31 for draw terrain
Ritor1
parents: 2321
diff changeset
1051 v16 = 255;//decor_desc->uColoredLightBlue;
0
Ritor1
parents:
diff changeset
1052 }
Ritor1
parents:
diff changeset
1053 else
Ritor1
parents:
diff changeset
1054 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1055 v16 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1056 v14 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1057 v15 = 255;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1058 }
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1059 pStationaryLightsStack->AddLight(pLevelDecorations[i].vPosition.x, pLevelDecorations[i].vPosition.y, pLevelDecorations[i].vPosition.z + decor_desc->uDecorationHeight / 2,
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1060 v8->uGlowRadius, v14, v15, v16, _4E94D0_light_type);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1061 }
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1062 v17 = (pLevelDecorations[i].vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
1063 if (pGame->pIndoorCameraD3D->sRotationX)
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1064 {
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1065 v40 = (pLevelDecorations[i].vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
1066 v18 = fixpoint_mul(v17, pGame->pIndoorCameraD3D->int_cosine_y) + fixpoint_mul(v40, pGame->pIndoorCameraD3D->int_sine_y);
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1067 v41 = fixpoint_mul((pLevelDecorations[i].vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16, pGame->pIndoorCameraD3D->int_sine_x);
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
1068 v19 = fixpoint_mul(v18, pGame->pIndoorCameraD3D->int_cosine_x);
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1069 v20 = v19 + fixpoint_mul((pLevelDecorations[i].vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16, pGame->pIndoorCameraD3D->int_sine_x);
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
1070 if ( v20 >= 0x40000 && v20 <= pODMRenderParams->shading_dist_mist << 16 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1071 {
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1072 v21 = fixpoint_mul(v40, pGame->pIndoorCameraD3D->int_cosine_y) - fixpoint_mul(v17, pGame->pIndoorCameraD3D->int_sine_y);
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1073 v22 = fixpoint_mul((pLevelDecorations[i].vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16, pGame->pIndoorCameraD3D->int_cosine_x) - fixpoint_mul(v18, pGame->pIndoorCameraD3D->int_sine_x);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1074 if ( 2 * abs(v20) >= abs(v21) )
0
Ritor1
parents:
diff changeset
1075 {
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1076 LODWORD(v24) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1077 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1078 v25 = pViewport->uScreenCenterX - ((signed int)(fixpoint_mul(v24 / v20, v21) + 0x8000) >> 16);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1079 v40 = pViewport->uScreenCenterY - ((signed int)(fixpoint_mul(v24 / v20, v22) + 0x8000) >> 16);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1080 v41 = fixpoint_mul(v8->scale, v24 / v20);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1081 if ( pRenderer->pRenderD3D )
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1082 b = fixpoint_mul(pSprites_LOD->pHardwareSprites[v8->pHwSpriteIDs[(int)v37]].uBufferWidth / 2, v41);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1083 else
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1084 b = fixpoint_mul(pSprites_LOD->pSpriteHeaders[v8->pHwSpriteIDs[(int)v37]].uWidth / 2, v41);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1085 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X )
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1086 {
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1087 if (::uNumBillboardsToDraw >= 500)
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1088 return;
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
1089 pBillboardRenderList[::uNumBillboardsToDraw].HwSpriteID = v8->pHwSpriteIDs[(int)v37];
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1090 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_x_scaler_packedfloat = v41;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1091 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_y_scaler_packedfloat = v41;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1092 v29 = v38;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1093 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceX = v25;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1094 HIBYTE(v29) |= 2;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1095 pBillboardRenderList[::uNumBillboardsToDraw].uPalette = v8->uPaletteIndex;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1096 pBillboardRenderList[::uNumBillboardsToDraw].field_1E = v29;
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1097 pBillboardRenderList[::uNumBillboardsToDraw].world_x = pLevelDecorations[i].vPosition.x;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1098 pBillboardRenderList[::uNumBillboardsToDraw].world_y = pLevelDecorations[i].vPosition.y;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1099 pBillboardRenderList[::uNumBillboardsToDraw].world_z = pLevelDecorations[i].vPosition.z;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1100 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceY = v40;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1101 HIWORD(v30) = HIWORD(v20);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1102 v31 = PID(OBJECT_Decoration,i);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1103 LOWORD(v30) = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1104 pBillboardRenderList[::uNumBillboardsToDraw].uIndoorSectorID = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1105 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = v30 + v31;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1106 pBillboardRenderList[::uNumBillboardsToDraw].dimming_level = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1107 pBillboardRenderList[::uNumBillboardsToDraw].pSpriteFrame = v8;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1108 pBillboardRenderList[::uNumBillboardsToDraw].sTintColor = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1109 ::uNumBillboardsToDraw++;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1110 ++uNumDecorationsDrawnThisFrame;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1111 }
0
Ritor1
parents:
diff changeset
1112 }
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1113 continue;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1114 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1115 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1116 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1117 {
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1118 v42 = (pLevelDecorations[i].vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x) << 16;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1119 v40 = (pLevelDecorations[i].vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y) << 16;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1120 v20 = fixpoint_mul(v17, pGame->pIndoorCameraD3D->int_cosine_y) + fixpoint_mul(v40, pGame->pIndoorCameraD3D->int_sine_y);
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
1121 if ( v20 >= 0x40000 && v20 <= pODMRenderParams->shading_dist_mist << 16 )
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1122 {
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1123 v21 = fixpoint_mul(v40, pGame->pIndoorCameraD3D->int_cosine_y) - fixpoint_mul(v42, pGame->pIndoorCameraD3D->int_sine_y);
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1124 v22 = (pLevelDecorations[i].vPosition.z - pGame->pIndoorCameraD3D->vPartyPos.z) << 16;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1125 v42 = v22;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1126 if ( 2 * abs(v20) >= abs(v21) )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1127 {
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1128 LODWORD(v24) = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1129 HIDWORD(v24) = SLOWORD(pODMRenderParams->int_fov_rad);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1130 v25 = pViewport->uScreenCenterX - ((signed int)(fixpoint_mul(v24 / v20, v21) + 0x8000) >> 16);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1131 v40 = pViewport->uScreenCenterY - ((signed int)(fixpoint_mul(v24 / v20, v42) + 0x8000) >> 16);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1132 v41 = fixpoint_mul(v8->scale, v24 / v20);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1133 if ( pRenderer->pRenderD3D )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1134 b = fixpoint_mul(pSprites_LOD->pHardwareSprites[v8->pHwSpriteIDs[(int)v37]].uBufferWidth / 2, v41);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1135 else
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1136 b = fixpoint_mul(pSprites_LOD->pSpriteHeaders[v8->pHwSpriteIDs[(int)v37]].uWidth / 2, v41);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1137 if ( b + v25 >= (signed int)pViewport->uViewportTL_X && v25 - b <= (signed int)pViewport->uViewportBR_X )
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1138 {
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1139 if (::uNumBillboardsToDraw >= 500)
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1140 return;
2226
5944810e88e2 occasionally pRenderer->pBillboardRenderListD3D array elements are not correct (0xcdcdcdcd) fix
Ritor1
parents: 2221
diff changeset
1141 pBillboardRenderList[::uNumBillboardsToDraw].HwSpriteID = v8->pHwSpriteIDs[(int)v37];
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1142 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_x_scaler_packedfloat = v41;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1143 pBillboardRenderList[::uNumBillboardsToDraw]._screenspace_y_scaler_packedfloat = v41;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1144 v29 = v38;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1145 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceX = v25;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1146 HIBYTE(v29) |= 2;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1147 pBillboardRenderList[::uNumBillboardsToDraw].uPalette = v8->uPaletteIndex;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1148 pBillboardRenderList[::uNumBillboardsToDraw].field_1E = v29;
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1149 pBillboardRenderList[::uNumBillboardsToDraw].world_x = pLevelDecorations[i].vPosition.x;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1150 pBillboardRenderList[::uNumBillboardsToDraw].world_y = pLevelDecorations[i].vPosition.y;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1151 pBillboardRenderList[::uNumBillboardsToDraw].world_z = pLevelDecorations[i].vPosition.z;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1152 pBillboardRenderList[::uNumBillboardsToDraw].uScreenSpaceY = v40;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1153 HIWORD(v30) = HIWORD(v20);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1154 v31 = PID(OBJECT_Decoration,i);
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1155 LOWORD(v30) = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1156 pBillboardRenderList[::uNumBillboardsToDraw].uIndoorSectorID = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1157 pBillboardRenderList[::uNumBillboardsToDraw].sZValue = v30 + v31;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1158 pBillboardRenderList[::uNumBillboardsToDraw].dimming_level = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1159 pBillboardRenderList[::uNumBillboardsToDraw].pSpriteFrame = v8;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1160 pBillboardRenderList[::uNumBillboardsToDraw].sTintColor = 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1161 ::uNumBillboardsToDraw++;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1162 ++uNumDecorationsDrawnThisFrame;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1163 }
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1164 }
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1165 continue;
0
Ritor1
parents:
diff changeset
1166 }
Ritor1
parents:
diff changeset
1167 }
Ritor1
parents:
diff changeset
1168 }
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1169 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1170 else
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1171 {
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1172 memset(&local_0, 0, 0x68);
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1173 local_0.type = ParticleType_Bitmap | ParticleType_Rotating | ParticleType_8;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1174 local_0.uDiffuse = 0xFF3C1E;
2274
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1175 local_0.x = (double)pLevelDecorations[i].vPosition.x;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1176 local_0.y = (double)pLevelDecorations[i].vPosition.y;
90f56da08d76 small cleaning
Ritor1
parents: 2254
diff changeset
1177 local_0.z = (double)pLevelDecorations[i].vPosition.z;
1490
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1178 local_0.r = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1179 local_0.g = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1180 local_0.b = 0.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1181 local_0.flt_28 = 1.0;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1182 local_0.timeToLive = (rand() & 0x80) + 128;
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1183 local_0.uTextureID = pBitmaps_LOD->LoadTexture("effpar01");
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1184 pGame->pParticleEngine->AddParticle(&local_0);
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1185 }
db0dfdb9871e Fix indentation.
yoctozepto
parents: 1489
diff changeset
1186 }
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1187 }
0
Ritor1
parents:
diff changeset
1188 }
Ritor1
parents:
diff changeset
1189
Ritor1
parents:
diff changeset
1190 //----- (0049D717) --------------------------------------------------------
Ritor1
parents:
diff changeset
1191 HRESULT __stdcall D3DZBufferFormatEnumerator(DDPIXELFORMAT *Src, DDPIXELFORMAT *Dst)
Ritor1
parents:
diff changeset
1192 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1193 if ( Src->dwFlags & (0x400 | 0x2000))
0
Ritor1
parents:
diff changeset
1194 {
Ritor1
parents:
diff changeset
1195 if ( Src->dwRGBBitCount == 16 && !Src->dwRBitMask )
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1196 {
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1197 memcpy(Dst, Src, sizeof(DDPIXELFORMAT));
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1198 return 0;
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1199 }
0
Ritor1
parents:
diff changeset
1200 if ( !Dst->dwSize )
Ritor1
parents:
diff changeset
1201 {
2078
66cbc97b31fa fix transparent fonts
Gloval
parents: 2074
diff changeset
1202 memcpy(Dst, Src, sizeof(DDPIXELFORMAT));
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1203 return 1;
0
Ritor1
parents:
diff changeset
1204 }
Ritor1
parents:
diff changeset
1205 }
Ritor1
parents:
diff changeset
1206 return 1;
Ritor1
parents:
diff changeset
1207 }
Ritor1
parents:
diff changeset
1208
Ritor1
parents:
diff changeset
1209 //----- (0049DC28) --------------------------------------------------------
Ritor1
parents:
diff changeset
1210 void RenderD3D::GetAvailableDevices(RenderD3D__DevInfo **pOutDevices)
Ritor1
parents:
diff changeset
1211 {
Ritor1
parents:
diff changeset
1212 RenderD3D__DevInfo *v2; // eax@1
Ritor1
parents:
diff changeset
1213
Ritor1
parents:
diff changeset
1214 v2 = new RenderD3D__DevInfo[4];// 4 items
Ritor1
parents:
diff changeset
1215 *pOutDevices = v2;
Ritor1
parents:
diff changeset
1216 memset(v2, 0, 0xA0u);
1985
ef4dcee1b4a1 Multi-monitor support part1
zipi
parents: 1983
diff changeset
1217 DirectDrawEnumerateExA((LPDDENUMCALLBACKEXA)RenderD3D__DeviceEnumerator, *pOutDevices, DDENUM_ATTACHEDSECONDARYDEVICES);
0
Ritor1
parents:
diff changeset
1218 }
Ritor1
parents:
diff changeset
1219
Ritor1
parents:
diff changeset
1220 //----- (0049DC58) --------------------------------------------------------
Ritor1
parents:
diff changeset
1221 RenderD3D::RenderD3D()
Ritor1
parents:
diff changeset
1222 {
Ritor1
parents:
diff changeset
1223 this->pHost = 0;
Ritor1
parents:
diff changeset
1224 this->pDirect3D = 0;
Ritor1
parents:
diff changeset
1225 this->pUnk = 0;
Ritor1
parents:
diff changeset
1226 this->pBackBuffer = 0;
Ritor1
parents:
diff changeset
1227 this->pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1228 this->pZBuffer = 0;
Ritor1
parents:
diff changeset
1229 this->pDevice = 0;
Ritor1
parents:
diff changeset
1230 this->pViewport = 0;
Ritor1
parents:
diff changeset
1231 this->field_40 = 1;
Ritor1
parents:
diff changeset
1232 this->field_44 = 10;
Ritor1
parents:
diff changeset
1233 GetAvailableDevices(&this->pAvailableDevices);
Ritor1
parents:
diff changeset
1234 }
Ritor1
parents:
diff changeset
1235
Ritor1
parents:
diff changeset
1236 //----- (0049DC90) --------------------------------------------------------
Ritor1
parents:
diff changeset
1237 void RenderD3D::Release()
Ritor1
parents:
diff changeset
1238 {
Ritor1
parents:
diff changeset
1239 RenderD3D *v1; // esi@1
Ritor1
parents:
diff changeset
1240 IDirectDraw4 *v2; // eax@2
Ritor1
parents:
diff changeset
1241 signed int v3; // edi@4
Ritor1
parents:
diff changeset
1242 IDirect3DViewport3 *v4; // eax@22
Ritor1
parents:
diff changeset
1243 IUnknown *v5; // eax@24
Ritor1
parents:
diff changeset
1244 IDirectDrawSurface4 *v6; // eax@26
Ritor1
parents:
diff changeset
1245 IDirect3DDevice3 *v7; // eax@28
Ritor1
parents:
diff changeset
1246 IDirect3D3 *v8; // eax@30
Ritor1
parents:
diff changeset
1247 IDirectDrawSurface4 *v9; // eax@32
Ritor1
parents:
diff changeset
1248 IDirectDrawSurface4 *v10; // eax@34
Ritor1
parents:
diff changeset
1249 IDirectDraw4 *v11; // eax@36
Ritor1
parents:
diff changeset
1250
Ritor1
parents:
diff changeset
1251 v1 = this;
Ritor1
parents:
diff changeset
1252 if ( !this->bWindowed )
Ritor1
parents:
diff changeset
1253 {
Ritor1
parents:
diff changeset
1254 v2 = this->pHost;
Ritor1
parents:
diff changeset
1255 if ( v2 )
Ritor1
parents:
diff changeset
1256 {
Ritor1
parents:
diff changeset
1257 v2->RestoreDisplayMode();
Ritor1
parents:
diff changeset
1258 v1->pHost->SetCooperativeLevel(v1->hWindow, 8u);
Ritor1
parents:
diff changeset
1259 v1->pHost->FlipToGDISurface();
Ritor1
parents:
diff changeset
1260 }
Ritor1
parents:
diff changeset
1261 }
Ritor1
parents:
diff changeset
1262 v3 = 0;
Ritor1
parents:
diff changeset
1263 do
Ritor1
parents:
diff changeset
1264 {
Ritor1
parents:
diff changeset
1265 if ( v1->pAvailableDevices[v3].pDriverName )
Ritor1
parents:
diff changeset
1266 {
Ritor1
parents:
diff changeset
1267 free(v1->pAvailableDevices[v3].pDriverName);
Ritor1
parents:
diff changeset
1268 v1->pAvailableDevices[v3].pDriverName = 0;
Ritor1
parents:
diff changeset
1269 }
Ritor1
parents:
diff changeset
1270 if ( v1->pAvailableDevices[v3].pDeviceDesc )
Ritor1
parents:
diff changeset
1271 {
Ritor1
parents:
diff changeset
1272 free(v1->pAvailableDevices[v3].pDeviceDesc);
Ritor1
parents:
diff changeset
1273 v1->pAvailableDevices[v3].pDeviceDesc = 0;
Ritor1
parents:
diff changeset
1274 }
Ritor1
parents:
diff changeset
1275 if ( v1->pAvailableDevices[v3].pDDraw4DevDesc )
Ritor1
parents:
diff changeset
1276 {
Ritor1
parents:
diff changeset
1277 free(v1->pAvailableDevices[v3].pDDraw4DevDesc);
Ritor1
parents:
diff changeset
1278 v1->pAvailableDevices[v3].pDDraw4DevDesc = 0;
Ritor1
parents:
diff changeset
1279 }
Ritor1
parents:
diff changeset
1280 if ( v1->pAvailableDevices[v3].pDirectDrawGUID )
Ritor1
parents:
diff changeset
1281 {
Ritor1
parents:
diff changeset
1282 free(v1->pAvailableDevices[v3].pDirectDrawGUID);
Ritor1
parents:
diff changeset
1283 v1->pAvailableDevices[v3].pDirectDrawGUID = 0;
Ritor1
parents:
diff changeset
1284 }
Ritor1
parents:
diff changeset
1285 if ( v1->pAvailableDevices[v3].pName )
Ritor1
parents:
diff changeset
1286 {
Ritor1
parents:
diff changeset
1287 free(v1->pAvailableDevices[v3].pName);
Ritor1
parents:
diff changeset
1288 v1->pAvailableDevices[v3].pName = 0;
Ritor1
parents:
diff changeset
1289 }
Ritor1
parents:
diff changeset
1290 if ( v1->pAvailableDevices[v3].pDescription )
Ritor1
parents:
diff changeset
1291 {
Ritor1
parents:
diff changeset
1292 free(v1->pAvailableDevices[v3].pDescription);
Ritor1
parents:
diff changeset
1293 v1->pAvailableDevices[v3].pDescription = 0;
Ritor1
parents:
diff changeset
1294 }
Ritor1
parents:
diff changeset
1295 if ( v1->pAvailableDevices[v3].pGUID )
Ritor1
parents:
diff changeset
1296 {
Ritor1
parents:
diff changeset
1297 free(v1->pAvailableDevices[v3].pGUID);
Ritor1
parents:
diff changeset
1298 v1->pAvailableDevices[v3].pGUID = 0;
Ritor1
parents:
diff changeset
1299 }
Ritor1
parents:
diff changeset
1300 ++v3;
Ritor1
parents:
diff changeset
1301 }
Ritor1
parents:
diff changeset
1302 while ( v3 < 4 );
Ritor1
parents:
diff changeset
1303 if ( v1->pAvailableDevices )
Ritor1
parents:
diff changeset
1304 {
Ritor1
parents:
diff changeset
1305 free(v1->pAvailableDevices);
Ritor1
parents:
diff changeset
1306 v1->pAvailableDevices = 0;
Ritor1
parents:
diff changeset
1307 }
Ritor1
parents:
diff changeset
1308 v4 = v1->pViewport;
Ritor1
parents:
diff changeset
1309 if ( v4 )
Ritor1
parents:
diff changeset
1310 {
Ritor1
parents:
diff changeset
1311 v4->Release();
Ritor1
parents:
diff changeset
1312 v1->pViewport = 0;
Ritor1
parents:
diff changeset
1313 }
Ritor1
parents:
diff changeset
1314 v5 = v1->pUnk;
Ritor1
parents:
diff changeset
1315 if ( v5 )
Ritor1
parents:
diff changeset
1316 {
Ritor1
parents:
diff changeset
1317 v5->Release();
Ritor1
parents:
diff changeset
1318 v1->pUnk = 0;
Ritor1
parents:
diff changeset
1319 }
Ritor1
parents:
diff changeset
1320 v6 = v1->pZBuffer;
Ritor1
parents:
diff changeset
1321 if ( v6 )
Ritor1
parents:
diff changeset
1322 {
Ritor1
parents:
diff changeset
1323 v6->Release();
Ritor1
parents:
diff changeset
1324 v1->pZBuffer = 0;
Ritor1
parents:
diff changeset
1325 }
Ritor1
parents:
diff changeset
1326 v7 = v1->pDevice;
Ritor1
parents:
diff changeset
1327 if ( v7 )
Ritor1
parents:
diff changeset
1328 {
Ritor1
parents:
diff changeset
1329 v7->Release();
Ritor1
parents:
diff changeset
1330 v1->pDevice = 0;
Ritor1
parents:
diff changeset
1331 }
Ritor1
parents:
diff changeset
1332 v8 = v1->pDirect3D;
Ritor1
parents:
diff changeset
1333 if ( v8 )
Ritor1
parents:
diff changeset
1334 {
Ritor1
parents:
diff changeset
1335 v8->Release();
Ritor1
parents:
diff changeset
1336 v1->pDirect3D = 0;
Ritor1
parents:
diff changeset
1337 }
Ritor1
parents:
diff changeset
1338 v9 = v1->pBackBuffer;
Ritor1
parents:
diff changeset
1339 if ( v9 )
Ritor1
parents:
diff changeset
1340 {
Ritor1
parents:
diff changeset
1341 v9->Release();
Ritor1
parents:
diff changeset
1342 v1->pBackBuffer = 0;
Ritor1
parents:
diff changeset
1343 }
Ritor1
parents:
diff changeset
1344 v10 = v1->pFrontBuffer;
Ritor1
parents:
diff changeset
1345 if ( v10 )
Ritor1
parents:
diff changeset
1346 {
Ritor1
parents:
diff changeset
1347 v10->Release();
Ritor1
parents:
diff changeset
1348 v1->pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1349 }
Ritor1
parents:
diff changeset
1350 v11 = v1->pHost;
Ritor1
parents:
diff changeset
1351 if ( v11 )
Ritor1
parents:
diff changeset
1352 {
Ritor1
parents:
diff changeset
1353 v11->Release();
Ritor1
parents:
diff changeset
1354 v1->pHost = 0;
Ritor1
parents:
diff changeset
1355 }
Ritor1
parents:
diff changeset
1356 }
Ritor1
parents:
diff changeset
1357
Ritor1
parents:
diff changeset
1358 //----- (0049DE14) --------------------------------------------------------
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1359 bool RenderD3D::CreateDevice(unsigned int uDeviceID, int bWindowed, OSWindow *window)
0
Ritor1
parents:
diff changeset
1360 {
Ritor1
parents:
diff changeset
1361 //IDirectDraw4 *v8; // eax@12
Ritor1
parents:
diff changeset
1362 //IDirectDraw4 *v9; // eax@16
Ritor1
parents:
diff changeset
1363 //IDirectDraw4 *v10; // eax@20
Ritor1
parents:
diff changeset
1364 //IDirectDraw4 *v13; // eax@35
Ritor1
parents:
diff changeset
1365 const char *v23; // [sp-4h] [bp-DCh]@9
Ritor1
parents:
diff changeset
1366 const char *v24; // [sp-4h] [bp-DCh]@13
Ritor1
parents:
diff changeset
1367 const char *v25; // [sp-4h] [bp-DCh]@19
Ritor1
parents:
diff changeset
1368 DWORD v26; // [sp-4h] [bp-DCh]@30
Ritor1
parents:
diff changeset
1369 DDSCAPS2 v27; // [sp+Ch] [bp-CCh]@37
Ritor1
parents:
diff changeset
1370 DDSURFACEDESC2 ddsd2; // [sp+1Ch] [bp-BCh]@11
Ritor1
parents:
diff changeset
1371 D3DVIEWPORT2 d3dvp2; // [sp+98h] [bp-40h]@28
Ritor1
parents:
diff changeset
1372 IDirectDrawClipper *v30; // [sp+C4h] [bp-14h]@18
Ritor1
parents:
diff changeset
1373 LPDIRECTDRAW lpDD; // [sp+C8h] [bp-10h]@1
Ritor1
parents:
diff changeset
1374
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1375 auto hWnd = window->GetApiHandle();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1376 int game_width = window->GetWidth();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1377 int game_height = window->GetHeight();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1378
0
Ritor1
parents:
diff changeset
1379 this->bWindowed = bWindowed;
Ritor1
parents:
diff changeset
1380 this->hWindow = hWnd;
Ritor1
parents:
diff changeset
1381
Ritor1
parents:
diff changeset
1382 if (FAILED(DirectDrawCreate(pAvailableDevices[uDeviceID].pDirectDrawGUID, &lpDD, 0)))
Ritor1
parents:
diff changeset
1383 {
Ritor1
parents:
diff changeset
1384 sprintf(pErrorMessage, "Init - Failed to create DirectDraw interface.\n");
Ritor1
parents:
diff changeset
1385 return 0;
Ritor1
parents:
diff changeset
1386 }
Ritor1
parents:
diff changeset
1387
Ritor1
parents:
diff changeset
1388 if (FAILED(lpDD->QueryInterface(IID_IDirectDraw4, (LPVOID *)&pHost)))
Ritor1
parents:
diff changeset
1389 {
Ritor1
parents:
diff changeset
1390 sprintf(pErrorMessage, "Init - Failed to create DirectDraw4 interface.\n");
Ritor1
parents:
diff changeset
1391 if (lpDD)
Ritor1
parents:
diff changeset
1392 lpDD->Release();
Ritor1
parents:
diff changeset
1393 return 0;
Ritor1
parents:
diff changeset
1394 }
Ritor1
parents:
diff changeset
1395 lpDD->Release();
Ritor1
parents:
diff changeset
1396 lpDD = 0;
Ritor1
parents:
diff changeset
1397
Ritor1
parents:
diff changeset
1398 if (bWindowed && !pAvailableDevices[uDeviceID].pDirectDrawGUID)
Ritor1
parents:
diff changeset
1399 {
Ritor1
parents:
diff changeset
1400 if (FAILED(pHost->SetCooperativeLevel(hWnd, DDSCL_MULTITHREADED | DDSCL_NORMAL)))
Ritor1
parents:
diff changeset
1401 {
Ritor1
parents:
diff changeset
1402 v23 = "Init - Failed to set cooperative level.\n";
Ritor1
parents:
diff changeset
1403 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1404 LABEL_65:
Ritor1
parents:
diff changeset
1405 if (pHost)
Ritor1
parents:
diff changeset
1406 {
Ritor1
parents:
diff changeset
1407 pHost->Release();
Ritor1
parents:
diff changeset
1408 pHost = 0;
Ritor1
parents:
diff changeset
1409 }
Ritor1
parents:
diff changeset
1410 return 0;
Ritor1
parents:
diff changeset
1411 }
Ritor1
parents:
diff changeset
1412 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
1413 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1414 ddsd2.dwFlags = DDSD_CAPS;
Ritor1
parents:
diff changeset
1415 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
Ritor1
parents:
diff changeset
1416 if ( !pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) )
Ritor1
parents:
diff changeset
1417 {
Ritor1
parents:
diff changeset
1418 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1419 pHost->GetDisplayMode(&ddsd2);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1420 if ( FORCE_16_BITS && ddsd2.ddpfPixelFormat.dwRGBBitCount != 16 )
0
Ritor1
parents:
diff changeset
1421 {
Ritor1
parents:
diff changeset
1422 v24 = "Init - Desktop isn't in 16 bit mode.\n";
Ritor1
parents:
diff changeset
1423 goto LABEL_14;
Ritor1
parents:
diff changeset
1424 }
Ritor1
parents:
diff changeset
1425
Ritor1
parents:
diff changeset
1426 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT;
Ritor1
parents:
diff changeset
1427 ddsd2.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1428 ddsd2.dwWidth = game_width;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1429 ddsd2.dwHeight = game_height;
0
Ritor1
parents:
diff changeset
1430 if (pHost->CreateSurface(&ddsd2, &pBackBuffer, 0) )
Ritor1
parents:
diff changeset
1431 {
Ritor1
parents:
diff changeset
1432 v24 = "Init - Failed to create back buffer.\n";
Ritor1
parents:
diff changeset
1433 LABEL_14:
Ritor1
parents:
diff changeset
1434 sprintf(pErrorMessage, v24);
Ritor1
parents:
diff changeset
1435 if (pFrontBuffer)
Ritor1
parents:
diff changeset
1436 {
Ritor1
parents:
diff changeset
1437 pFrontBuffer->Release();
Ritor1
parents:
diff changeset
1438 pFrontBuffer = 0;
Ritor1
parents:
diff changeset
1439 }
Ritor1
parents:
diff changeset
1440 goto LABEL_65;
Ritor1
parents:
diff changeset
1441 }
Ritor1
parents:
diff changeset
1442 if ( pHost->CreateClipper(0, &v30, 0) )
Ritor1
parents:
diff changeset
1443 {
Ritor1
parents:
diff changeset
1444 v25 = "Init - Failed to create clipper.\n";
Ritor1
parents:
diff changeset
1445 goto LABEL_45;
Ritor1
parents:
diff changeset
1446 }
Ritor1
parents:
diff changeset
1447 v30->SetHWnd(0, hWnd);
Ritor1
parents:
diff changeset
1448 pFrontBuffer->SetClipper(v30);
Ritor1
parents:
diff changeset
1449
Ritor1
parents:
diff changeset
1450 v30->Release();
Ritor1
parents:
diff changeset
1451 v30 = 0;
Ritor1
parents:
diff changeset
1452
Ritor1
parents:
diff changeset
1453 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D);
Ritor1
parents:
diff changeset
1454
Ritor1
parents:
diff changeset
1455 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1456 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1457 ddsd2.dwWidth = game_width;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1458 ddsd2.dwHeight = game_height;
0
Ritor1
parents:
diff changeset
1459
Ritor1
parents:
diff changeset
1460 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1461 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator,
Ritor1
parents:
diff changeset
1462 &ddsd2.ddpfPixelFormat) )
Ritor1
parents:
diff changeset
1463 goto LABEL_21;
Ritor1
parents:
diff changeset
1464 if ( uDeviceID == 2 || uDeviceID == 3 )
Ritor1
parents:
diff changeset
1465 ddsd2.ddsCaps.dwCaps |= DDSCAPS_SYSTEMMEMORY;
Ritor1
parents:
diff changeset
1466
Ritor1
parents:
diff changeset
1467 if ( !pHost->CreateSurface(&ddsd2, &pZBuffer, 0) )
Ritor1
parents:
diff changeset
1468 {
Ritor1
parents:
diff changeset
1469 if ( !pBackBuffer->AddAttachedSurface(pZBuffer) )
Ritor1
parents:
diff changeset
1470 {
Ritor1
parents:
diff changeset
1471 if ( !pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1472 pBackBuffer,
Ritor1
parents:
diff changeset
1473 &pDevice,
Ritor1
parents:
diff changeset
1474 0) )
Ritor1
parents:
diff changeset
1475 {
Ritor1
parents:
diff changeset
1476 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2));
Ritor1
parents:
diff changeset
1477 d3dvp2.dvClipWidth = 2.0;
Ritor1
parents:
diff changeset
1478 d3dvp2.dvClipY = 1.0;
Ritor1
parents:
diff changeset
1479 d3dvp2.dvClipHeight = 2.0;
Ritor1
parents:
diff changeset
1480 d3dvp2.dvMaxZ = 1.0;
Ritor1
parents:
diff changeset
1481 d3dvp2.dvMinZ = 0.0;
Ritor1
parents:
diff changeset
1482 goto LABEL_54;
Ritor1
parents:
diff changeset
1483 }
Ritor1
parents:
diff changeset
1484 LABEL_51:
Ritor1
parents:
diff changeset
1485 sprintf(pErrorMessage, "Init - Failed to create D3D device.\n");
Ritor1
parents:
diff changeset
1486 if (pDirect3D)
Ritor1
parents:
diff changeset
1487 {
Ritor1
parents:
diff changeset
1488 pDirect3D->Release();
Ritor1
parents:
diff changeset
1489 pDirect3D = 0;
Ritor1
parents:
diff changeset
1490 }
Ritor1
parents:
diff changeset
1491 goto LABEL_59;
Ritor1
parents:
diff changeset
1492 }
Ritor1
parents:
diff changeset
1493 LABEL_48:
Ritor1
parents:
diff changeset
1494 sprintf(pErrorMessage, "Init - Failed to attach z-buffer to back buffer.\n");
Ritor1
parents:
diff changeset
1495 if (pZBuffer)
Ritor1
parents:
diff changeset
1496 {
Ritor1
parents:
diff changeset
1497 pZBuffer->Release();
Ritor1
parents:
diff changeset
1498 pZBuffer = 0;
Ritor1
parents:
diff changeset
1499 }
Ritor1
parents:
diff changeset
1500 goto LABEL_61;
Ritor1
parents:
diff changeset
1501 }
Ritor1
parents:
diff changeset
1502 goto LABEL_44;
Ritor1
parents:
diff changeset
1503 }
Ritor1
parents:
diff changeset
1504 LABEL_36:
Ritor1
parents:
diff changeset
1505 v23 = "Init - Failed to create front buffer.\n";
Ritor1
parents:
diff changeset
1506 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1507 goto LABEL_65;
Ritor1
parents:
diff changeset
1508 }
Ritor1
parents:
diff changeset
1509 if ( uDeviceID == 1 )
Ritor1
parents:
diff changeset
1510 v26 = 1045;
Ritor1
parents:
diff changeset
1511 else
Ritor1
parents:
diff changeset
1512 v26 = 1041;
Ritor1
parents:
diff changeset
1513 if (pHost->SetCooperativeLevel(hWnd, v26) )
Ritor1
parents:
diff changeset
1514 {
Ritor1
parents:
diff changeset
1515 v23 = "Init - Failed to set cooperative level.\n";
Ritor1
parents:
diff changeset
1516 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1517 goto LABEL_65;
Ritor1
parents:
diff changeset
1518 }
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1519 if (pHost->SetDisplayMode(window->GetWidth(), window->GetHeight(), 16, 0, 0) )
0
Ritor1
parents:
diff changeset
1520 {
Ritor1
parents:
diff changeset
1521 v23 = "Init - Failed to set display mode.\n";
Ritor1
parents:
diff changeset
1522 sprintf(pErrorMessage, v23);
Ritor1
parents:
diff changeset
1523 goto LABEL_65;
Ritor1
parents:
diff changeset
1524 }
Ritor1
parents:
diff changeset
1525
Ritor1
parents:
diff changeset
1526 memset(&ddsd2, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
1527 ddsd2.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
1528 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
Ritor1
parents:
diff changeset
1529 ddsd2.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE | DDSCAPS_FLIP | DDSCAPS_COMPLEX;
Ritor1
parents:
diff changeset
1530 ddsd2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
1531 if ( pHost->CreateSurface(&ddsd2, &pFrontBuffer, 0) )
Ritor1
parents:
diff changeset
1532 goto LABEL_36;
Ritor1
parents:
diff changeset
1533 //a3a = &pBackBuffer;
Ritor1
parents:
diff changeset
1534 //v14 = *v34;
Ritor1
parents:
diff changeset
1535 memset(&v27, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
1536 v27.dwCaps = DDSCAPS_BACKBUFFER;
Ritor1
parents:
diff changeset
1537 //v33 = (IDirect3DDevice3 **)v14->GetAttachedSurface(&v27, &pBackBuffer);
Ritor1
parents:
diff changeset
1538 //hWnda = &pDirect3D;
Ritor1
parents:
diff changeset
1539 pHost->QueryInterface(IID_IDirect3D3, (LPVOID *)&pDirect3D);
Ritor1
parents:
diff changeset
1540 if (FAILED(pFrontBuffer->GetAttachedSurface(&v27, &pBackBuffer)))
Ritor1
parents:
diff changeset
1541 {
Ritor1
parents:
diff changeset
1542 v25 = "Init - Failed to get D3D interface.\n";
Ritor1
parents:
diff changeset
1543 goto LABEL_45;
Ritor1
parents:
diff changeset
1544 }
Ritor1
parents:
diff changeset
1545
Ritor1
parents:
diff changeset
1546 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1547 ddsd2.ddsCaps.dwCaps = DDSCAPS_ZBUFFER;
Ritor1
parents:
diff changeset
1548 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
1549 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
1550 if ( pDirect3D->EnumZBufferFormats(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1551 (HRESULT (__stdcall *)(DDPIXELFORMAT *, void *))D3DZBufferFormatEnumerator,
Ritor1
parents:
diff changeset
1552 &ddsd2.ddpfPixelFormat) )
Ritor1
parents:
diff changeset
1553 {
Ritor1
parents:
diff changeset
1554 LABEL_21:
Ritor1
parents:
diff changeset
1555 v25 = "Init - Failed to enumerate Z buffer formats.\n";
Ritor1
parents:
diff changeset
1556 goto LABEL_45;
Ritor1
parents:
diff changeset
1557 }
Ritor1
parents:
diff changeset
1558 if ( uDeviceID == 2 || uDeviceID == 3 )
Ritor1
parents:
diff changeset
1559 BYTE1(ddsd2.ddsCaps.dwCaps) |= 8u;
Ritor1
parents:
diff changeset
1560 //uDeviceIDa = &pZBuffer;
Ritor1
parents:
diff changeset
1561 if (pHost->CreateSurface(&ddsd2, &pZBuffer, 0) )
Ritor1
parents:
diff changeset
1562 {
Ritor1
parents:
diff changeset
1563 LABEL_44:
Ritor1
parents:
diff changeset
1564 v25 = "Init - Failed to create z-buffer.\n";
Ritor1
parents:
diff changeset
1565 LABEL_45:
Ritor1
parents:
diff changeset
1566 sprintf(pErrorMessage, v25);
Ritor1
parents:
diff changeset
1567 if (pBackBuffer)
Ritor1
parents:
diff changeset
1568 {
Ritor1
parents:
diff changeset
1569 pBackBuffer->Release();
Ritor1
parents:
diff changeset
1570 pBackBuffer = 0;
Ritor1
parents:
diff changeset
1571 }
Ritor1
parents:
diff changeset
1572 LABEL_63:
Ritor1
parents:
diff changeset
1573 //v19 = &pFrontBuffer;
Ritor1
parents:
diff changeset
1574 if (pFrontBuffer)
Ritor1
parents:
diff changeset
1575 {
Ritor1
parents:
diff changeset
1576 pFrontBuffer->Release();
Ritor1
parents:
diff changeset
1577 pFrontBuffer= 0;
Ritor1
parents:
diff changeset
1578 }
Ritor1
parents:
diff changeset
1579 goto LABEL_65;
Ritor1
parents:
diff changeset
1580 }
Ritor1
parents:
diff changeset
1581 if (pBackBuffer->AddAttachedSurface(pZBuffer))
Ritor1
parents:
diff changeset
1582 goto LABEL_48;
Ritor1
parents:
diff changeset
1583 //v33 = &pDevice;
Ritor1
parents:
diff changeset
1584 if (pDirect3D->CreateDevice(*pAvailableDevices[uDeviceID].pGUID,
Ritor1
parents:
diff changeset
1585 pBackBuffer,
Ritor1
parents:
diff changeset
1586 &pDevice,
Ritor1
parents:
diff changeset
1587 0) )
Ritor1
parents:
diff changeset
1588 goto LABEL_51;
Ritor1
parents:
diff changeset
1589 memset(&d3dvp2, 0, sizeof(D3DVIEWPORT2));
Ritor1
parents:
diff changeset
1590 d3dvp2.dvClipWidth = 2.0;
Ritor1
parents:
diff changeset
1591 d3dvp2.dvClipY = 1.0;
Ritor1
parents:
diff changeset
1592 d3dvp2.dvClipHeight = 2.0;
Ritor1
parents:
diff changeset
1593 d3dvp2.dvMaxZ = 1.0;
Ritor1
parents:
diff changeset
1594
Ritor1
parents:
diff changeset
1595 LABEL_54:
Ritor1
parents:
diff changeset
1596 d3dvp2.dwSize = sizeof(D3DVIEWPORT2);
Ritor1
parents:
diff changeset
1597 //v17 = *hWnda;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1598 d3dvp2.dwWidth = game_width;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
1599 d3dvp2.dwHeight = game_height;
0
Ritor1
parents:
diff changeset
1600 d3dvp2.dvClipX = -1.0;
Ritor1
parents:
diff changeset
1601 //v18 = v17->lpVtbl;
Ritor1
parents:
diff changeset
1602 //v32 = &v4->pViewport;
Ritor1
parents:
diff changeset
1603 if (pDirect3D->CreateViewport(&pViewport, 0))
Ritor1
parents:
diff changeset
1604 {
Ritor1
parents:
diff changeset
1605 sprintf(pErrorMessage, "Init - Failed to create viewport.\n");
Ritor1
parents:
diff changeset
1606 if (pDevice)
Ritor1
parents:
diff changeset
1607 {
Ritor1
parents:
diff changeset
1608 pDevice->Release();
Ritor1
parents:
diff changeset
1609 pDevice = 0;
Ritor1
parents:
diff changeset
1610 }
Ritor1
parents:
diff changeset
1611 if (pDirect3D)
Ritor1
parents:
diff changeset
1612 {
Ritor1
parents:
diff changeset
1613 pDirect3D->Release();
Ritor1
parents:
diff changeset
1614 pDirect3D = 0;
Ritor1
parents:
diff changeset
1615 }
Ritor1
parents:
diff changeset
1616 LABEL_59:
Ritor1
parents:
diff changeset
1617 if (pZBuffer)
Ritor1
parents:
diff changeset
1618 {
Ritor1
parents:
diff changeset
1619 pZBuffer->Release();
Ritor1
parents:
diff changeset
1620 pZBuffer = 0;
Ritor1
parents:
diff changeset
1621 }
Ritor1
parents:
diff changeset
1622 LABEL_61:
Ritor1
parents:
diff changeset
1623 if (pBackBuffer)
Ritor1
parents:
diff changeset
1624 {
Ritor1
parents:
diff changeset
1625 pBackBuffer->Release();
Ritor1
parents:
diff changeset
1626 pBackBuffer = 0;
Ritor1
parents:
diff changeset
1627 }
Ritor1
parents:
diff changeset
1628 goto LABEL_63;
Ritor1
parents:
diff changeset
1629 }
Ritor1
parents:
diff changeset
1630
Ritor1
parents:
diff changeset
1631 pDevice->AddViewport(pViewport);
Ritor1
parents:
diff changeset
1632 pViewport->SetViewport2(&d3dvp2);
Ritor1
parents:
diff changeset
1633 pDevice->SetCurrentViewport(pViewport);
Ritor1
parents:
diff changeset
1634 return 1;
Ritor1
parents:
diff changeset
1635 }
Ritor1
parents:
diff changeset
1636
Ritor1
parents:
diff changeset
1637 //----- (0049E444) --------------------------------------------------------
Ritor1
parents:
diff changeset
1638 unsigned int RenderD3D::GetDeviceCaps()
Ritor1
parents:
diff changeset
1639 {
Ritor1
parents:
diff changeset
1640 unsigned int v1; // ebx@1
Ritor1
parents:
diff changeset
1641 RenderD3D *v2; // edi@1
Ritor1
parents:
diff changeset
1642 IDirect3DDevice3 *v3; // eax@1
Ritor1
parents:
diff changeset
1643 unsigned int result; // eax@2
Ritor1
parents:
diff changeset
1644 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-1F8h]@1
Ritor1
parents:
diff changeset
1645 D3DDEVICEDESC halCaps; // [sp+108h] [bp-FCh]@1
Ritor1
parents:
diff changeset
1646
Ritor1
parents:
diff changeset
1647 v1 = 0;
Ritor1
parents:
diff changeset
1648 v2 = this;
Ritor1
parents:
diff changeset
1649 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
1650 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
1651 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
1652 v3 = v2->pDevice;
Ritor1
parents:
diff changeset
1653 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
1654 if ( v3->GetCaps(&halCaps, &refCaps) )
Ritor1
parents:
diff changeset
1655 {
Ritor1
parents:
diff changeset
1656 result = 1;
Ritor1
parents:
diff changeset
1657 }
Ritor1
parents:
diff changeset
1658 else
Ritor1
parents:
diff changeset
1659 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1660 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_SRCALPHA) )
0
Ritor1
parents:
diff changeset
1661 v1 = 2;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1662 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_ONE) )
0
Ritor1
parents:
diff changeset
1663 v1 |= 4u;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1664 if ( !(halCaps.dpcTriCaps.dwSrcBlendCaps & D3DPBLENDCAPS_ZERO) )
0
Ritor1
parents:
diff changeset
1665 v1 |= 8u;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1666 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_INVSRCALPHA) )
0
Ritor1
parents:
diff changeset
1667 v1 |= 0x10u;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1668 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_ONE) )
0
Ritor1
parents:
diff changeset
1669 v1 |= 0x20u;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1670 if ( !(halCaps.dpcTriCaps.dwDestBlendCaps & D3DPBLENDCAPS_SRCCOLOR) )
0
Ritor1
parents:
diff changeset
1671 v1 |= 0x40u;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1672 if ( halCaps.dpcTriCaps.dwTextureCaps & D3DPTEXTURECAPS_SQUAREONLY )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
1673 v1 |= 0x80;
0
Ritor1
parents:
diff changeset
1674 result = v1;
Ritor1
parents:
diff changeset
1675 }
Ritor1
parents:
diff changeset
1676 return result;
Ritor1
parents:
diff changeset
1677 }
Ritor1
parents:
diff changeset
1678
Ritor1
parents:
diff changeset
1679 //----- (0049E4FC) --------------------------------------------------------
Ritor1
parents:
diff changeset
1680 void RenderD3D::ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear)
Ritor1
parents:
diff changeset
1681 {
Ritor1
parents:
diff changeset
1682 uint uClearFlags = 0;
Ritor1
parents:
diff changeset
1683
Ritor1
parents:
diff changeset
1684 if (bClearColor)
Ritor1
parents:
diff changeset
1685 uClearFlags |= D3DCLEAR_TARGET;
Ritor1
parents:
diff changeset
1686 if (bClearDepth)
Ritor1
parents:
diff changeset
1687 uClearFlags |= D3DCLEAR_ZBUFFER;
Ritor1
parents:
diff changeset
1688
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
1689 D3DRECT rects[] = {{0, 0, window->GetWidth(), window->GetHeight()}};
0
Ritor1
parents:
diff changeset
1690 if (uClearFlags)
Ritor1
parents:
diff changeset
1691 pViewport->Clear2(1, rects, uClearFlags, uClearColor, z_clear, 0);
Ritor1
parents:
diff changeset
1692 }
Ritor1
parents:
diff changeset
1693
Ritor1
parents:
diff changeset
1694 //----- (0049E54D) --------------------------------------------------------
Ritor1
parents:
diff changeset
1695 void RenderD3D::Present(bool bForceBlit)
Ritor1
parents:
diff changeset
1696 {
Ritor1
parents:
diff changeset
1697 RECT v5; // [sp+18h] [bp-18h]@1
Ritor1
parents:
diff changeset
1698 struct tagPOINT Point; // [sp+28h] [bp-8h]@4
Ritor1
parents:
diff changeset
1699
Ritor1
parents:
diff changeset
1700 v5.left = 0;
Ritor1
parents:
diff changeset
1701 v5.top = 0;
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
1702 v5.bottom = 480;//window->GetHeight(); //Ritor1: ïðîáëåìà ñ êíîïêîé "ðàçâåðíóòü"
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
1703 v5.right = 640; //window->GetWidth();
0
Ritor1
parents:
diff changeset
1704
Ritor1
parents:
diff changeset
1705 if (bWindowed || bForceBlit)
Ritor1
parents:
diff changeset
1706 {
Ritor1
parents:
diff changeset
1707 RECT rc;
Ritor1
parents:
diff changeset
1708 GetClientRect(hWindow, &rc);
Ritor1
parents:
diff changeset
1709 Point.y = 0;
Ritor1
parents:
diff changeset
1710 Point.x = 0;
Ritor1
parents:
diff changeset
1711 ClientToScreen(hWindow, &Point);
Ritor1
parents:
diff changeset
1712 OffsetRect(&rc, Point.x, Point.y);
Ritor1
parents:
diff changeset
1713 pFrontBuffer->Blt(&rc, pBackBuffer, &v5, DDBLT_WAIT, 0);
Ritor1
parents:
diff changeset
1714 }
Ritor1
parents:
diff changeset
1715 else
Ritor1
parents:
diff changeset
1716 pFrontBuffer->Flip(0, 1);
Ritor1
parents:
diff changeset
1717 }
Ritor1
parents:
diff changeset
1718
Ritor1
parents:
diff changeset
1719 //----- (0049E5D4) --------------------------------------------------------
Ritor1
parents:
diff changeset
1720 bool RenderD3D::CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim)
Ritor1
parents:
diff changeset
1721 {
Ritor1
parents:
diff changeset
1722 unsigned int v8; // edx@4
Ritor1
parents:
diff changeset
1723 unsigned int v9; // ebx@5
Ritor1
parents:
diff changeset
1724 unsigned int v10; // eax@5
Ritor1
parents:
diff changeset
1725 DWORD v11; // edx@5
Ritor1
parents:
diff changeset
1726 //int v12; // edx@7
Ritor1
parents:
diff changeset
1727 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-80h]@1
Ritor1
parents:
diff changeset
1728 //RenderD3D *v15; // [sp+88h] [bp-4h]@1
Ritor1
parents:
diff changeset
1729
Ritor1
parents:
diff changeset
1730 //v15 = this;
Ritor1
parents:
diff changeset
1731 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
1732 ddsd2.dwSize = 0x7Cu;
Ritor1
parents:
diff changeset
1733 ddsd2.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT | DDSD_PIXELFORMAT;
Ritor1
parents:
diff changeset
1734 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE;
Ritor1
parents:
diff changeset
1735 ddsd2.ddsCaps.dwCaps2 = DDSCAPS2_TEXTUREMANAGE;
Ritor1
parents:
diff changeset
1736 ddsd2.dwHeight = uTextureHeight;
Ritor1
parents:
diff changeset
1737 ddsd2.dwWidth = uTextureWidth;
Ritor1
parents:
diff changeset
1738 if ( bMipmaps )
Ritor1
parents:
diff changeset
1739 {
Ritor1
parents:
diff changeset
1740 if ( (signed int)uTextureHeight <= (signed int)uTextureWidth )
Ritor1
parents:
diff changeset
1741 {
Ritor1
parents:
diff changeset
1742 v8 = GetMaxMipLevels(uTextureHeight) - GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1743 LABEL_8:
Ritor1
parents:
diff changeset
1744 ddsd2.dwMipMapCount = v8;
Ritor1
parents:
diff changeset
1745 if ( !v8 )
Ritor1
parents:
diff changeset
1746 goto LABEL_12;
Ritor1
parents:
diff changeset
1747 goto LABEL_11;
Ritor1
parents:
diff changeset
1748 }
Ritor1
parents:
diff changeset
1749 if ( (signed int)uTextureWidth < (signed int)uMinDeviceTexDim )
Ritor1
parents:
diff changeset
1750 {
Ritor1
parents:
diff changeset
1751 v8 = GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1752 goto LABEL_8;
Ritor1
parents:
diff changeset
1753 }
Ritor1
parents:
diff changeset
1754 v9 = GetMaxMipLevels(uTextureWidth);
Ritor1
parents:
diff changeset
1755 v10 = GetMaxMipLevels(uMinDeviceTexDim);
Ritor1
parents:
diff changeset
1756 ddsd2.dwMipMapCount = v9 - v10;
Ritor1
parents:
diff changeset
1757 if ( v9 == v10 )
Ritor1
parents:
diff changeset
1758 {
Ritor1
parents:
diff changeset
1759 ddsd2.dwFlags = 0x1007u;
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
1760 __debugbreak(); // warning C4700: uninitialized local variable 'v11' used
0
Ritor1
parents:
diff changeset
1761 ddsd2.ddsCaps.dwCaps = v11;
Ritor1
parents:
diff changeset
1762 goto LABEL_12;
Ritor1
parents:
diff changeset
1763 }
Ritor1
parents:
diff changeset
1764 }
Ritor1
parents:
diff changeset
1765 else
Ritor1
parents:
diff changeset
1766 {
Ritor1
parents:
diff changeset
1767 ddsd2.dwMipMapCount = 1;
Ritor1
parents:
diff changeset
1768 }
Ritor1
parents:
diff changeset
1769 LABEL_11:
Ritor1
parents:
diff changeset
1770 ddsd2.dwFlags = DDSD_CAPS | DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_MIPMAPCOUNT;
Ritor1
parents:
diff changeset
1771 ddsd2.ddsCaps.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_COMPLEX | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
1772 LABEL_12:
Ritor1
parents:
diff changeset
1773 ddsd2.ddpfPixelFormat.dwRGBBitCount = 16;
Ritor1
parents:
diff changeset
1774 ddsd2.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
Ritor1
parents:
diff changeset
1775 if (bAlphaChannel)
Ritor1
parents:
diff changeset
1776 {
Ritor1
parents:
diff changeset
1777 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB | DDPF_ALPHAPIXELS;
Ritor1
parents:
diff changeset
1778 ddsd2.ddpfPixelFormat.dwRBitMask = 0x7C00;
Ritor1
parents:
diff changeset
1779 ddsd2.ddpfPixelFormat.dwGBitMask = 0x03E0;
Ritor1
parents:
diff changeset
1780 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F;
Ritor1
parents:
diff changeset
1781 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0x8000u;
Ritor1
parents:
diff changeset
1782 }
Ritor1
parents:
diff changeset
1783 else
Ritor1
parents:
diff changeset
1784 {
Ritor1
parents:
diff changeset
1785 ddsd2.ddpfPixelFormat.dwFlags = DDPF_RGB;
Ritor1
parents:
diff changeset
1786 ddsd2.ddpfPixelFormat.dwRBitMask = 0xF800;
Ritor1
parents:
diff changeset
1787 ddsd2.ddpfPixelFormat.dwGBitMask = 0x07E0;
Ritor1
parents:
diff changeset
1788 ddsd2.ddpfPixelFormat.dwBBitMask = 0x001F;
Ritor1
parents:
diff changeset
1789 ddsd2.ddpfPixelFormat.dwRGBAlphaBitMask = 0;
Ritor1
parents:
diff changeset
1790 }
Ritor1
parents:
diff changeset
1791 if (FAILED(pHost->CreateSurface(&ddsd2, pOutSurface, 0)))
Ritor1
parents:
diff changeset
1792 return false;
Ritor1
parents:
diff changeset
1793 if (FAILED((*pOutSurface)->QueryInterface(IID_IDirect3DTexture2, (void **)pOutTexture)))
Ritor1
parents:
diff changeset
1794 {
Ritor1
parents:
diff changeset
1795 (*pOutSurface)->Release();
Ritor1
parents:
diff changeset
1796 *pOutSurface = 0;
Ritor1
parents:
diff changeset
1797 return false;
Ritor1
parents:
diff changeset
1798 }
Ritor1
parents:
diff changeset
1799 return true;
Ritor1
parents:
diff changeset
1800 }
Ritor1
parents:
diff changeset
1801
Ritor1
parents:
diff changeset
1802 //----- (004A5190) --------------------------------------------------------
Ritor1
parents:
diff changeset
1803 void RenderD3D::HandleLostResources()
Ritor1
parents:
diff changeset
1804 {
Ritor1
parents:
diff changeset
1805 pBitmaps_LOD->ReleaseLostHardwareTextures();
Ritor1
parents:
diff changeset
1806 pBitmaps_LOD->_410423_move_textures_to_device();
Ritor1
parents:
diff changeset
1807 pSprites_LOD->ReleaseLostHardwareSprites();
Ritor1
parents:
diff changeset
1808 }
Ritor1
parents:
diff changeset
1809
Ritor1
parents:
diff changeset
1810 //----- (004A2050) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
1811 void Render::DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture)
0
Ritor1
parents:
diff changeset
1812 {
Ritor1
parents:
diff changeset
1813 Render *v5; // edi@1
Ritor1
parents:
diff changeset
1814 unsigned int v6; // ebx@1
Ritor1
parents:
diff changeset
1815 LightmapBuilder *v7; // esi@3
Ritor1
parents:
diff changeset
1816 int v8; // eax@7
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1817 // ODMFace *v9; // eax@12
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1818 // char *v10; // esi@12
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1819 // double v11; // st7@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1820 // double v12; // st7@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1821 // int v13; // eax@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1822 // ODMFace *v14; // ecx@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1823 // double v15; // st7@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1824 // float v16; // ST48_4@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1825 // int v17; // eax@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1826 // char v18; // zf@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1827 // HRESULT v19; // eax@18
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1828 // HRESULT v20; // eax@18
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1829 // HRESULT v21; // eax@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1830 // HRESULT v22; // eax@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1831 // unsigned int v23; // ecx@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1832 // char *v24; // eax@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1833 // HRESULT v25; // eax@23
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1834 // HRESULT v26; // eax@23
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1835 // HRESULT v27; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1836 // HRESULT v28; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1837 // HRESULT v29; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1838 // HRESULT v30; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1839 // HRESULT v31; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1840 // HRESULT v32; // eax@26
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1841 // unsigned int v33; // ecx@26
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1842 // char *v34; // eax@27
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1843 // int v35; // edx@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1844 // HRESULT v36; // eax@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1845 // HRESULT v37; // eax@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1846 // HRESULT v38; // eax@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1847 // HRESULT v39; // eax@29
0
Ritor1
parents:
diff changeset
1848 //IDirect3DDevice3Vtbl *v40; // ebx@29
Ritor1
parents:
diff changeset
1849 unsigned int v41; // eax@29
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1850 // HRESULT v42; // eax@30
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1851 // HRESULT v43; // eax@30
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1852 // HRESULT v44; // eax@30
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1853 // char *v45; // esi@34
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1854 // int v46; // ecx@35
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1855 // double v47; // st6@35
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1856 // int v48; // eax@36
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1857 // const char *v49; // [sp+4Ch] [bp-1Ch]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1858 // const char *v50; // [sp+4Ch] [bp-1Ch]@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1859 // int v51; // [sp+50h] [bp-18h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1860 // unsigned int v52; // [sp+54h] [bp-14h]@0
0
Ritor1
parents:
diff changeset
1861 LightmapBuilder *v53; // [sp+58h] [bp-10h]@3
Ritor1
parents:
diff changeset
1862 unsigned int v54; // [sp+5Ch] [bp-Ch]@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1863 // unsigned int v55; // [sp+5Ch] [bp-Ch]@34
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1864 // unsigned int v56; // [sp+60h] [bp-8h]@12
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
1865 // int v57; // [sp+60h] [bp-8h]@34
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
1866 signed int a2; // [sp+64h] [bp-4h]@4
0
Ritor1
parents:
diff changeset
1867
Ritor1
parents:
diff changeset
1868 v5 = this;
Ritor1
parents:
diff changeset
1869 v6 = 0;
Ritor1
parents:
diff changeset
1870 if ( this->uNumD3DSceneBegins && (signed int)uNumVertices >= 3 )
Ritor1
parents:
diff changeset
1871 {
Ritor1
parents:
diff changeset
1872 v7 = pGame->pLightmapBuilder;
Ritor1
parents:
diff changeset
1873 v53 = v7;
Ritor1
parents:
diff changeset
1874 v54 = v7->std__vector_000004_size;
Ritor1
parents:
diff changeset
1875 if ( v7->std__vector_000004_size)
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
1876 a2 = -1;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1877 pGame->AlterGamma_ODM(a4, &a2);
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
1878 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related)
0
Ritor1
parents:
diff changeset
1879 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
1880 v8 = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
1881 v7->DrawLightmaps(/*v8, 0*/);
0
Ritor1
parents:
diff changeset
1882 }
Ritor1
parents:
diff changeset
1883 else
Ritor1
parents:
diff changeset
1884 {
Ritor1
parents:
diff changeset
1885 if ( !v54 || byte_4D864C && pGame->uFlags & 2 )
Ritor1
parents:
diff changeset
1886 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1887 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1888 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
Ritor1
parents:
diff changeset
1889 if (bUsingSpecular)
Ritor1
parents:
diff changeset
1890 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1891 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1892 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1893 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
1894 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1895 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1896 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1897
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1898 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1899 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1900 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1901 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1902 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1903 pGame->AlterGamma_ODM(a4, &d3d_vertex_buffer[i].diffuse);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1904
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1905 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
1906 {
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
1907 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
1908 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1909 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1910 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1911 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1912 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1913 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1914 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1915
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1916 }
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1917
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1918 if (a4->uAttributes & FACE_OUTLINED)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1919 {
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1920 int color;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1921 if (GetTickCount() % 300 >= 150)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1922 color = 0xFFFF2020;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1923 else color = 0xFF901010;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1924
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1925 for (uint i = 0; i < uNumVertices; ++i)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1926 d3d_vertex_buffer[i].diffuse = color;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1927 }
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
1928
0
Ritor1
parents:
diff changeset
1929 pRenderD3D->pDevice->SetTexture(0, pTexture);
Ritor1
parents:
diff changeset
1930 pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1931 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1932 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1933 uNumVertices,
Ritor1
parents:
diff changeset
1934 D3DDP_DONOTLIGHT);
Ritor1
parents:
diff changeset
1935 }
Ritor1
parents:
diff changeset
1936 else
Ritor1
parents:
diff changeset
1937 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1938 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1939 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1940
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1941 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1942 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
1943 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1944 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1945 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a3->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1946 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
1947 {
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
1948 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
1949 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1950 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1951 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1952 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1953 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1954 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1955 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1956
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1957 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1958
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1959 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1960 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1961 if (bUsingSpecular)
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1962 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0
Ritor1
parents:
diff changeset
1963
Ritor1
parents:
diff changeset
1964 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
Ritor1
parents:
diff changeset
1965 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1966 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1967 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1968 uNumVertices,
Ritor1
parents:
diff changeset
1969 D3DDP_DONOTLIGHT));
Ritor1
parents:
diff changeset
1970 //v50 = (const char *)v5->pRenderD3D->pDevice;
Ritor1
parents:
diff changeset
1971 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
Ritor1
parents:
diff changeset
1972 //(*(void (**)(void))(*(int *)v50 + 88))();
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
1973 v53->DrawLightmaps(/*-1, 0*/);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1974 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1975 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1976 d3d_vertex_buffer[i].diffuse = a2;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1977 }
0
Ritor1
parents:
diff changeset
1978 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1979 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
1980 if ( !pRenderer->bUsingSpecular )
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1981 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1982
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1983 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1984 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1985 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
0
Ritor1
parents:
diff changeset
1986 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
1987 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
1988 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
1989 uNumVertices,
Ritor1
parents:
diff changeset
1990 D3DDP_DONOTLIGHT));
Ritor1
parents:
diff changeset
1991 if (bUsingSpecular)
Ritor1
parents:
diff changeset
1992 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
1993 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0
Ritor1
parents:
diff changeset
1994
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1995 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1996 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1997 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1998 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
1999 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
2000
0
Ritor1
parents:
diff changeset
2001 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2002 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2003 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA));
0
Ritor1
parents:
diff changeset
2004 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
2005 D3DFVF_XYZRHW | D3DFVF_TEX1 | D3DFVF_DIFFUSE | D3DFVF_SPECULAR,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
2006 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
2007 uNumVertices,
Ritor1
parents:
diff changeset
2008 D3DDP_DONOTLIGHT));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2009 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
2010 //v40 = pRenderer->pRenderD3D->pDevice->lpVtbl;
Ritor1
parents:
diff changeset
2011 v41 = GetLevelFogColor();
Ritor1
parents:
diff changeset
2012 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF);
Ritor1
parents:
diff changeset
2013 v6 = 0;
Ritor1
parents:
diff changeset
2014 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0);
Ritor1
parents:
diff changeset
2015 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2016 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
2017 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
2018 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v6));
Ritor1
parents:
diff changeset
2019 }
Ritor1
parents:
diff changeset
2020 }
Ritor1
parents:
diff changeset
2021 }
Ritor1
parents:
diff changeset
2022 }
Ritor1
parents:
diff changeset
2023 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
2024
Ritor1
parents:
diff changeset
2025 //----- (0049EB79) --------------------------------------------------------
Ritor1
parents:
diff changeset
2026 Render::~Render()
Ritor1
parents:
diff changeset
2027 {
Ritor1
parents:
diff changeset
2028 Render *v1; // esi@1
Ritor1
parents:
diff changeset
2029
Ritor1
parents:
diff changeset
2030 v1 = this;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2031 free(this->pDefaultZBuffer);
0
Ritor1
parents:
diff changeset
2032 v1->pD3DBitmaps.Release();
Ritor1
parents:
diff changeset
2033 v1->pD3DSprites.Release();
Ritor1
parents:
diff changeset
2034 Release();
Ritor1
parents:
diff changeset
2035 v1->bWindowMode = 1;
Ritor1
parents:
diff changeset
2036 //nullsub_1();
Ritor1
parents:
diff changeset
2037 //nullsub_1();
Ritor1
parents:
diff changeset
2038 }
Ritor1
parents:
diff changeset
2039
Ritor1
parents:
diff changeset
2040
Ritor1
parents:
diff changeset
2041 //----- (0049E992) --------------------------------------------------------
Ritor1
parents:
diff changeset
2042 Render::Render()
Ritor1
parents:
diff changeset
2043 {
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2044 //Render *v1; // esi@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2045 // int v2; // eax@1
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2046 // char v3; // zf@1
0
Ritor1
parents:
diff changeset
2047
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2048 //v1 = this;
0
Ritor1
parents:
diff changeset
2049 this->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
2050 this->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
2051 this->pBackBuffer4 = 0;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2052 //this->pColorKeySurface4 = 0;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2053 //this->pDirectDraw2 = 0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2054 //this->pFrontBuffer2 = 0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2055 //this->pBackBuffer2 = 0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2056 //this->pSomeSurface2 = 0;
0
Ritor1
parents:
diff changeset
2057 //RenderHWLContainer::RenderHWLContainer(&this->pD3DBitmaps);
Ritor1
parents:
diff changeset
2058 //RenderHWLContainer::RenderHWLContainer(&v1->pD3DSprites);
2216
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2059 this->bWindowMode = 1;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2060 //this->field_40054 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2061 //this->field_10 = 640;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2062 //this->field_14 = 480;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2063 //this->field_40030 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2064 //this->field_4002C = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2065 this->pActiveZBuffer = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2066 this->pDefaultZBuffer = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2067 this->raster_clip_y = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2068 this->raster_clip_x = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2069 this->raster_clip_z = 639;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2070 this->raster_clip_w = 479;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2071 //this->field_4003C = 0x004EED80;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2072 //this->field_40040 = dword_4EED78;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2073 this->uClipZ = 640;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2074 //this->field_40044 = 2;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2075 //this->field_40048 = 6;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2076 this->pFrontBuffer4 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2077 this->pBackBuffer4 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2078 //this->pColorKeySurface4 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2079 this->pDirectDraw4 = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2080 this->pRenderD3D = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2081 this->uNumSceneBegins = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2082 this->uNumD3DSceneBegins = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2083 this->using_software_screen_buffer = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2084 this->pTargetSurface = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2085 this->uTargetSurfacePitch = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2086 this->uClipY = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2087 this->uClipX = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2088 this->uClipW = 480;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2089 this->bClip = 1;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2090 //this->bColorKeySupported = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2091 this->bRequiredTextureStagesAvailable = 0;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2092 this->bTinting = 1;
3f375342de12 window->GetWidth() continue
Ritor1
parents: 2215
diff changeset
2093 //LOBYTE(this->field_103668) = 0;
0
Ritor1
parents:
diff changeset
2094 uNumBillboardsToDraw = 0;
Ritor1
parents:
diff changeset
2095 bFogEnabled = false;
265
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2096
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2097 hd_water_tile_id = -1;
96bc024a5fed Render overflows
Nomad
parents: 190
diff changeset
2098 hd_water_current_frame = 0;
0
Ritor1
parents:
diff changeset
2099 }
Ritor1
parents:
diff changeset
2100
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2101 bool Render::Initialize(OSWindow *window, bool bColoredLights, uint32_t uDetailLevel, bool bTinting)
0
Ritor1
parents:
diff changeset
2102 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2103 //bUserDirect3D = true;//ReadWindowsRegistryInt("Use D3D", 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2104
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2105 this->window = window;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2106 //bStartInWindow = true;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2107 //windowed_mode_width = windowed_width;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2108 //windowed_mode_height = windowed_height;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2109
1985
ef4dcee1b4a1 Multi-monitor support part1
zipi
parents: 1983
diff changeset
2110 uDesiredDirect3DDevice = ReadWindowsRegistryInt("D3D Device", 0);
0
Ritor1
parents:
diff changeset
2111
Ritor1
parents:
diff changeset
2112 bUseColoredLights = bColoredLights;//ReadWindowsRegistryInt("Colored Lights", 0);
Ritor1
parents:
diff changeset
2113 uLevelOfDetail = uDetailLevel;//ReadWindowsRegistryInt("Detail Level", 1);
Ritor1
parents:
diff changeset
2114
Ritor1
parents:
diff changeset
2115 this->bTinting = bTinting;
Ritor1
parents:
diff changeset
2116
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
2117 bool r1 = pD3DBitmaps.Load(L"data\\d3dbitmap.hwl");
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
2118 bool r2 = pD3DSprites.Load(L"data\\d3dsprite.hwl");
0
Ritor1
parents:
diff changeset
2119
Ritor1
parents:
diff changeset
2120 return r1 && r2;
Ritor1
parents:
diff changeset
2121 }
Ritor1
parents:
diff changeset
2122
Ritor1
parents:
diff changeset
2123
Ritor1
parents:
diff changeset
2124 //----- (0049ECC4) --------------------------------------------------------
Ritor1
parents:
diff changeset
2125 void Render::ClearBlack()
Ritor1
parents:
diff changeset
2126 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2127 //if (pRenderD3D)
0
Ritor1
parents:
diff changeset
2128 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2129 if (using_software_screen_buffer)
0
Ritor1
parents:
diff changeset
2130 pRenderD3D->ClearTarget(true, 0, false, 0.0);
Ritor1
parents:
diff changeset
2131 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2132 //else
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2133 //memset(pRenderer->pTargetSurface, 0, 4 * (field_10 * field_14 / 2));
0
Ritor1
parents:
diff changeset
2134 }
Ritor1
parents:
diff changeset
2135
Ritor1
parents:
diff changeset
2136 //----- (0049ED18) --------------------------------------------------------
Ritor1
parents:
diff changeset
2137 void Render::PresentBlackScreen()
Ritor1
parents:
diff changeset
2138 {
Ritor1
parents:
diff changeset
2139 IDirectDrawSurface *v2; // eax@3
Ritor1
parents:
diff changeset
2140 DDBLTFX v3; // [sp+4h] [bp-74h]@5
Ritor1
parents:
diff changeset
2141 RECT x; // [sp+68h] [bp-10h]@3
Ritor1
parents:
diff changeset
2142
Ritor1
parents:
diff changeset
2143 memset(&v3, 0, sizeof(DDBLTFX));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2144 GetWindowRect(window->GetApiHandle(), &x);
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2145
0
Ritor1
parents:
diff changeset
2146 {
Ritor1
parents:
diff changeset
2147 v2 = (IDirectDrawSurface *)this->pBackBuffer4;
Ritor1
parents:
diff changeset
2148 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2149
0
Ritor1
parents:
diff changeset
2150 v3.dwFillColor = 0;
Ritor1
parents:
diff changeset
2151 v3.dwSize = 100;
Ritor1
parents:
diff changeset
2152 v2->Blt(&x, 0, 0, DDBLT_COLORFILL, &v3);
Ritor1
parents:
diff changeset
2153 pRenderer->Present();
Ritor1
parents:
diff changeset
2154 }
Ritor1
parents:
diff changeset
2155
Ritor1
parents:
diff changeset
2156 //----- (0049EDB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
2157 void Render::SavePCXScreenshot()
Ritor1
parents:
diff changeset
2158 {
Ritor1
parents:
diff changeset
2159 int v5; // eax@8
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2160 FILE *pOutFile; // edi@10
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2161 unsigned short *v8; // eax@11
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2162 // int v9; // eax@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2163 // int v10; // ecx@15
0
Ritor1
parents:
diff changeset
2164 signed int v12; // eax@18
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2165 // HRESULT v14; // eax@29
0
Ritor1
parents:
diff changeset
2166 char v15[56]; // [sp+Ch] [bp-158h]@10
Ritor1
parents:
diff changeset
2167 DDSURFACEDESC2 Dst; // [sp+48h] [bp-11Ch]@7
Ritor1
parents:
diff changeset
2168 char color_map[48]; // [sp+C4h] [bp-A0h]@10
Ritor1
parents:
diff changeset
2169 char Filename[40]; // [sp+F4h] [bp-70h]@3
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2170 char *lineB; // [sp+11Ch] [bp-48h]@14
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2171 char *lineG; // [sp+120h] [bp-44h]@14
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2172 //int v24; // [sp+124h] [bp-40h]@11
0
Ritor1
parents:
diff changeset
2173 FILE *File; // [sp+128h] [bp-3Ch]@3
Ritor1
parents:
diff changeset
2174 PCXHeader_1 header1; // [sp+130h] [bp-34h]@10
Ritor1
parents:
diff changeset
2175 PCXHeader_2 header2; // [sp+140h] [bp-24h]@10
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2176 char *lineRGB; // [sp+148h] [bp-1Ch]@10
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2177 void *surface; // [sp+14Ch] [bp-18h]@8
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2178 int image_width; // [sp+150h] [bp-14h]@4
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2179 int pitch; // [sp+154h] [bp-10h]@4
0
Ritor1
parents:
diff changeset
2180 char v31; // [sp+15Ah] [bp-Ah]@25
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2181 unsigned char pict_byte; // [sp+15Bh] [bp-9h]@17
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2182 unsigned short *line_picture_data; // [sp+15Ch] [bp-8h]@10
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2183 byte test_byte; // [sp+163h] [bp-1h]@17
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2184
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2185 int num_r_bits = 5;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2186 int num_g_bits = 6;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2187 int num_b_bits = 5;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2188
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2189 int r_mask = 0xF800;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2190 int g_mask = 0x7E0;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2191 int b_mask = 0x1F;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2192
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2193 if ( !this->pRenderD3D || this->using_software_screen_buffer )
0
Ritor1
parents:
diff changeset
2194 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2195 sprintf(Filename, "screen%0.2i.pcx", ScreenshotFileNumber++ % 100);
0
Ritor1
parents:
diff changeset
2196 File = fopen(Filename, "wb");
Ritor1
parents:
diff changeset
2197 if ( File )
Ritor1
parents:
diff changeset
2198 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2199 pitch = this->GetRenderWidth();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2200 if ( pitch & 1 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2201 pitch = pitch + 1;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2202 if ( this->pRenderD3D )
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2203 {
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2204 memset(&Dst, 0, 0x7C);
0
Ritor1
parents:
diff changeset
2205 Dst.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
2206 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) )
0
Ritor1
parents:
diff changeset
2207 return;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2208 surface = Dst.lpSurface;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2209 v5 = Dst.lPitch / 2;
0
Ritor1
parents:
diff changeset
2210 }
Ritor1
parents:
diff changeset
2211 else
Ritor1
parents:
diff changeset
2212 {
Ritor1
parents:
diff changeset
2213 pRenderer->BeginScene();
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2214 surface = pRenderer->pTargetSurface;
0
Ritor1
parents:
diff changeset
2215 v5 = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
2216 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2217 header1.right = GetRenderWidth() - 1;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2218 header1.left = 0;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2219 header1.bottom = this->GetRenderHeight() - 1;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2220 header1.up = 0;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2221 header2.pitch = pitch;
0
Ritor1
parents:
diff changeset
2222 memset(color_map, 0, sizeof(color_map));
Ritor1
parents:
diff changeset
2223 memset(v15, 0, sizeof(v15));
Ritor1
parents:
diff changeset
2224 header2.reserved = 0;
Ritor1
parents:
diff changeset
2225 header1.manufacturer = 10;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2226 pOutFile = File;
0
Ritor1
parents:
diff changeset
2227 header1.version = 5;
Ritor1
parents:
diff changeset
2228 header1.encoding = 1;
Ritor1
parents:
diff changeset
2229 header1.bpp = 8;
Ritor1
parents:
diff changeset
2230 header1.hdpi = 75;
Ritor1
parents:
diff changeset
2231 header1.vdpi = 75;
Ritor1
parents:
diff changeset
2232 header2.planes = 3;
Ritor1
parents:
diff changeset
2233 header2.palette_info = 1;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2234 fwrite(&header1, 1, 1, File);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2235 fwrite(&header1.version, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2236 fwrite(&header1.encoding, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2237 fwrite(&header1.bpp, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2238 fwrite(&header1.left, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2239 fwrite(&header1.up, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2240 fwrite(&header1.right, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2241 fwrite(&header1.bottom, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2242 fwrite(&header1.hdpi, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2243 fwrite(&header1.vdpi, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2244 fwrite(color_map, 0x30u, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2245 fwrite(&header2, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2246 fwrite(&header2.planes, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2247 fwrite(&header2.pitch, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2248 fwrite(&header2.palette_info, 2, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2249 fwrite(v15, 0x3Au, 1, pOutFile);
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2250 lineRGB = (char *)malloc(3 * GetRenderWidth() + 6);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2251 if ( this->GetRenderHeight() > 0 )
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2252 {
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2253 image_width = 3 * pitch;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2254 //v24 = 2 * v5;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2255 v8 = (unsigned short *)surface;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2256 for ( int y = 0; y < this->GetRenderHeight(); y++ )
0
Ritor1
parents:
diff changeset
2257 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2258 line_picture_data = v8;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2259 if ( GetRenderWidth() > 0 )
0
Ritor1
parents:
diff changeset
2260 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2261 lineG = (char *)lineRGB + pitch;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2262 lineB = (char *)lineRGB + 2 * pitch;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2263 for ( uint x = 0; x < this->GetRenderWidth(); x++ )
0
Ritor1
parents:
diff changeset
2264 {
2221
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2265 //int p = *line_picture_data; //0x2818
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2266 //int for_rad = (pRenderer->uTargetGBits + pRenderer->uTargetBBits );//16 = 8 + 8
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2267 //int value = (pRenderer->uTargetRMask & *line_picture_data);//0 = 0xFF0000 & 0x2818
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2268 //int result = (pRenderer->uTargetRMask & *line_picture_data) >> (pRenderer->uTargetGBits + pRenderer->uTargetBBits );
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2269 lineRGB[x] = (pRenderer->uTargetRMask & *line_picture_data) >> (pRenderer->uTargetGBits + pRenderer->uTargetBBits );// + pRenderer->uTargetRBits - 8);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2270 lineG[x] = (pRenderer->uTargetGMask & *line_picture_data) >> (pRenderer->uTargetBBits);// + pRenderer->uTargetGBits - 8);
2221
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2271 //int value2 = (pRenderer->uTargetGMask & *line_picture_data); //10240 = 0xFF00 & 0x2818
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2272 //int result2 = (pRenderer->uTargetGMask & *line_picture_data) >> (pRenderer->uTargetBBits);
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2273 lineB[x] = (pRenderer->uTargetBMask & *line_picture_data);// << (8 - pRenderer->uTargetBBits);
2221
c69013c186c7 for video
Ritor1
parents: 2219
diff changeset
2274 //int value3 = (pRenderer->uTargetBMask & *line_picture_data);//24 = 0xFF & 0x2818
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2275 line_picture_data += 2;
0
Ritor1
parents:
diff changeset
2276 }
Ritor1
parents:
diff changeset
2277 }
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2278 for ( uint i = 0; i < image_width; i += test_byte )
0
Ritor1
parents:
diff changeset
2279 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2280 pict_byte = lineRGB[i];
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2281 for ( test_byte = 1; test_byte < 0x3F; ++test_byte )
0
Ritor1
parents:
diff changeset
2282 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2283 v12 = i + test_byte;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2284 if ( lineRGB[v12] != pict_byte )
0
Ritor1
parents:
diff changeset
2285 break;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2286 if ( !(v12 % pitch) )
0
Ritor1
parents:
diff changeset
2287 break;
Ritor1
parents:
diff changeset
2288 }
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2289 if ( i + test_byte > image_width )
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2290 test_byte = 3 * pitch - i;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2291 if ( test_byte > 1 || pict_byte >= 0xC0 )
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2292 {
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2293 v31 = test_byte | 0xC0;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2294 fwrite(&v31, 1, 1, pOutFile);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2295 }
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2296 fwrite(&pict_byte, 1, 1, pOutFile);
0
Ritor1
parents:
diff changeset
2297 }
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2298 v8 += v5;
0
Ritor1
parents:
diff changeset
2299 }
Ritor1
parents:
diff changeset
2300 }
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2301 if ( this->pRenderD3D )
0
Ritor1
parents:
diff changeset
2302 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
Ritor1
parents:
diff changeset
2303 else
Ritor1
parents:
diff changeset
2304 pRenderer->EndScene();
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2305
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2306 free(lineRGB);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2307 fclose(pOutFile);
0
Ritor1
parents:
diff changeset
2308 }
Ritor1
parents:
diff changeset
2309 }
Ritor1
parents:
diff changeset
2310 }
Ritor1
parents:
diff changeset
2311
Ritor1
parents:
diff changeset
2312 //----- (0049F1BC) --------------------------------------------------------
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2313 void Render::SaveWinnersCertificate(const char *a1)
0
Ritor1
parents:
diff changeset
2314 {
Ritor1
parents:
diff changeset
2315 unsigned int v6; // eax@8
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2316 //FILE *v7; // edi@10
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2317 // int v8; // ecx@11
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2318 unsigned short *v9; // eax@11
0
Ritor1
parents:
diff changeset
2319 int v10; // eax@13
Ritor1
parents:
diff changeset
2320 signed int v13; // eax@18
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2321 // char v14; // zf@27
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2322 // HRESULT v15; // eax@29
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2323 char v16[56]; // [sp+Ch] [bp-12Ch]@10
0
Ritor1
parents:
diff changeset
2324 __int16 v17; // [sp+44h] [bp-F4h]@10
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2325 DDSURFACEDESC2 Dst; // [sp+48h] [bp-F0h]@7
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2326 // int v19; // [sp+58h] [bp-E0h]@8
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2327 // unsigned __int16 *v20; // [sp+6Ch] [bp-CCh]@8
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2328 char color_map[48]; // [sp+C4h] [bp-74h]@10
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2329 // unsigned int v22; // [sp+F4h] [bp-44h]@11
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2330 char *lineB; // [sp+F8h] [bp-40h]@14
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2331 int image_width; // [sp+FCh] [bp-3Ch]@11
0
Ritor1
parents:
diff changeset
2332 int v25; // [sp+100h] [bp-38h]@4
Ritor1
parents:
diff changeset
2333 FILE *File; // [sp+104h] [bp-34h]@3
Ritor1
parents:
diff changeset
2334 char Str; // [sp+108h] [bp-30h]@10
Ritor1
parents:
diff changeset
2335 char v28; // [sp+109h] [bp-2Fh]@10
Ritor1
parents:
diff changeset
2336 char v29; // [sp+10Ah] [bp-2Eh]@10
Ritor1
parents:
diff changeset
2337 char v30; // [sp+10Bh] [bp-2Dh]@10
Ritor1
parents:
diff changeset
2338 __int16 v31; // [sp+10Ch] [bp-2Ch]@10
Ritor1
parents:
diff changeset
2339 __int16 v32; // [sp+10Eh] [bp-2Ah]@10
Ritor1
parents:
diff changeset
2340 __int16 v33; // [sp+110h] [bp-28h]@10
Ritor1
parents:
diff changeset
2341 __int16 v34; // [sp+112h] [bp-26h]@10
Ritor1
parents:
diff changeset
2342 __int16 v35; // [sp+114h] [bp-24h]@10
Ritor1
parents:
diff changeset
2343 __int16 v36; // [sp+116h] [bp-22h]@10
Ritor1
parents:
diff changeset
2344 char v37; // [sp+118h] [bp-20h]@10
Ritor1
parents:
diff changeset
2345 char v38; // [sp+119h] [bp-1Fh]@10
Ritor1
parents:
diff changeset
2346 __int16 v39; // [sp+11Ah] [bp-1Eh]@10
Ritor1
parents:
diff changeset
2347 __int16 v40; // [sp+11Ch] [bp-1Ch]@10
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2348 char *lineRGB; // [sp+120h] [bp-18h]@10
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2349 void *surface; // [sp+124h] [bp-14h]@8
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2350 int pitch; // [sp+128h] [bp-10h]@4
0
Ritor1
parents:
diff changeset
2351 char v44; // [sp+12Fh] [bp-9h]@25
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2352 char *lineG; // [sp+130h] [bp-8h]@10
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2353 unsigned char pict_byte; // [sp+137h] [bp-1h]@17
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2354 byte test_byte;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2355
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2356 int num_r_bits = 5;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2357 int num_g_bits = 6;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2358 int num_b_bits = 5;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2359
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2360 int r_mask = 0xF800;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2361 int g_mask = 0x7E0;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2362 int b_mask = 0x1F;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2363
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2364 if ( !this->pRenderD3D || this->using_software_screen_buffer )
0
Ritor1
parents:
diff changeset
2365 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2366 static int _4EFA84_num_winners_certificates = 0;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2367 ++_4EFA84_num_winners_certificates;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2368
0
Ritor1
parents:
diff changeset
2369 File = fopen(a1, "wb");
Ritor1
parents:
diff changeset
2370 if ( File )
Ritor1
parents:
diff changeset
2371 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2372 v25 = this->GetRenderWidth();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2373 pitch = v25;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2374 if ( pitch & 1 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2375 pitch = pitch + 1;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2376 if ( this->pRenderD3D )
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2377 {
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2378 memset(&Dst, 0, 0x7C);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2379 Dst.dwSize = 124;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
2380 if ( !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, (DDSURFACEDESC2 *)&Dst, DDLOCK_WAIT) )
0
Ritor1
parents:
diff changeset
2381 return;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2382 surface = Dst.lpSurface;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2383 v6 = Dst.lPitch / 2;
0
Ritor1
parents:
diff changeset
2384 }
Ritor1
parents:
diff changeset
2385 else
Ritor1
parents:
diff changeset
2386 {
Ritor1
parents:
diff changeset
2387 pRenderer->BeginScene();
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2388 surface = pRenderer->pTargetSurface;
0
Ritor1
parents:
diff changeset
2389 v6 = pRenderer->uTargetSurfacePitch;
Ritor1
parents:
diff changeset
2390 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2391 v33 = this->GetRenderWidth() - 1;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2392 v31 = 0;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2393 v34 = (short)this->GetRenderHeight() - 1;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2394 v32 = 0;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2395 v39 = pitch;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2396 memset(&color_map, 0, sizeof(color_map));
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2397 memset(&v16, 0, sizeof(v16));
0
Ritor1
parents:
diff changeset
2398 v37 = 0;
Ritor1
parents:
diff changeset
2399 Str = 10;
Ritor1
parents:
diff changeset
2400 v17 = 0;
Ritor1
parents:
diff changeset
2401 v28 = 5;
Ritor1
parents:
diff changeset
2402 v29 = 1;
Ritor1
parents:
diff changeset
2403 v30 = 8;
Ritor1
parents:
diff changeset
2404 v35 = 75;
Ritor1
parents:
diff changeset
2405 v36 = 75;
Ritor1
parents:
diff changeset
2406 v38 = 3;
Ritor1
parents:
diff changeset
2407 v40 = 1;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2408 fwrite(&Str, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2409 fwrite(&v28, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2410 fwrite(&v29, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2411 fwrite(&v30, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2412 fwrite(&v31, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2413 fwrite(&v32, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2414 fwrite(&v33, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2415 fwrite(&v34, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2416 fwrite(&v35, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2417 fwrite(&v36, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2418 fwrite(&color_map, 0x30, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2419 fwrite(&v37, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2420 fwrite(&v38, 1, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2421 fwrite(&v39, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2422 fwrite(&v40, 2, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2423 fwrite(&v16, 0x3A, 1, File);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2424 lineRGB = (char *)malloc(3 * (v25 + 2));
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2425 if ( (signed int)this->GetRenderHeight() > 0 )
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2426 {
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2427 image_width = 3 * pitch;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2428 v9 = (unsigned short *)surface;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2429 for ( uint j = 0; j < this->GetRenderHeight(); j++)
0
Ritor1
parents:
diff changeset
2430 {
Ritor1
parents:
diff changeset
2431 a1 = (const char *)v9;
Ritor1
parents:
diff changeset
2432 if ( v25 > 0 )
Ritor1
parents:
diff changeset
2433 {
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2434 lineG = (char *)lineRGB + pitch;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2435 lineB = (char *)lineRGB + 2 * pitch;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2436 for ( v10 = 0; v10 < v25; v10++ )
0
Ritor1
parents:
diff changeset
2437 {
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2438 lineRGB[v10] = (signed int)(r_mask & *(short *)a1) >> (num_g_bits + num_b_bits + num_r_bits - 8);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2439 lineG[v10] = (signed int)(g_mask & *(short *)a1) >> (num_b_bits + num_g_bits - 8);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2440 lineB[v10] = (b_mask & *(short *)a1) << (8 - num_b_bits);
0
Ritor1
parents:
diff changeset
2441 a1 += 2;
Ritor1
parents:
diff changeset
2442 }
Ritor1
parents:
diff changeset
2443 }
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2444 for ( uint i = 0; i < image_width; i += test_byte )
0
Ritor1
parents:
diff changeset
2445 {
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2446 pict_byte = lineRGB[i];
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2447 for ( test_byte = 1; test_byte < 0x3F; test_byte )
0
Ritor1
parents:
diff changeset
2448 {
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2449 v13 = i + test_byte;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2450 if ( lineRGB[v13] != pict_byte )
0
Ritor1
parents:
diff changeset
2451 break;
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2452 if ( !(v13 % pitch) )
0
Ritor1
parents:
diff changeset
2453 break;
Ritor1
parents:
diff changeset
2454 }
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2455 if ( i + test_byte > image_width )
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2456 test_byte = 3 * pitch - i;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2457 if ( test_byte > 1 || pict_byte >= 0xC0 )
0
Ritor1
parents:
diff changeset
2458 {
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2459 v44 = test_byte | 0xC0;
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2460 fwrite(&v44, 1, 1, File);
0
Ritor1
parents:
diff changeset
2461 }
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2462 fwrite(&pict_byte, 1, 1, File);
0
Ritor1
parents:
diff changeset
2463 }
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2464 v9 += pitch;
0
Ritor1
parents:
diff changeset
2465 }
Ritor1
parents:
diff changeset
2466 }
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2467 if ( this->pRenderD3D )
0
Ritor1
parents:
diff changeset
2468 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
Ritor1
parents:
diff changeset
2469 else
Ritor1
parents:
diff changeset
2470 pRenderer->EndScene();
2133
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2471 free(lineRGB);
e378232bfd36 screenshot
Ritor1
parents: 2132
diff changeset
2472 fclose(File);
0
Ritor1
parents:
diff changeset
2473 }
Ritor1
parents:
diff changeset
2474 }
Ritor1
parents:
diff changeset
2475 }
Ritor1
parents:
diff changeset
2476
Ritor1
parents:
diff changeset
2477 //----- (0049F5A2) --------------------------------------------------------
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2478 void Render::PackPCXpicture( unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size )
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2479 {
0
Ritor1
parents:
diff changeset
2480 void *v8; // esi@3
Ritor1
parents:
diff changeset
2481 void *v9; // esi@3
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2482 unsigned short* v11; // eax@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2483 // int v13; // eax@8
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2484 // int v14; // ecx@8
0
Ritor1
parents:
diff changeset
2485 signed int v15; // eax@11
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2486 // char v16; // zf@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2487 // int result; // eax@21
0
Ritor1
parents:
diff changeset
2488 char v18[58]; // [sp+Ch] [bp-ACh]@3
Ritor1
parents:
diff changeset
2489 char v20[48]; // [sp+48h] [bp-70h]@3
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2490 char *lineG; // [sp+78h] [bp-40h]@7
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2491 char *lineB; // [sp+7Ch] [bp-3Ch]@7
0
Ritor1
parents:
diff changeset
2492 int v23; // [sp+80h] [bp-38h]@4
Ritor1
parents:
diff changeset
2493 int v24; // [sp+84h] [bp-34h]@4
Ritor1
parents:
diff changeset
2494 int v25; // [sp+88h] [bp-30h]@4
Ritor1
parents:
diff changeset
2495 int v26; // [sp+8Ch] [bp-2Ch]@4
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2496 PCXHeader_1 Src; // [sp+90h] [bp-28h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2497 PCXHeader_2 v27; // [sp+A0h] [bp-18h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2498 char *lineRGB; // [sp+A8h] [bp-10h]@3
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2499 int pitch; // [sp+ACh] [bp-Ch]@1
0
Ritor1
parents:
diff changeset
2500 char v43; // [sp+B3h] [bp-5h]@18
Ritor1
parents:
diff changeset
2501 int i; // [sp+B4h] [bp-4h]@6
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2502 unsigned short* line_picture_data;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2503 byte test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2504 unsigned char pict_byte;
0
Ritor1
parents:
diff changeset
2505
2131
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2506 int num_r_bits = 5;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2507 int num_g_bits = 6;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2508 int num_b_bits = 5;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2509
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2510 int r_mask = 0xF800;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2511 int g_mask = 0x7E0;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2512 int b_mask = 0x1F;
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2513
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2514 pitch = wight;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2515 if ( wight & 1 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2516 pitch = wight + 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2517 Src.left = 0;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2518 Src.up = 0;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2519 Src.right = wight - 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2520 Src.bottom = heidth - 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2521 v27.pitch = pitch;
0
Ritor1
parents:
diff changeset
2522 memset(&v20, 0, 0x30u);
Ritor1
parents:
diff changeset
2523 memset(&v18, 0, 0x38u);
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2524 v8 = data_buff;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2525 v27.reserved = 0;
0
Ritor1
parents:
diff changeset
2526 *(_WORD *)&v18[56] = 0;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2527 Src.manufacturer = 10;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2528 Src.version = 5;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2529 Src.encoding = 1;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2530 Src.bpp = 8;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2531 Src.hdpi = 75;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2532 Src.vdpi = 75;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2533 v27.planes = 3;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2534 v27.palette_info = 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2535 memcpy(data_buff, &Src, 1);
0
Ritor1
parents:
diff changeset
2536 v8 = (char *)v8 + 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2537 memcpy(v8, &Src.version, 1);
0
Ritor1
parents:
diff changeset
2538 v8 = (char *)v8 + 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2539 memcpy(v8, &Src.encoding, 1);
0
Ritor1
parents:
diff changeset
2540 v8 = (char *)v8 + 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2541 memcpy(v8, &Src.bpp, 1);
0
Ritor1
parents:
diff changeset
2542 v8 = (char *)v8 + 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2543 memcpy(v8, &Src.left, 2);
0
Ritor1
parents:
diff changeset
2544 v8 = (char *)v8 + 2;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2545 memcpy(v8, &Src.up, 2);
0
Ritor1
parents:
diff changeset
2546 v8 = (char *)v8 + 2;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2547 memcpy(v8, &Src.right, 2);
0
Ritor1
parents:
diff changeset
2548 v8 = (char *)v8 + 2;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2549 memcpy(v8, &Src.bottom, 2);
0
Ritor1
parents:
diff changeset
2550 v8 = (char *)v8 + 2;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2551 memcpy(v8, &Src.hdpi, 2);
0
Ritor1
parents:
diff changeset
2552 v8 = (char *)v8 + 2;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2553 memcpy(v8, &Src.vdpi, 2);
0
Ritor1
parents:
diff changeset
2554 v8 = (char *)v8 + 2;
Ritor1
parents:
diff changeset
2555 memcpy(v8, &v20, 0x30u);
Ritor1
parents:
diff changeset
2556 v8 = (char *)v8 + 48;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2557 memcpy(v8, &v27, 1u);
0
Ritor1
parents:
diff changeset
2558 v8 = (char *)v8 + 1;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2559 memcpy(v8, &v27.planes, 1);
0
Ritor1
parents:
diff changeset
2560 v8 = (char *)v8 + 1;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2561 memcpy(v8, &v27.pitch, 2);
0
Ritor1
parents:
diff changeset
2562 v8 = (char *)v8 + 2;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2563 memcpy(v8, &v27.palette_info, 2);
0
Ritor1
parents:
diff changeset
2564 v8 = (char *)v8 + 2;
Ritor1
parents:
diff changeset
2565 memcpy(v8, &v18, 0x3Au);
Ritor1
parents:
diff changeset
2566 v9 = (char *)v8 + 58;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2567
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2568 lineRGB = (char*)malloc(3 * (wight + 2));
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2569 if ( heidth > 0 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2570 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2571 v26 = 3 * pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2572 v23 = 2 * wight;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2573 v11 = picture_data;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2574 v24 = (int)picture_data;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2575 for ( v25 = heidth; v25; v25-- )
0
Ritor1
parents:
diff changeset
2576 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2577 line_picture_data = v11;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2578 if ( wight > 0 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2579 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2580 lineG = (char *)lineRGB + pitch;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2581 lineB = (char *)lineRGB + 2 * pitch;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2582 for ( uint i = 0; i < wight; i++ )
0
Ritor1
parents:
diff changeset
2583 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2584 lineRGB[i] = (signed int)(r_mask & *line_picture_data) >> (num_g_bits + num_b_bits + num_r_bits - 8);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2585 lineG[i] = (signed int)(g_mask & *line_picture_data) >> ( num_b_bits + num_g_bits- 8);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2586 lineB[i] = (b_mask & *line_picture_data) << (8 - num_b_bits);
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
2587 line_picture_data += 1;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2588 }
0
Ritor1
parents:
diff changeset
2589 }
Ritor1
parents:
diff changeset
2590 for ( i = 0; i < v26; v9 = (char *)v9 + 1 )
Ritor1
parents:
diff changeset
2591 {
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2592 pict_byte = lineRGB[i];
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2593 for ( test_byte = 1; test_byte < 63; ++test_byte )
0
Ritor1
parents:
diff changeset
2594 {
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2595 v15 = i + test_byte;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2596 if ( lineRGB[v15] != pict_byte )
0
Ritor1
parents:
diff changeset
2597 break;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2598 if ( !(v15 % pitch) )
0
Ritor1
parents:
diff changeset
2599 break;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2600 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2601 if ( i + test_byte > v26 )
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2602 test_byte = 3 * pitch - i;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2603 if ( test_byte > 1 || pict_byte >= 192 )
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2604 {
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2605 v43 = test_byte | 0xC0;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2606 memcpy(v9, &v43, 1);
0
Ritor1
parents:
diff changeset
2607 v9 = (char *)v9 + 1;
Ritor1
parents:
diff changeset
2608 }
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2609 memcpy(v9, &pict_byte, 1);
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2610 i += test_byte;
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2611 }
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2612 v11 += wight;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2613 }
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2614 }
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2615 free(lineRGB);
810
f5156b8c61ad savegame refactoring
Gloval
parents: 792
diff changeset
2616 *(int *)packed_size = (char *)v9 - data_buff;
0
Ritor1
parents:
diff changeset
2617 }
Ritor1
parents:
diff changeset
2618
Ritor1
parents:
diff changeset
2619 //----- (0049F8B5) --------------------------------------------------------
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
2620 void Render::SavePCXImage(const char *Filename, unsigned short* picture_data, int width, int height)
0
Ritor1
parents:
diff changeset
2621 {
Ritor1
parents:
diff changeset
2622 FILE *result; // eax@1
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2623 FILE *pOutFile; // edi@4
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2624 unsigned short* v9; // eax@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2625 // int v10; // eax@7
0
Ritor1
parents:
diff changeset
2626 signed int v12; // eax@12
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2627 // char v13; // zf@21
0
Ritor1
parents:
diff changeset
2628 char v14[56]; // [sp+4h] [bp-A0h]@4
Ritor1
parents:
diff changeset
2629 __int16 v15; // [sp+3Ch] [bp-68h]@4
Ritor1
parents:
diff changeset
2630 char color_map[48]; // [sp+40h] [bp-64h]@4
Ritor1
parents:
diff changeset
2631 int v18; // [sp+74h] [bp-30h]@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2632 // char *v19; // [sp+78h] [bp-2Ch]@5
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2633 int image_width; // [sp+7Ch] [bp-28h]@5
0
Ritor1
parents:
diff changeset
2634 PCXHeader_1 header1; // [sp+80h] [bp-24h]@4
Ritor1
parents:
diff changeset
2635 PCXHeader_2 header2; // [sp+90h] [bp-14h]@4
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2636 char *lineRGB; // [sp+98h] [bp-Ch]@4
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2637 int pitch; // [sp+9Ch] [bp-8h]@2
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2638 char *lineB; // [sp+A0h] [bp-4h]@8
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2639 char *lineG;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2640 unsigned short* line_pictute_data;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2641 byte test_byte;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2642 char v43;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2643
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2644 int num_r_bits = 5;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2645 int num_g_bits = 6;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2646 int num_b_bits = 5;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2647
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2648 int r_mask = 0xF800;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2649 int g_mask = 0x7E0;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2650 int b_mask = 0x1F;
0
Ritor1
parents:
diff changeset
2651
Ritor1
parents:
diff changeset
2652 result = fopen(Filename, "wb");
Ritor1
parents:
diff changeset
2653 Filename = (const char *)result;
Ritor1
parents:
diff changeset
2654 if ( result )
Ritor1
parents:
diff changeset
2655 {
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2656 pitch = width;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2657 if ( width & 1 )
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2658 pitch = width + 1;
0
Ritor1
parents:
diff changeset
2659 header1.left = 0;
Ritor1
parents:
diff changeset
2660 header1.up = 0;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2661 header1.right = width - 1;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2662 header1.bottom = height - 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2663 header2.pitch = pitch;
0
Ritor1
parents:
diff changeset
2664 memset(color_map, 0, sizeof(color_map));
Ritor1
parents:
diff changeset
2665 header2.reserved = 0;
Ritor1
parents:
diff changeset
2666 memset(v14, 0, sizeof(v14));
Ritor1
parents:
diff changeset
2667 v15 = 0;
Ritor1
parents:
diff changeset
2668 header1.manufacturer = 10;
Ritor1
parents:
diff changeset
2669 header1.version = 5;
Ritor1
parents:
diff changeset
2670 header1.encoding = 1;
Ritor1
parents:
diff changeset
2671 header1.bpp = 8;
Ritor1
parents:
diff changeset
2672 header1.hdpi = 75;
Ritor1
parents:
diff changeset
2673 header1.vdpi = 75;
Ritor1
parents:
diff changeset
2674 header2.planes = 3;
Ritor1
parents:
diff changeset
2675 header2.palette_info = 1;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2676 fwrite(&header1, 1, 1, (FILE *)Filename);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2677 pOutFile = (FILE *)Filename;
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2678 fwrite(&header1.version, 1, 1, (FILE *)Filename);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2679 fwrite(&header1.encoding, 1, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2680 fwrite(&header1.bpp, 1, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2681 fwrite(&header1.left, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2682 fwrite(&header1.up, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2683 fwrite(&header1.right, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2684 fwrite(&header1.bottom, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2685 fwrite(&header1.hdpi, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2686 fwrite(&header1.vdpi, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2687 fwrite(color_map, 0x30u, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2688 fwrite(&header2, 1, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2689 fwrite(&header2.planes, 1, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2690 fwrite(&header2.pitch, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2691 fwrite(&header2.palette_info, 2, 1, pOutFile);
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2692 fwrite(v14, 0x3Au, 1, pOutFile);
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2693
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2694 lineRGB = (char *)malloc(3 * (width + 2));
2131
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2695 //Ïðè ñîõðàíåíèè èçîáðàæåíèÿ ïîäðÿä èäóùèå ïèêñåëè îäèíàêîâîãî öâåòà îáúåäèíÿþòñÿ è âìåñòî óêàçàíèÿ öâåòà äëÿ êàæäîãî ïèêñåëÿ
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2696 //óêàçûâàåòñÿ öâåò ãðóïïû ïèêñåëåé è èõ êîëè÷åñòâî.
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2697 image_width = 3 * pitch;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2698 v9 = picture_data;
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2699 for ( v18 = 0; v18 < height; v18++ )//ñòîëáåö
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2700 {
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2701 line_pictute_data = v9;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2702 lineG = (char *)lineRGB + pitch;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2703 lineB = (char *)lineRGB + 2 * pitch;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2704
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2705 for ( int i = 0; i < width; i++ )//ñòðîêà
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2706 {
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2707 lineRGB[i] = (signed int)(r_mask & *line_pictute_data) >> (num_g_bits + num_b_bits + num_r_bits - 8);
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2708 lineG[i] = (signed int)(g_mask & *line_pictute_data) >> (num_b_bits + num_g_bits - 8);
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2709 lineB[i] = (b_mask & *line_pictute_data) << (8 - num_b_bits);
2131
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2710 line_pictute_data += 1;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2711 }
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2712 test_byte = 1;
2131
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2713 for ( int i = 0; (signed int)i < image_width; i += test_byte )
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2714 {
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2715 unsigned char pic_byte = lineRGB[i];
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2716 for ( test_byte; test_byte < 63; ++test_byte )// ðàñ÷¸ò êîëè÷åñòâà îäèíàêîâûõ öâåòîâ
0
Ritor1
parents:
diff changeset
2717 {
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2718 v12 = i + test_byte;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2719 if ( lineRGB[v12] != pic_byte )
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2720 break;
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2721 if ( !(v12 % pitch) )
2127
400f3db2e4e5 Screenshot continue
Ritor1
parents: 2120
diff changeset
2722 break;
0
Ritor1
parents:
diff changeset
2723 }
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2724 if ( i + test_byte > image_width )
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2725 test_byte = 3 * pitch - i;
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2726 if ( test_byte > 1 || pic_byte >= 0xC0 )
0
Ritor1
parents:
diff changeset
2727 {
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2728 v43 = test_byte | 0xC0;//òåñò-áàéò îáúåäèíåíèÿ
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2729 fwrite(&v43, 1, 1, pOutFile);
0
Ritor1
parents:
diff changeset
2730 }
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2731 fwrite(&pic_byte, 1, 1, pOutFile);
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2732 }
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2733 v9 += width;
2131
651b24553ae9 savegame screenshot fix
Ritor1
parents: 2128
diff changeset
2734 }
2128
0d0aa7c1ccdd Savegame_screenshot continue
Ritor1
parents: 2127
diff changeset
2735 free(lineRGB);
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
2736 fclose(pOutFile);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
2737 }
0
Ritor1
parents:
diff changeset
2738 }
Ritor1
parents:
diff changeset
2739
Ritor1
parents:
diff changeset
2740 //----- (0049FBCD) --------------------------------------------------------
Ritor1
parents:
diff changeset
2741 void Render::ClearTarget(unsigned int uColor)
Ritor1
parents:
diff changeset
2742 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2743 //if (pRenderD3D)
0
Ritor1
parents:
diff changeset
2744 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2745 if (using_software_screen_buffer)
0
Ritor1
parents:
diff changeset
2746 pRenderD3D->ClearTarget(true, uColor, false, 0.0);
Ritor1
parents:
diff changeset
2747 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2748 //else
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2749 //memset32(pTargetSurface, uColor, field_10 * field_14 / 2);
0
Ritor1
parents:
diff changeset
2750 }
Ritor1
parents:
diff changeset
2751
Ritor1
parents:
diff changeset
2752
Ritor1
parents:
diff changeset
2753 //----- (0049FC37) --------------------------------------------------------
Ritor1
parents:
diff changeset
2754 void Render::Present()
Ritor1
parents:
diff changeset
2755 {
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2756 //struct tagRECT Rect; // [sp+8h] [bp-28h]@11
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2757 //RECT a4; // [sp+18h] [bp-18h]@11
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2758 //struct tagPOINT Point; // [sp+28h] [bp-8h]@11
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2759
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2760 if ( !pRenderer->pRenderD3D || this->using_software_screen_buffer )
0
Ritor1
parents:
diff changeset
2761 {
Ritor1
parents:
diff changeset
2762 this->pBeforePresentFunction();
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2763 if ( this->pRenderD3D )
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2764 {
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2765 if ( this->using_software_screen_buffer )
0
Ritor1
parents:
diff changeset
2766 pRenderD3D->Present(false);
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2767 }
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2768 else
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2769 __debugbreak(); // no sr
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2770 /*{
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2771 if ( this->bWindowMode )
0
Ritor1
parents:
diff changeset
2772 {
Ritor1
parents:
diff changeset
2773 RestoreFrontBuffer();
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2774 GetClientRect(this->hWnd, &Rect);
0
Ritor1
parents:
diff changeset
2775 Point.y = 0;
Ritor1
parents:
diff changeset
2776 Point.x = 0;
2217
744ed51880ed expand button
Ritor1
parents: 2216
diff changeset
2777 ClientToScreen(this->hWnd, &Point);
0
Ritor1
parents:
diff changeset
2778 OffsetRect(&Rect, Point.x, Point.y);
Ritor1
parents:
diff changeset
2779 a4.top = 0;
Ritor1
parents:
diff changeset
2780 a4.bottom = 480;
Ritor1
parents:
diff changeset
2781 a4.left = 0;
Ritor1
parents:
diff changeset
2782 a4.right = 640;
Ritor1
parents:
diff changeset
2783 PresentRect(&Rect, &a4);
Ritor1
parents:
diff changeset
2784 }
Ritor1
parents:
diff changeset
2785 else
Ritor1
parents:
diff changeset
2786 {
Ritor1
parents:
diff changeset
2787 RestoreFrontBuffer();
Ritor1
parents:
diff changeset
2788 a4.top = 0;
Ritor1
parents:
diff changeset
2789 a4.bottom = 480;
Ritor1
parents:
diff changeset
2790 a4.left = 0;
Ritor1
parents:
diff changeset
2791 a4.right = 640;
Ritor1
parents:
diff changeset
2792 BltBackToFontFast(0, 0, &a4);
Ritor1
parents:
diff changeset
2793 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2794 }*/
0
Ritor1
parents:
diff changeset
2795 }
Ritor1
parents:
diff changeset
2796 }
Ritor1
parents:
diff changeset
2797
Ritor1
parents:
diff changeset
2798 //----- (0049FD3A) --------------------------------------------------------
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2799 void Render::_49FD3A_fullscreen()
0
Ritor1
parents:
diff changeset
2800 {
Ritor1
parents:
diff changeset
2801 Render *v2; // esi@1
Ritor1
parents:
diff changeset
2802 IDirectDrawSurface4 *v3; // eax@6
Ritor1
parents:
diff changeset
2803 IDirectDrawSurface4 *v4; // ST0C_4@6
Ritor1
parents:
diff changeset
2804 RECT v5; // [sp+8h] [bp-10h]@6
Ritor1
parents:
diff changeset
2805
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
2806 Render* a1 = this;
0
Ritor1
parents:
diff changeset
2807 v2 = a1;
Ritor1
parents:
diff changeset
2808 if ( a1->pRenderD3D )
Ritor1
parents:
diff changeset
2809 {
Ritor1
parents:
diff changeset
2810 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST)
Ritor1
parents:
diff changeset
2811 pFrontBuffer4->Restore();
Ritor1
parents:
diff changeset
2812 if (pBackBuffer4->IsLost() == DDERR_SURFACELOST)
Ritor1
parents:
diff changeset
2813 pBackBuffer4->Restore();
Ritor1
parents:
diff changeset
2814 v3 = v2->pBackBuffer4;
Ritor1
parents:
diff changeset
2815 v4 = v2->pFrontBuffer4;
Ritor1
parents:
diff changeset
2816 v5.top = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
2817 v5.bottom = window->GetHeight();
0
Ritor1
parents:
diff changeset
2818 v5.left = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
2819 v5.right = window->GetWidth();
0
Ritor1
parents:
diff changeset
2820 v3->BltFast(0, 0, v4, &v5, 16u);
Ritor1
parents:
diff changeset
2821 }
Ritor1
parents:
diff changeset
2822 }
Ritor1
parents:
diff changeset
2823
Ritor1
parents:
diff changeset
2824 //----- (0049FDBF) --------------------------------------------------------
Ritor1
parents:
diff changeset
2825 void Render::CreateZBuffer()
Ritor1
parents:
diff changeset
2826 {
Ritor1
parents:
diff changeset
2827 if (!pDefaultZBuffer)
Ritor1
parents:
diff changeset
2828 {
Ritor1
parents:
diff changeset
2829 pDefaultZBuffer = pActiveZBuffer = nullptr;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
2830 pDefaultZBuffer = pActiveZBuffer = (int *)malloc(0x12C000);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 810
diff changeset
2831 memset32(pActiveZBuffer, 0xFFFF0000, 0x4B000u); // // inlined Render::ClearActiveZBuffer (mm8::004A085B)
0
Ritor1
parents:
diff changeset
2832 }
Ritor1
parents:
diff changeset
2833 }
Ritor1
parents:
diff changeset
2834
Ritor1
parents:
diff changeset
2835 //----- (0049FE05) --------------------------------------------------------
Ritor1
parents:
diff changeset
2836 void Render::Release()
Ritor1
parents:
diff changeset
2837 {
Ritor1
parents:
diff changeset
2838 Render *v1; // esi@1
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2839 //RenderD3D *v2; // ecx@1
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2840 //char v3; // zf@4
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2841 //void *v4; // ebx@6
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2842 // IDirectDraw *v5; // eax@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2843 // IDirectDrawSurface2 *v6; // eax@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2844 // IDirectDrawSurface2 *v7; // eax@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2845 // IDirectDrawSurface2 *v8; // eax@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2846 // IDirectDraw2 *v9; // eax@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2847 // IDirectDraw4 *v10; // eax@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2848 // IDirectDrawSurface4 *v11; // eax@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2849 // IDirectDrawSurface4 *v12; // eax@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2850 // IDirectDrawSurface4 *v13; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2851 // IDirectDraw4 *v14; // eax@26
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2852 // unsigned __int16 **v15; // ebx@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2853 // void **v16; // esi@29
0
Ritor1
parents:
diff changeset
2854
Ritor1
parents:
diff changeset
2855 v1 = this;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2856 if (pRenderD3D)
0
Ritor1
parents:
diff changeset
2857 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2858 if ( v1->using_software_screen_buffer )
0
Ritor1
parents:
diff changeset
2859 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2860 pRenderD3D->ClearTarget(true, 0, false, 1.0);
0
Ritor1
parents:
diff changeset
2861 pRenderD3D->Present(0);
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2862 pRenderD3D->ClearTarget(true, 0, false, 1.0);
0
Ritor1
parents:
diff changeset
2863 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
2864 //v1->pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
2865 v1->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
2866 v1->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
2867 v1->pDirectDraw4 = 0;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2868 if (v1->pTargetSurface)
0
Ritor1
parents:
diff changeset
2869 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2870 delete [] v1->pTargetSurface_unaligned;
0
Ritor1
parents:
diff changeset
2871 v1->pTargetSurface = 0;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
2872 v1->pTargetSurface_unaligned = 0;
0
Ritor1
parents:
diff changeset
2873 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2874 if (pRenderD3D)
0
Ritor1
parents:
diff changeset
2875 {
Ritor1
parents:
diff changeset
2876 pRenderD3D->Release();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2877 delete pRenderD3D;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2878 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2879 pRenderD3D = 0;
0
Ritor1
parents:
diff changeset
2880 }
Ritor1
parents:
diff changeset
2881 else
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2882 ;//__debugbreak(); // no sr
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2883 /*{
0
Ritor1
parents:
diff changeset
2884 if ( bWinNT4_0 == 1 )
Ritor1
parents:
diff changeset
2885 {
Ritor1
parents:
diff changeset
2886 v5 = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
2887 if ( !v5 )
Ritor1
parents:
diff changeset
2888 return;
Ritor1
parents:
diff changeset
2889 v5->SetCooperativeLevel(v1->hWnd, 8u);
Ritor1
parents:
diff changeset
2890 v1->pDirectDraw2->FlipToGDISurface();
Ritor1
parents:
diff changeset
2891 v6 = v1->pSomeSurface2;
Ritor1
parents:
diff changeset
2892 if ( v6 )
Ritor1
parents:
diff changeset
2893 {
Ritor1
parents:
diff changeset
2894 v6->Release();
Ritor1
parents:
diff changeset
2895 v1->pSomeSurface2 = 0;
Ritor1
parents:
diff changeset
2896 }
Ritor1
parents:
diff changeset
2897 v7 = v1->pBackBuffer2;
Ritor1
parents:
diff changeset
2898 if ( v7 )
Ritor1
parents:
diff changeset
2899 {
Ritor1
parents:
diff changeset
2900 v7->Release();
Ritor1
parents:
diff changeset
2901 v1->pBackBuffer2 = 0;
Ritor1
parents:
diff changeset
2902 }
Ritor1
parents:
diff changeset
2903 v8 = v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
2904 if ( v8 )
Ritor1
parents:
diff changeset
2905 {
Ritor1
parents:
diff changeset
2906 v8->Release();
Ritor1
parents:
diff changeset
2907 v1->pFrontBuffer2 = 0;
Ritor1
parents:
diff changeset
2908 }
Ritor1
parents:
diff changeset
2909 v9 = v1->pDirectDraw2;
Ritor1
parents:
diff changeset
2910 if ( v9 )
Ritor1
parents:
diff changeset
2911 {
Ritor1
parents:
diff changeset
2912 v9->Release();
Ritor1
parents:
diff changeset
2913 v1->pDirectDraw2 = 0;
Ritor1
parents:
diff changeset
2914 }
Ritor1
parents:
diff changeset
2915 }
Ritor1
parents:
diff changeset
2916 else
Ritor1
parents:
diff changeset
2917 {
Ritor1
parents:
diff changeset
2918 v10 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
2919 if ( !v10 )
Ritor1
parents:
diff changeset
2920 return;
Ritor1
parents:
diff changeset
2921 v10->SetCooperativeLevel(v1->hWnd, 1032u);
Ritor1
parents:
diff changeset
2922 v1->pDirectDraw4->FlipToGDISurface();
Ritor1
parents:
diff changeset
2923 v11 = v1->pColorKeySurface4;
Ritor1
parents:
diff changeset
2924 if ( v11 )
Ritor1
parents:
diff changeset
2925 {
Ritor1
parents:
diff changeset
2926 v11->Release();
Ritor1
parents:
diff changeset
2927 v1->pColorKeySurface4 = 0;
Ritor1
parents:
diff changeset
2928 }
Ritor1
parents:
diff changeset
2929 v12 = v1->pBackBuffer4;
Ritor1
parents:
diff changeset
2930 if ( v12 )
Ritor1
parents:
diff changeset
2931 {
Ritor1
parents:
diff changeset
2932 v12->Release();
Ritor1
parents:
diff changeset
2933 v1->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
2934 }
Ritor1
parents:
diff changeset
2935 v13 = v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
2936 if ( v13 )
Ritor1
parents:
diff changeset
2937 {
Ritor1
parents:
diff changeset
2938 v13->Release();
Ritor1
parents:
diff changeset
2939 v1->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
2940 }
Ritor1
parents:
diff changeset
2941 v14 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
2942 if ( v14 )
Ritor1
parents:
diff changeset
2943 {
Ritor1
parents:
diff changeset
2944 v14->Release();
Ritor1
parents:
diff changeset
2945 v1->pDirectDraw4 = 0;
Ritor1
parents:
diff changeset
2946 }
Ritor1
parents:
diff changeset
2947 }
Ritor1
parents:
diff changeset
2948 v15 = &v1->pTargetSurface;
Ritor1
parents:
diff changeset
2949 if ( v1->pTargetSurface )
Ritor1
parents:
diff changeset
2950 {
Ritor1
parents:
diff changeset
2951 v16 = (void **)&v1->ptr_400E8;
Ritor1
parents:
diff changeset
2952 free(*v16);
Ritor1
parents:
diff changeset
2953 *v15 = 0;
Ritor1
parents:
diff changeset
2954 *v16 = 0;
Ritor1
parents:
diff changeset
2955 }
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
2956 }*/
0
Ritor1
parents:
diff changeset
2957 }
Ritor1
parents:
diff changeset
2958
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2959
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2960
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2961
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2962 void Present32(unsigned __int32 *src, unsigned int src_pitch,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2963 unsigned __int32 *dst, unsigned int dst_pitch)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2964 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2965 for (uint y = 0; y < 8; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2966 memcpy(dst + y * dst_pitch,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2967 src + y * src_pitch, src_pitch * sizeof(__int32));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2968
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2969 for (uint y = 8; y < 352; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2970 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2971 memcpy(dst + y * dst_pitch,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2972 src + y * src_pitch, 8 * sizeof(__int32));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2973 memcpy(dst + 8 + game_viewport_width + y * dst_pitch,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2974 src + 8 + game_viewport_width + y * src_pitch, 174/*172*/ * sizeof(__int32));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2975 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2976
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2977 for (uint y = 352; y < 480; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2978 memcpy(dst + y * dst_pitch,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2979 src + y * src_pitch, src_pitch * sizeof(__int32));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2980
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2981 for (uint y = pViewport->uViewportTL_Y; y < pViewport->uViewportBR_Y + 1; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2982 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2983 for (uint x = pViewport->uViewportTL_X; x < pViewport->uViewportBR_X; ++x)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2984 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2985 //if (src[x + y * src_pitch] != (pRenderer->uTargetGMask | pRenderer->uTargetBMask))
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
2986 if (src[x + y * src_pitch] != 0xFF00FCF8) // FFF8FCF8 = Color32(Color16(g_mask | b_mask))
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2987 dst[x + y * dst_pitch] = src[x + y * src_pitch];
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2988 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2989 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2990 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2991
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2992 //----- (004A597D) --------------------------------------------------------
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2993 void Present_NoColorKey()
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2994 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2995 //unsigned __int16 *v0; // eax@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
2996 // unsigned __int16 *v1; // esi@4
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2997 void *v2; // edi@4
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2998 //signed int v4; // ebx@4
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
2999 //signed int v5; // ebx@6
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3000 //void *v6; // edi@7
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3001 //const void *v7; // esi@7
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3002 // signed int v8; // ebx@8
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3003 int v9; // eax@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3004 unsigned int v10; // esi@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3005 unsigned __int32 v11; // edi@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3006 //int v12; // ecx@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3007 unsigned int v13; // ebx@10
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3008 // int v14; // eax@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3009 // int v15; // eax@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3010 // int v16; // eax@14
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3011 // int v17; // eax@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3012 // HRESULT v18; // eax@22
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3013 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-98h]@3
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3014 //int v20; // [sp+88h] [bp-1Ch]@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3015 int v21; // [sp+8Ch] [bp-18h]@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3016 __int32 v22; // [sp+90h] [bp-14h]@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3017 //unsigned __int32 v23; // [sp+94h] [bp-10h]@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3018 unsigned int v24; // [sp+98h] [bp-Ch]@4
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3019 //unsigned int _this; // [sp+9Ch] [bp-8h]@10
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3020 //LPVOID v26; // [sp+A0h] [bp-4h]@4
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3021
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3022 int r_mask = 0xF800;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3023 int g_mask = 0x7E0;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3024 int b_mask = 0x1F;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3025
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3026 if ( !pRenderer->uNumSceneBegins )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3027 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3028 //if ( pRenderer->using_software_screen_buffer )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3029 //{
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3030 memset(&Dst, 0, 0x7Cu);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3031 Dst.dwSize = 124;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3032 if ( pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &Dst, DDLOCK_WAIT) )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3033 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3034 //v26 = Dst.lpSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3035 //pRenderer->pCurrentlyLockedSurfaceDataPtr = (unsigned __int16 *)Dst.lpSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3036 v24 = g_mask | b_mask | ((g_mask | b_mask) << 16);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3037 //pRenderer->pCurrentlyLockedSoftSurface = pRenderer->pTargetSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3038 //pRenderer->uCurrentlyLockedSurfacePitch = Dst.lPitch;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3039 //v1 = pRenderer->pTargetSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3040 v2 = Dst.lpSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3041
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3042
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3043 /*for (uint y = 0; y < 480; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3044 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3045 auto pDst = (unsigned short *)((char *)Dst.lpSurface + y * Dst.lPitch);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3046 for (uint x = 0; x < 640; ++x)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3047 pDst[x] = pRenderer->uTargetRMask | pRenderer->uTargetBMask;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3048 }*/
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3049
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3050 if (!FORCE_16_BITS)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3051 Present32((unsigned __int32 *)pRenderer->pTargetSurface, pRenderer->uTargetSurfacePitch, (unsigned __int32 *)Dst.lpSurface, Dst.lPitch / 4);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3052 else
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3053 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3054 ushort* pSrc = (unsigned short *)pRenderer->pTargetSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3055 short* pDst = (__int16 *)Dst.lpSurface;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3056
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3057 for (uint y = 0; y < 8; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3058 memcpy(pDst + y * Dst.lPitch / 2,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3059
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3060 pSrc + y * window->GetWidth(), window->GetWidth() * sizeof(__int16));
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3061
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3062 for (uint y = 8; y < 352; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3063 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3064 memcpy(pDst + y * Dst.lPitch / 2,
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3065 pSrc + y * window->GetWidth(), 8 * sizeof(__int16));
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3066 memcpy(pDst + 8 + game_viewport_width/*462*/ + y * Dst.lPitch / 2,
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3067 pSrc + 8 + game_viewport_width/*462*/ + y * window->GetWidth(), 174/*172*/ * sizeof(__int16));
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3068 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3069
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3070 for (uint y = 352; y < window->GetHeight(); ++y)
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3071 memcpy(pDst + y * Dst.lPitch / 2,
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3072 pSrc + y * window->GetWidth(), window->GetWidth() * sizeof(__int16));
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3073
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3074
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3075 ushort* pSrc_x1y1 = pSrc + window->GetWidth() * pViewport->uViewportTL_Y + pViewport->uViewportTL_X;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3076 //_this = (unsigned int)&pSrc[2 * (((signed int)pViewport->uViewportX >> 1) + 320 * pViewport->uViewportY)];
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3077 short* pDst_x1y1 = pDst + Dst.lPitch * pViewport->uViewportTL_Y + pViewport->uViewportTL_X;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3078 //v23 = (unsigned __int32)((char *)v26 + 4 * (((signed int)pViewport->uViewportX >> 1) + (Dst.lPitch >> 2) * pViewport->uViewportY));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3079 v9 = ((signed int)pViewport->uViewportTL_X >> 1) - ((signed int)pViewport->uViewportBR_X >> 1);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3080 //v20 = ((signed int)pViewport->uViewportZ >> 1) - ((signed int)pViewport->uViewportX >> 1);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3081 v22 = 4 * ((Dst.lPitch / 4) + v9);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3082 v21 = 4 * v9 + 1280;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3083
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3084 //auto uNumLines = pViewport->uViewportW - pViewport->uViewportY + 1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3085 //v26 = (LPVOID)(pViewport->uViewportW - pViewport->uViewportY + 1);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3086 v10 = (int)pSrc_x1y1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3087 v11 = (int)pDst_x1y1;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3088 int uHalfWidth = (pViewport->uViewportBR_X - pViewport->uViewportTL_X) / 2;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3089 v13 = v24;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3090
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3091 for (uint y = pViewport->uViewportTL_Y; y < pViewport->uViewportBR_Y + 1; ++y)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3092 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3093 //memcpy(pDst + pViewport->uViewportX + y * Dst.lPitch / 2,
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3094 // pSrc + pViewport->uViewportX + y * 640, (pViewport->uViewportZ - pViewport->uViewportX) * sizeof(__int16));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3095 for (uint x = pViewport->uViewportTL_X; x < pViewport->uViewportBR_X; ++x)
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3096 {
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3097 if (pSrc[y * window->GetWidth() + x] != (g_mask | b_mask))
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3098 pDst[y * Dst.lPitch / 2 + x] = pSrc[y * window->GetWidth() + x];
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3099 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3100 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3101 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3102
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3103 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3104
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3105 /* while ( 1 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3106 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3107 while ( 1 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3108 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3109 v14 = *(int *)v10;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3110 v10 += 4;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3111 if ( v14 == v13 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3112 break;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3113 if ( (short)v14 == (short)v13 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3114 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3115 *(int *)v11 = *(int *)v11 & 0xFFFF | v14 & 0xFFFF0000;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3116 v11 += 4;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3117 --uHalfWidth;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3118 if ( !uHalfWidth )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3119 goto LABEL_21;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3120 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3121 else
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3122 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3123 v15 = __ROL__(v14, 16);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3124 if ( (short)v15 == (short)v13 )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3125 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3126 v17 = __ROR__(v15, 16);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3127 *(int *)v11 = *(int *)v11 & 0xFFFF0000 | (unsigned __int16)v17;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3128 v11 += 4;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3129 --uHalfWidth;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3130 if ( !uHalfWidth )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3131 goto LABEL_21;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3132 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3133 else
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3134 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3135 v16 = __ROR__(v15, 16);
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3136 *(int *)v11 = v16;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3137 v11 += 4;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3138 --uHalfWidth;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3139 if ( !uHalfWidth )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3140 goto LABEL_21;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3141 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3142 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3143 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3144 v11 += 4;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3145 --uHalfWidth;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3146 if ( !uHalfWidth )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3147 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3148 LABEL_21:
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3149 v10 += v21;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3150 v11 += v22;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3151 uHalfWidth = v20;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3152 if ( !--uNumLines )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3153 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3154 ErrD3D(pRenderer->pBackBuffer4->Unlock(0));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3155 return;
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3156 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3157 }
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3158 }*/
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
3159 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3160 //}
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3161 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3162 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3163
0
Ritor1
parents:
diff changeset
3164
Ritor1
parents:
diff changeset
3165 //----- (0049FFFB) --------------------------------------------------------
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3166 bool Render::InitializeFullscreen()
0
Ritor1
parents:
diff changeset
3167 {
Ritor1
parents:
diff changeset
3168 //Render *v2; // esi@1
Ritor1
parents:
diff changeset
3169 //HWND v3; // ebx@1
Ritor1
parents:
diff changeset
3170 //void *v4; // eax@2
Ritor1
parents:
diff changeset
3171 //RenderD3D *v5; // eax@3
Ritor1
parents:
diff changeset
3172 unsigned int v6; // edx@5
Ritor1
parents:
diff changeset
3173 RenderD3D__DevInfo *v7; // ecx@5
Ritor1
parents:
diff changeset
3174 bool v8; // eax@6
Ritor1
parents:
diff changeset
3175 RenderD3D *v9; // ecx@13
Ritor1
parents:
diff changeset
3176 unsigned int v10; // eax@13
Ritor1
parents:
diff changeset
3177 RenderD3D *v11; // eax@25
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3178 // HRESULT v12; // eax@25
0
Ritor1
parents:
diff changeset
3179 int v13; // ecx@25
Ritor1
parents:
diff changeset
3180 int v14; // eax@27
Ritor1
parents:
diff changeset
3181 signed int v15; // ebx@31
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3182 //bool v16; // eax@35
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3183 //char v17; // zf@35
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3184 // IDirectDraw4 *v18; // eax@38
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3185 // HRESULT v19; // eax@38
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3186 //int *v20; // eax@39
0
Ritor1
parents:
diff changeset
3187 int *v22; // eax@42
Ritor1
parents:
diff changeset
3188 int v23; // ecx@42
Ritor1
parents:
diff changeset
3189 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@25
Ritor1
parents:
diff changeset
3190 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@40
Ritor1
parents:
diff changeset
3191 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@25
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3192 // DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@38
0
Ritor1
parents:
diff changeset
3193 void *v28; // [sp+2FCh] [bp-10h]@2
Ritor1
parents:
diff changeset
3194 int v29; // [sp+308h] [bp-4h]@2
Ritor1
parents:
diff changeset
3195
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3196 __debugbreak(); // Nomad
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3197
0
Ritor1
parents:
diff changeset
3198 //v2 = this;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3199 this->using_software_screen_buffer = 0;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3200 //this->pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
3201 this->pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3202 this->pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3203 this->pDirectDraw4 = 0;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3204 //this->bColorKeySupported = 0;
0
Ritor1
parents:
diff changeset
3205 Release();
Ritor1
parents:
diff changeset
3206 //v3 = hWnd;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3207 this->window = window;
0
Ritor1
parents:
diff changeset
3208 CreateZBuffer();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3209
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3210 /*if (!bUserDirect3D)
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3211 {
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3212 CreateDirectDraw();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3213 SetDirectDrawCooperationMode(hWnd, 1);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3214 SetDirectDrawDisplayMode(640u, 480u, 16u);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3215 CreateDirectDrawPrimarySurface();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3216 v15 = 1;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3217 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3218 else
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3219 {*/
0
Ritor1
parents:
diff changeset
3220 pRenderD3D = new RenderD3D;
Ritor1
parents:
diff changeset
3221 v28 = pRenderD3D;
Ritor1
parents:
diff changeset
3222 v6 = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3223 v29 = -1;
Ritor1
parents:
diff changeset
3224 v7 = pRenderD3D->pAvailableDevices;
Ritor1
parents:
diff changeset
3225 if ( v7[v6].bIsDeviceCompatible )
Ritor1
parents:
diff changeset
3226 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3227 v8 = pRenderD3D->CreateDevice(v6, /*0*/true, window);
0
Ritor1
parents:
diff changeset
3228 }
Ritor1
parents:
diff changeset
3229 else
Ritor1
parents:
diff changeset
3230 {
Ritor1
parents:
diff changeset
3231 if ( v7[1].bIsDeviceCompatible )
Ritor1
parents:
diff changeset
3232 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3233 v8 = pRenderD3D->CreateDevice(1, /*0*/true, window);
0
Ritor1
parents:
diff changeset
3234 }
Ritor1
parents:
diff changeset
3235 else
Ritor1
parents:
diff changeset
3236 {
Ritor1
parents:
diff changeset
3237 if ( !v7->bIsDeviceCompatible )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3238 Error("There aren't any D3D devices to create.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3239
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3240 v8 = pRenderD3D->CreateDevice(0, /*0*/true, window);
0
Ritor1
parents:
diff changeset
3241 }
Ritor1
parents:
diff changeset
3242 }
Ritor1
parents:
diff changeset
3243 if ( !v8 )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3244 Error("D3Drend->Init failed.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3245
0
Ritor1
parents:
diff changeset
3246 v9 = pRenderD3D;
Ritor1
parents:
diff changeset
3247 pBackBuffer4 = v9->pBackBuffer;
Ritor1
parents:
diff changeset
3248 pFrontBuffer4 = v9->pFrontBuffer;
Ritor1
parents:
diff changeset
3249 pDirectDraw4 = v9->pHost;
Ritor1
parents:
diff changeset
3250 v10 = pRenderD3D->GetDeviceCaps();
Ritor1
parents:
diff changeset
3251 if ( v10 & 1 )
Ritor1
parents:
diff changeset
3252 {
Ritor1
parents:
diff changeset
3253 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3254 {
Ritor1
parents:
diff changeset
3255 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3256 delete pRenderD3D;
Ritor1
parents:
diff changeset
3257 }
Ritor1
parents:
diff changeset
3258 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3259 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3260 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3261 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3262 Error("Direct3D renderer: The device failed to return capabilities.");
0
Ritor1
parents:
diff changeset
3263 }
Ritor1
parents:
diff changeset
3264 if ( v10 & 0x3E )
Ritor1
parents:
diff changeset
3265 {
Ritor1
parents:
diff changeset
3266 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3267 {
Ritor1
parents:
diff changeset
3268 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3269 delete pRenderD3D;
Ritor1
parents:
diff changeset
3270 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3271 //pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
3272 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3273 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3274 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3275 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3276 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes.");
0
Ritor1
parents:
diff changeset
3277 }
Ritor1
parents:
diff changeset
3278 if ( (v10 & 0x80u) != 0 )
Ritor1
parents:
diff changeset
3279 {
Ritor1
parents:
diff changeset
3280 if ( pRenderD3D )
Ritor1
parents:
diff changeset
3281 {
Ritor1
parents:
diff changeset
3282 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3283 delete pRenderD3D;
Ritor1
parents:
diff changeset
3284 }
Ritor1
parents:
diff changeset
3285 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3286 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3287 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3288 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3289 Error("Direct3D renderer: The device doesn't support non-square textures.");
0
Ritor1
parents:
diff changeset
3290 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3291 //LOBYTE(field_10365C) = ~(unsigned __int8)(v10 >> 6) & 1;
0
Ritor1
parents:
diff changeset
3292 bRequiredTextureStagesAvailable = CheckTextureStages();
Ritor1
parents:
diff changeset
3293 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3294 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3295 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3296 v11 = pRenderD3D;
Ritor1
parents:
diff changeset
3297 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3298 ErrD3D(v11->pDevice->GetCaps(&halCaps, &refCaps));
Ritor1
parents:
diff changeset
3299 v13 = halCaps.dwMinTextureWidth;
Ritor1
parents:
diff changeset
3300 if ( (unsigned int)halCaps.dwMinTextureWidth >= halCaps.dwMinTextureHeight )
Ritor1
parents:
diff changeset
3301 v13 = halCaps.dwMinTextureHeight;
Ritor1
parents:
diff changeset
3302 v14 = halCaps.dwMaxTextureWidth;
Ritor1
parents:
diff changeset
3303 uMinDeviceTextureDim = v13;
Ritor1
parents:
diff changeset
3304 if ( (unsigned int)v14 < halCaps.dwMaxTextureHeight )
Ritor1
parents:
diff changeset
3305 v14 = halCaps.dwMaxTextureHeight;
Ritor1
parents:
diff changeset
3306 uMaxDeviceTextureDim = v14;
Ritor1
parents:
diff changeset
3307 if ( (unsigned int)v13 < 4 )
Ritor1
parents:
diff changeset
3308 uMinDeviceTextureDim = 4;
Ritor1
parents:
diff changeset
3309 v15 = 1;
Ritor1
parents:
diff changeset
3310 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, true));
Ritor1
parents:
diff changeset
3311 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, true));
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3312 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2));
0
Ritor1
parents:
diff changeset
3313 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, false));
Ritor1
parents:
diff changeset
3314 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, false));
Ritor1
parents:
diff changeset
3315 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHATESTENABLE, false));
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3316 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3317 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3318 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3319 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3320 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2));
0
Ritor1
parents:
diff changeset
3321 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0));
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3322 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3323 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2));
0
Ritor1
parents:
diff changeset
3324 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0));
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3325 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3326 //}
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3327 ddpfPrimarySuface.dwSize = 32;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3328 GetTargetPixelFormat(&ddpfPrimarySuface);
0
Ritor1
parents:
diff changeset
3329 ParseTargetPixelFormat();
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3330
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3331 if (!pRenderD3D)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3332 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3333 __debugbreak();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3334 pBeforePresentFunction = 0;//nullsub_1;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3335 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3336 //else
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3337 //{
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3338 /*v16 = IsColorKeySupported(pDirectDraw4);
0
Ritor1
parents:
diff changeset
3339 v17 = uAcquiredDirect3DDevice == v15;
Ritor1
parents:
diff changeset
3340 bColorKeySupported = v16;
Ritor1
parents:
diff changeset
3341 if ( !v17 )
Ritor1
parents:
diff changeset
3342 bColorKeySupported = 0;
Ritor1
parents:
diff changeset
3343 if ( bColorKeySupported )
Ritor1
parents:
diff changeset
3344 {
Ritor1
parents:
diff changeset
3345 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
3346 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask;
Ritor1
parents:
diff changeset
3347 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue;
Ritor1
parents:
diff changeset
3348 v18 = pDirectDraw4;
Ritor1
parents:
diff changeset
3349 ddsd2.dwSize = 124;
Ritor1
parents:
diff changeset
3350 ddsd2.dwFlags = 65543;
Ritor1
parents:
diff changeset
3351 ddsd2.ddsCaps.dwCaps = 2112;
Ritor1
parents:
diff changeset
3352 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
3353 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
3354 ErrD3D(v18->CreateSurface(&ddsd2, &pColorKeySurface4, 0));
Ritor1
parents:
diff changeset
3355 pBeforePresentFunction = Present_ColorKey;
Ritor1
parents:
diff changeset
3356 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3357 else*/
0
Ritor1
parents:
diff changeset
3358 {
Ritor1
parents:
diff changeset
3359 pTargetSurface = 0;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3360 pTargetSurface_unaligned = 0;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3361 pTargetSurface_unaligned = (unsigned int *)malloc(window->GetWidth() * window->GetHeight() * 2 + 32);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3362 if ( !pTargetSurface_unaligned
0
Ritor1
parents:
diff changeset
3363 || (memset(&pDesc, 0, 0x7Cu),
Ritor1
parents:
diff changeset
3364 pDesc.dwSize = 124,
Ritor1
parents:
diff changeset
3365 !pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, v15)) )
Ritor1
parents:
diff changeset
3366 return 0;
Ritor1
parents:
diff changeset
3367 pBackBuffer4->Unlock(0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3368 v22 = (int *)pTargetSurface_unaligned + 4;
0
Ritor1
parents:
diff changeset
3369 v23 = (unsigned int)pDesc.lpSurface & 7;
Ritor1
parents:
diff changeset
3370 LOBYTE(v22) = (unsigned __int8)v22 & 0xF8;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
3371 uTargetSurfacePitch = window->GetWidth();
0
Ritor1
parents:
diff changeset
3372 pBeforePresentFunction = Present_NoColorKey;
Ritor1
parents:
diff changeset
3373 v15 = 1;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3374 pTargetSurface = (unsigned __int32 *)((char *)v22 + 2 * v23);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3375 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3376 using_software_screen_buffer = v15;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3377 //}
0
Ritor1
parents:
diff changeset
3378 bWindowMode = 0;
Ritor1
parents:
diff changeset
3379 pParty->uFlags |= 2u;
2151
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2142
diff changeset
3380 pViewport->SetFOV(flt_6BE3A0 * 65536.0f);
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1110
diff changeset
3381 return v15 != 0;
0
Ritor1
parents:
diff changeset
3382 }
Ritor1
parents:
diff changeset
3383
Ritor1
parents:
diff changeset
3384 //----- (004A05F3) --------------------------------------------------------
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3385 bool Render::SwitchToWindow()
0
Ritor1
parents:
diff changeset
3386 {
Ritor1
parents:
diff changeset
3387 //Render *v2; // esi@1
Ritor1
parents:
diff changeset
3388 //void *v3; // eax@2
Ritor1
parents:
diff changeset
3389 //RenderD3D *v4; // eax@3
Ritor1
parents:
diff changeset
3390 //unsigned int v5; // edx@5
Ritor1
parents:
diff changeset
3391 //RenderD3D__DevInfo *v6; // ecx@5
Ritor1
parents:
diff changeset
3392 bool v7; // eax@7
Ritor1
parents:
diff changeset
3393 //RenderD3D *v8; // ecx@12
Ritor1
parents:
diff changeset
3394 unsigned int v9; // eax@12
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3395 // RenderD3D *v10; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3396 // HRESULT v11; // eax@24
0
Ritor1
parents:
diff changeset
3397 int v12; // eax@24
Ritor1
parents:
diff changeset
3398 int v13; // eax@26
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3399 //bool v14; // eax@32
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3400 //char v15; // zf@32
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3401 // IDirectDraw4 *v16; // eax@35
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3402 // HRESULT v17; // eax@35
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3403 //int *v18; // eax@36
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3404 // int *v19; // edx@38
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3405 // int v20; // eax@38
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3406 // unsigned int v21; // ecx@38
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3407 // int v22; // eax@41
0
Ritor1
parents:
diff changeset
3408 D3DDEVICEDESC refCaps; // [sp+Ch] [bp-300h]@24
Ritor1
parents:
diff changeset
3409 DDSURFACEDESC2 pDesc; // [sp+108h] [bp-204h]@37
Ritor1
parents:
diff changeset
3410 D3DDEVICEDESC halCaps; // [sp+184h] [bp-188h]@24
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3411 // DDSURFACEDESC2 ddsd2; // [sp+280h] [bp-8Ch]@35
0
Ritor1
parents:
diff changeset
3412 //RenderD3D *thisa; // [sp+2FCh] [bp-10h]@2
Ritor1
parents:
diff changeset
3413 int v29; // [sp+308h] [bp-4h]@2
Ritor1
parents:
diff changeset
3414
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3415 pParty->uFlags |= PARTY_FLAGS_1_0002;
2151
92511cd8fcdb Cleaned some variables.
Nomad
parents: 2142
diff changeset
3416 pViewport->SetFOV(flt_6BE3A0 * 65536.0f);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3417 using_software_screen_buffer = 0;
0
Ritor1
parents:
diff changeset
3418 Release();
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3419 //pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
3420 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3421 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3422 pDirectDraw4 = 0;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3423 //bColorKeySupported = 0;
0
Ritor1
parents:
diff changeset
3424 CreateZBuffer();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3425 /*if (!bUserDirect3D)
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3426 {
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3427 CreateDirectDraw();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3428 SetDirectDrawCooperationMode(hWnd, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3429 field_4004C = 1;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3430 CreateFrontBuffer();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3431 CreateClipper(hWnd);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3432 CreateBackBuffer();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3433 field_40030 = 0;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3434 field_18_locked_pitch = 0;
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3435 }
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3436 else
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3437 {*/
1631
8094f1706b1f operator new() -> malloc
Nomad
parents: 1584
diff changeset
3438 /*v3 = malloc(0x148u);
0
Ritor1
parents:
diff changeset
3439 thisa = (RenderD3D *)v3;
Ritor1
parents:
diff changeset
3440 v29 = 0;
Ritor1
parents:
diff changeset
3441 if ( v3 )
Ritor1
parents:
diff changeset
3442 v4 = RenderD3D::RenderD3D((RenderD3D *)v3);
Ritor1
parents:
diff changeset
3443 else
Ritor1
parents:
diff changeset
3444 v4 = 0;*/
Ritor1
parents:
diff changeset
3445 pRenderD3D = new RenderD3D;
Ritor1
parents:
diff changeset
3446 //v4 = pRenderD3D;
Ritor1
parents:
diff changeset
3447 //v5 = uDesiredDirect3DDevice;
Ritor1
parents:
diff changeset
3448 v29 = -1;
Ritor1
parents:
diff changeset
3449 //v6 = pRenderD3D->pAvailableDevices;
Ritor1
parents:
diff changeset
3450 if (pRenderD3D->pAvailableDevices[uDesiredDirect3DDevice].bIsDeviceCompatible &&
Ritor1
parents:
diff changeset
3451 uDesiredDirect3DDevice != 1 )
Ritor1
parents:
diff changeset
3452 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3453 v7 = pRenderD3D->CreateDevice(uDesiredDirect3DDevice, true, window);
0
Ritor1
parents:
diff changeset
3454 }
Ritor1
parents:
diff changeset
3455 else
Ritor1
parents:
diff changeset
3456 {
Ritor1
parents:
diff changeset
3457 if ( !pRenderD3D->pAvailableDevices[0].bIsDeviceCompatible )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3458 Error("There aren't any D3D devices to init.");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3459
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3460 v7 = pRenderD3D->CreateDevice(0, true, window);
0
Ritor1
parents:
diff changeset
3461 }
Ritor1
parents:
diff changeset
3462 if ( !v7 )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3463 Error("D3Drend->Init failed.");
0
Ritor1
parents:
diff changeset
3464
Ritor1
parents:
diff changeset
3465 //v8 = pRenderD3D;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3466 //pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
3467 pBackBuffer4 = pRenderD3D->pBackBuffer;
Ritor1
parents:
diff changeset
3468 pFrontBuffer4 = pRenderD3D->pFrontBuffer;
Ritor1
parents:
diff changeset
3469 pDirectDraw4 = pRenderD3D->pHost;
Ritor1
parents:
diff changeset
3470 v9 = pRenderD3D->GetDeviceCaps();
Ritor1
parents:
diff changeset
3471 if ( v9 & 1 )
Ritor1
parents:
diff changeset
3472 {
Ritor1
parents:
diff changeset
3473 if (pRenderD3D)
Ritor1
parents:
diff changeset
3474 {
Ritor1
parents:
diff changeset
3475 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3476 delete pRenderD3D;
Ritor1
parents:
diff changeset
3477 }
Ritor1
parents:
diff changeset
3478 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3479 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3480 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3481 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3482 Error("Direct3D renderer: The device failed to return capabilities.");
0
Ritor1
parents:
diff changeset
3483 }
Ritor1
parents:
diff changeset
3484 if ( v9 & 0x3E )
Ritor1
parents:
diff changeset
3485 {
Ritor1
parents:
diff changeset
3486 if (pRenderD3D)
Ritor1
parents:
diff changeset
3487 {
Ritor1
parents:
diff changeset
3488 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3489 delete pRenderD3D;
Ritor1
parents:
diff changeset
3490 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3491 //pColorKeySurface4 = 0;
0
Ritor1
parents:
diff changeset
3492 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3493 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3494 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3495 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3496 Error("Direct3D renderer: The device doesn't support the necessary alpha blending modes.");
0
Ritor1
parents:
diff changeset
3497 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3498 if (v9 & 0x80)
0
Ritor1
parents:
diff changeset
3499 {
Ritor1
parents:
diff changeset
3500 if (pRenderD3D)
Ritor1
parents:
diff changeset
3501 {
Ritor1
parents:
diff changeset
3502 pRenderD3D->Release();
Ritor1
parents:
diff changeset
3503 delete pRenderD3D;
Ritor1
parents:
diff changeset
3504 }
Ritor1
parents:
diff changeset
3505 pRenderD3D = 0;
Ritor1
parents:
diff changeset
3506 pBackBuffer4 = 0;
Ritor1
parents:
diff changeset
3507 pFrontBuffer4 = 0;
Ritor1
parents:
diff changeset
3508 pDirectDraw4 = 0;
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
3509 Error("Direct3D renderer: The device doesn't support non-square textures.");
0
Ritor1
parents:
diff changeset
3510 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3511 //LOBYTE(field_10365C) = ~(unsigned __int8)(v9 >> 6) & 1;
0
Ritor1
parents:
diff changeset
3512 bRequiredTextureStagesAvailable = CheckTextureStages();
Ritor1
parents:
diff changeset
3513 memset(&halCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3514 halCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3515 memset(&refCaps, 0, 0xFCu);
Ritor1
parents:
diff changeset
3516 //v10 = v2->pRenderD3D;
Ritor1
parents:
diff changeset
3517 refCaps.dwSize = 252;
Ritor1
parents:
diff changeset
3518 ErrD3D(pRenderD3D->pDevice->GetCaps(&halCaps, &refCaps));
Ritor1
parents:
diff changeset
3519 v12 = halCaps.dwMinTextureWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3520 if ( (unsigned int)halCaps.dwMinTextureWidth > halCaps.dwMinTextureHeight )
0
Ritor1
parents:
diff changeset
3521 v12 = halCaps.dwMinTextureHeight;
Ritor1
parents:
diff changeset
3522 uMinDeviceTextureDim = v12;
Ritor1
parents:
diff changeset
3523 v13 = halCaps.dwMaxTextureWidth;
Ritor1
parents:
diff changeset
3524 if ( (unsigned int)halCaps.dwMaxTextureWidth < halCaps.dwMaxTextureHeight )
Ritor1
parents:
diff changeset
3525 v13 = halCaps.dwMaxTextureHeight;
Ritor1
parents:
diff changeset
3526 uMaxDeviceTextureDim = v13;
Ritor1
parents:
diff changeset
3527 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, 1u));
Ritor1
parents:
diff changeset
3528 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 1u));
Ritor1
parents:
diff changeset
3529 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, 2u));
Ritor1
parents:
diff changeset
3530 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SPECULARENABLE, 0));
Ritor1
parents:
diff changeset
3531 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_COLORKEYENABLE, 0));
Ritor1
parents:
diff changeset
3532 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u));
Ritor1
parents:
diff changeset
3533 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MAGFILTER, 2u));
Ritor1
parents:
diff changeset
3534 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MINFILTER, 2u));
Ritor1
parents:
diff changeset
3535 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_MIPFILTER, 3u));
Ritor1
parents:
diff changeset
3536 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG1, 2u));
Ritor1
parents:
diff changeset
3537 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAARG2, 0));
Ritor1
parents:
diff changeset
3538 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ALPHAOP, 2u));
Ritor1
parents:
diff changeset
3539 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, 2u));
Ritor1
parents:
diff changeset
3540 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLORARG2, 0));
Ritor1
parents:
diff changeset
3541 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_COLOROP, 4u));
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3542 //}
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3543
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3544 ddpfPrimarySuface.dwSize = 32;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3545 GetTargetPixelFormat(&ddpfPrimarySuface);
0
Ritor1
parents:
diff changeset
3546 ParseTargetPixelFormat();
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3547
0
Ritor1
parents:
diff changeset
3548 if ( !pRenderD3D )
Ritor1
parents:
diff changeset
3549 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3550 __debugbreak();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3551 //pBeforePresentFunction = 0;//nullsub_1;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3552 //goto LABEL_47;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3553 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3554 /*v14 = IsColorKeySupported(pDirectDraw4);
0
Ritor1
parents:
diff changeset
3555 v15 = uAcquiredDirect3DDevice == 1;
Ritor1
parents:
diff changeset
3556 bColorKeySupported = v14;
Ritor1
parents:
diff changeset
3557 if ( !v15 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3558 bColorKeySupported = 0;*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3559 //if ( bColorKeySupported )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3560 if (false)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3561 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3562 /*memset(&ddsd2, 0, 0x7Cu);
0
Ritor1
parents:
diff changeset
3563 ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue = uTargetGMask | uTargetBMask;
Ritor1
parents:
diff changeset
3564 ddsd2.ddckCKSrcBlt.dwColorSpaceHighValue = ddsd2.ddckCKSrcBlt.dwColorSpaceLowValue;
Ritor1
parents:
diff changeset
3565 v16 = pDirectDraw4;
Ritor1
parents:
diff changeset
3566 ddsd2.dwSize = 124;
Ritor1
parents:
diff changeset
3567 ddsd2.dwFlags = 65543;
Ritor1
parents:
diff changeset
3568 ddsd2.ddsCaps.dwCaps = 2112;
Ritor1
parents:
diff changeset
3569 ddsd2.dwWidth = 640;
Ritor1
parents:
diff changeset
3570 ddsd2.dwHeight = 480;
Ritor1
parents:
diff changeset
3571 ErrD3D(v16->CreateSurface(&ddsd2, &pColorKeySurface4, 0));
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3572 pBeforePresentFunction = Present_ColorKey;*/
0
Ritor1
parents:
diff changeset
3573 LABEL_45:
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3574 using_software_screen_buffer = 1;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3575 //LABEL_47:
0
Ritor1
parents:
diff changeset
3576 bWindowMode = 1;
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
3577 //hWnd = hWnd;
0
Ritor1
parents:
diff changeset
3578 return 0;
Ritor1
parents:
diff changeset
3579 }
Ritor1
parents:
diff changeset
3580 pTargetSurface = 0;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3581 pTargetSurface_unaligned = 0;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3582
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3583 uint num_pixels = window->GetWidth() * window->GetHeight();
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3584 pTargetSurface_unaligned = new unsigned int[num_pixels];
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3585
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3586 if (!pTargetSurface_unaligned)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3587 return false;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3588
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3589 memset(&pDesc, 0, 0x7Cu);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3590 pDesc.dwSize = 124;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3591 if (!pRenderer->LockSurface_DDraw4(pRenderer->pBackBuffer4, &pDesc, DDLOCK_WAIT))
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3592 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3593 delete [] pTargetSurface_unaligned;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3594 return false;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3595 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3596
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3597 memset32(pTargetSurface_unaligned, -1, num_pixels);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3598
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3599
0
Ritor1
parents:
diff changeset
3600 pRenderer->pBackBuffer4->Unlock(0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3601 /*v19 = pTargetSurface_unaligned;
0
Ritor1
parents:
diff changeset
3602 v20 = (unsigned int)pDesc.lpSurface & 7;
Ritor1
parents:
diff changeset
3603 v21 = (unsigned int)ptr_400E8 & 7;
Ritor1
parents:
diff changeset
3604 if ( v21 == v20 )
Ritor1
parents:
diff changeset
3605 {
Ritor1
parents:
diff changeset
3606 pTargetSurface = (unsigned __int16 *)v19;
Ritor1
parents:
diff changeset
3607 }
Ritor1
parents:
diff changeset
3608 else
Ritor1
parents:
diff changeset
3609 {
Ritor1
parents:
diff changeset
3610 if ( (signed int)v21 >= v20 )
Ritor1
parents:
diff changeset
3611 v22 = (int)((char *)v19 + 2 * (v21 - v20) + 16);
Ritor1
parents:
diff changeset
3612 else
Ritor1
parents:
diff changeset
3613 v22 = (int)((char *)v19 + 2 * (v20 - v21) + 16);
Ritor1
parents:
diff changeset
3614 pTargetSurface = (unsigned __int16 *)v22;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3615 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3616 pTargetSurface = pTargetSurface_unaligned;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3617 uTargetSurfacePitch = window->GetWidth();
0
Ritor1
parents:
diff changeset
3618 pBeforePresentFunction = Present_NoColorKey;
Ritor1
parents:
diff changeset
3619 goto LABEL_45;
Ritor1
parents:
diff changeset
3620 }
Ritor1
parents:
diff changeset
3621
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3622
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3623 //----- (0044F2B2) --------------------------------------------------------
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3624 bool Render::IsGammaSupported()
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3625 {
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3626 // bool result; // eax@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3627 // HRESULT v1; // eax@4
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3628
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3629 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3630 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3631 DDCAPS halCaps; // [sp+0h] [bp-180h]@4
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3632 memset(&halCaps, 0, sizeof(DDCAPS));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3633 halCaps.dwSize = sizeof(DDCAPS);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3634
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3635 ErrD3D(pDirectDraw4->GetCaps(&halCaps, 0));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3636 return (halCaps.dwCaps2 >> 17) & 1;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3637 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3638 /*else
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3639 return false;*/
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3640 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
3641
0
Ritor1
parents:
diff changeset
3642 //----- (004A0BEE) --------------------------------------------------------
2102
0db53678ff48 RasterLine2D, DIALOGUE_EVT_A etc.
Ritor1
parents: 2101
diff changeset
3643 void Render::RasterLine2D(signed int uX, signed int uY, signed int uZ, signed int uW, unsigned __int16 uColor)
0db53678ff48 RasterLine2D, DIALOGUE_EVT_A etc.
Ritor1
parents: 2101
diff changeset
3644 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
3645 signed int lower_bound; // eax@17
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3646 // signed int left_bound;
0
Ritor1
parents:
diff changeset
3647 unsigned int v21; // edi@46
Ritor1
parents:
diff changeset
3648 int v22; // esi@47
Ritor1
parents:
diff changeset
3649 int v23; // ebx@47
Ritor1
parents:
diff changeset
3650 signed int v24; // edx@50
Ritor1
parents:
diff changeset
3651 signed int v25; // esi@52
Ritor1
parents:
diff changeset
3652 unsigned __int16 *v26; // ecx@52
Ritor1
parents:
diff changeset
3653 int v27; // ebx@54
Ritor1
parents:
diff changeset
3654 int v28; // edi@55
Ritor1
parents:
diff changeset
3655 int v29; // edx@55
Ritor1
parents:
diff changeset
3656 int v30; // ebx@60
Ritor1
parents:
diff changeset
3657 int v31; // edx@61
Ritor1
parents:
diff changeset
3658 int v32; // edi@61
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
3659 signed int upper_bound; // [sp+18h] [bp-4h]@28
0
Ritor1
parents:
diff changeset
3660 unsigned int uXa; // [sp+24h] [bp+8h]@49
Ritor1
parents:
diff changeset
3661 int uYb; // [sp+28h] [bp+Ch]@47
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3662 bool left_border_x = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3663 bool right_border_x = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3664 bool left_border_z = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3665 bool right_border_z = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3666 bool upper_border_y = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3667 bool bottom_border_y = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3668 bool upper_border_w = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3669 bool bottom_border_w = false;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3670
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3671 if ( uX < this->raster_clip_x )// x âûõîäèò çà ðàìêè ëåâîé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3672 left_border_x = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3673 if ( uX > this->raster_clip_z )// x âûõîäèò çà ðàìêè ïðàâîé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3674 right_border_x = true;
2097
2b39f6b451f9 Minimap fix
Ritor1
parents: 2096
diff changeset
3675
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3676 if ( uZ < this->raster_clip_x )// z âûõîäèò çà ðàìêè ëåâîé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3677 left_border_z = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3678 if ( uZ > this->raster_clip_z )// z âûõîäèò çà ðàìêè ïðàâîé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3679 right_border_z = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3680
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3681 if ( uY < this->raster_clip_y )// y âûõîäèò çà ðàìêè âåðõíåé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3682 upper_border_y = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3683 if ( uY > this->raster_clip_w )// y âûõîäèò çà ðàìêè íèæíåé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3684 bottom_border_y = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3685
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3686 if ( uW < this->raster_clip_y )// w âûõîäèò çà ðàìêè âåðõíåé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3687 upper_border_w = true;
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
3688 if ( uW > this->raster_clip_w )// w âûõîäèò çà ðàìêè íèæíåé ãðàíèöû
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3689 bottom_border_w = true;
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3690
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3691 if ( (left_border_x && left_border_z) || (right_border_x && right_border_z )
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3692 || (upper_border_y && upper_border_w) || (bottom_border_y && bottom_border_w))
2102
0db53678ff48 RasterLine2D, DIALOGUE_EVT_A etc.
Ritor1
parents: 2101
diff changeset
3693 return;
0db53678ff48 RasterLine2D, DIALOGUE_EVT_A etc.
Ritor1
parents: 2101
diff changeset
3694
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3695 if ( left_border_x || left_border_z || right_border_x || right_border_z
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3696 || upper_border_y || upper_border_w || bottom_border_y || bottom_border_w)
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3697 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3698 if ( left_border_x || left_border_z )//if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 8 )//for left (ëåâàÿ ãðàíèöà)
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3699 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3700 if ( left_border_x )//left_border = true; õ ìåíüøå ëåâîé ãðàíèöû
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3701 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3702 uY += (uW - uY) * ((this->raster_clip_x - uX) / (uZ - uX));//t = near_clip - v0.x / v1.x - v0.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ)
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3703 uX = this->raster_clip_x;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3704 }
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3705 else if ( left_border_z )//z ìåíüøå ëåâîé ãðàíèöû
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3706 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3707 uZ = this->raster_clip_x;
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3708 uW += (uY - uW) * ((this->raster_clip_x - uZ) / (uX - uZ));
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3709 }
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3710 }
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3711
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3712 if ( right_border_x || right_border_z )//if ( (BYTE4(v36) ^ (unsigned __int8)v36) & 4 )//for right (ïðàâàÿ ãðàíèöà)
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3713 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3714 if ( right_border_x ) //right_border = true; õ áîëüøå ïðàâîé ãðàíèöû
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3715 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3716 uY += (uY - uW) * ((this->raster_clip_z - uX) / (uZ - uX));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3717 uX = this->raster_clip_z;
0
Ritor1
parents:
diff changeset
3718 }
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3719 else if ( right_border_z )//z áîëüøå ïðàâîé ãðàíèöû
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3720 {
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3721 uW += (uW - uY) * ((this->raster_clip_z - uZ) / (uX - uZ));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3722 uZ = this->raster_clip_z;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3723 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3724 }
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3725
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3726 upper_bound = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3727 if ( uY < this->raster_clip_y )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3728 upper_bound = 2;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3729 if ( uY > this->raster_clip_w )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3730 upper_bound |= 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3731
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3732 lower_bound = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3733 if ( uW < this->raster_clip_y )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3734 lower_bound = 2;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3735 if ( uW > this->raster_clip_w )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3736 lower_bound |= 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3737
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3738 if ( !(lower_bound & upper_bound) )//for up and down(äëÿ âåðõà è íèçà)
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3739 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3740 lower_bound ^= upper_bound;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3741 if ( lower_bound & 2 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3742 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3743 if ( upper_bound & 2 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3744 {
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3745 uX += (uZ - uX) * ((this->raster_clip_y - uY) / (uW - uY));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3746 uY = this->raster_clip_y;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3747 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3748 else
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3749 {
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3750 uZ += (uX - uZ) * ((this->raster_clip_y - uW) / (uY - uW));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3751 uW = this->raster_clip_y;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3752 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3753 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3754 if ( lower_bound & 1 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3755 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3756 if ( upper_bound & 1 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3757 {
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3758 uX += (uZ - uX) * ((this->raster_clip_w - uY) / (uW - uY));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3759 uY = this->raster_clip_w;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3760 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3761 else
0
Ritor1
parents:
diff changeset
3762 {
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3763 uZ += (uX - uZ) * ((this->raster_clip_w - uW) / (uY - uW));
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3764 uW = this->raster_clip_w;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3765 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3766 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3767 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3768 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3769 v21 = pRenderer->uTargetSurfacePitch;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3770 if ( pRenderer->uTargetSurfacePitch )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3771 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3772 //v12 = uX + uY * pRenderer->uTargetSurfacePitch;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3773 v22 = uW - uY;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3774 v23 = v22;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3775 uYb = v22;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3776 if ( v22 < 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3777 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3778 v23 = -v22;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3779 uYb = -v22;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3780 v21 = -pRenderer->uTargetSurfacePitch;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3781 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3782 uXa = uZ - uX;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3783 if ((signed)(uZ - uX) >= 0)
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3784 v24 = 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3785 else
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3786 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3787 uXa = -uXa;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3788 v24 = -1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3789 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3790 v25 = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3791
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3792 v26 = (unsigned __int16 *)this->pTargetSurface;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3793 if ( v26 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3794 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3795 if ( (signed int)uXa <= v23 )//ðèñóåì âåðòèêàëüíóþ ëèíèþ
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3796 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3797 v30 = v23 + 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3798 if ( v30 > 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3799 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3800 v31 = 2 * v24;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3801 v32 = 2 * v21;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3802 //v12 = (int)&v26[v12];
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3803 int y = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3804 int x = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3805 for ( v30; v30; --v30 )
0
Ritor1
parents:
diff changeset
3806 {
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3807 v25 += uXa;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3808 //*(short *)v12 = uColor;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3809 //v12 += v32;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3810 WritePixel16(uX + x, uY + y, uColor);
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3811 if ( v32 >= 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3812 y += 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3813 else
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3814 y -= 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3815 if ( v25 > 0 )
0
Ritor1
parents:
diff changeset
3816 {
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3817 v25 -= uYb;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3818 //v12 += v31;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3819 if ( v31 >= 0 )
2096
115373c2d1cd RasterLine2D fix
Ritor1
parents: 2093
diff changeset
3820 x += 1;
115373c2d1cd RasterLine2D fix
Ritor1
parents: 2093
diff changeset
3821 else
115373c2d1cd RasterLine2D fix
Ritor1
parents: 2093
diff changeset
3822 x -= 1;
0
Ritor1
parents:
diff changeset
3823 }
Ritor1
parents:
diff changeset
3824 }
Ritor1
parents:
diff changeset
3825 }
Ritor1
parents:
diff changeset
3826 }
2199
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3827 else//ðèñóåì ãîðèçîíòàëüíóþ ëèíèþ
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3828 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3829 v27 = uXa + 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3830 if ( (signed int)(uXa + 1) > 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3831 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3832 v28 = 2 * v21;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3833 v29 = 2 * v24;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3834 int y = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3835 int x = 0;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3836 //v12 = (int)&v26[v12];
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3837 for ( v27; v27; --v27 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3838 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3839 v25 += uYb;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3840 //*(short *)v12 = uColor;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3841 //v12 += v29;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3842 WritePixel16(uX + x, uY + y, uColor);
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3843 if ( v29 >= 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3844 x += 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3845 else
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3846 x -= 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3847 if ( v25 > (signed int)uXa )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3848 {
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3849 v25 -= uXa;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3850 //v12 += v28;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3851 if ( v28 >= 0 )
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3852 y += 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3853 else
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3854 y -= 1;
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3855 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3856 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3857 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3858 }
3445abad44c5 RasterLine2D()
Ritor1
parents: 2198
diff changeset
3859 }
0
Ritor1
parents:
diff changeset
3860 }
2102
0db53678ff48 RasterLine2D, DIALOGUE_EVT_A etc.
Ritor1
parents: 2101
diff changeset
3861 return;
0
Ritor1
parents:
diff changeset
3862 }
Ritor1
parents:
diff changeset
3863
Ritor1
parents:
diff changeset
3864 //----- (004A0E80) --------------------------------------------------------
Ritor1
parents:
diff changeset
3865 void Render::ClearZBuffer(int a2, int a3)
Ritor1
parents:
diff changeset
3866 {
2245
8817c398b792 for RasterLine2D
Ritor1
parents: 2226
diff changeset
3867 memset32(this->pActiveZBuffer, -65536, 0x4B000);
0
Ritor1
parents:
diff changeset
3868 }
Ritor1
parents:
diff changeset
3869
Ritor1
parents:
diff changeset
3870 //----- (004A0E97) --------------------------------------------------------
709
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3871 void Render::SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW)
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3872 {
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3873 this->raster_clip_x = uX;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3874 this->raster_clip_y = uY;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3875 this->raster_clip_z = uZ;
af08fc9e29c8 Items (blue dots) on minimap fixed
Nomad
parents: 693
diff changeset
3876 this->raster_clip_w = uW;
0
Ritor1
parents:
diff changeset
3877 }
Ritor1
parents:
diff changeset
3878
Ritor1
parents:
diff changeset
3879 //----- (004A0EB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
3880 void Render::ParseTargetPixelFormat()
Ritor1
parents:
diff changeset
3881 {
Ritor1
parents:
diff changeset
3882 signed int v2; // ecx@1
Ritor1
parents:
diff changeset
3883 DWORD uRedMask; // edx@1
Ritor1
parents:
diff changeset
3884 unsigned int uGreenMask; // esi@5
Ritor1
parents:
diff changeset
3885 signed int v5; // ecx@5
Ritor1
parents:
diff changeset
3886 unsigned int uBlueMask; // edx@9
Ritor1
parents:
diff changeset
3887 signed int v7; // ecx@9
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3888 //unsigned int v8; // ecx@13
0
Ritor1
parents:
diff changeset
3889
Ritor1
parents:
diff changeset
3890 v2 = 0;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3891 uRedMask = this->ddpfPrimarySuface.dwRBitMask;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3892 this->uTargetBBits = 0;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3893 this->uTargetGBits = 0;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3894 this->uTargetRBits = 0;
0
Ritor1
parents:
diff changeset
3895 do
Ritor1
parents:
diff changeset
3896 {
Ritor1
parents:
diff changeset
3897 if ( (1 << v2) & uRedMask )
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3898 ++this->uTargetRBits;
0
Ritor1
parents:
diff changeset
3899 ++v2;
Ritor1
parents:
diff changeset
3900 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3901 while ( v2 < 32 );
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3902 uGreenMask = this->ddpfPrimarySuface.dwGBitMask;
0
Ritor1
parents:
diff changeset
3903 v5 = 0;
Ritor1
parents:
diff changeset
3904 do
Ritor1
parents:
diff changeset
3905 {
Ritor1
parents:
diff changeset
3906 if ( (1 << v5) & uGreenMask )
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3907 ++this->uTargetGBits;
0
Ritor1
parents:
diff changeset
3908 ++v5;
Ritor1
parents:
diff changeset
3909 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3910 while ( v5 < 32 );
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3911 uBlueMask = this->ddpfPrimarySuface.dwBBitMask;
0
Ritor1
parents:
diff changeset
3912 v7 = 0;
Ritor1
parents:
diff changeset
3913 do
Ritor1
parents:
diff changeset
3914 {
Ritor1
parents:
diff changeset
3915 if ( (1 << v7) & uBlueMask )
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3916 ++this->uTargetBBits;
0
Ritor1
parents:
diff changeset
3917 ++v7;
Ritor1
parents:
diff changeset
3918 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
3919 while ( v7 < 32 );
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3920 this->uTargetGMask = uGreenMask;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3921 this->uTargetRMask = this->ddpfPrimarySuface.dwRBitMask;
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3922 this->uTargetBMask = uBlueMask;
0
Ritor1
parents:
diff changeset
3923 }
Ritor1
parents:
diff changeset
3924
Ritor1
parents:
diff changeset
3925 //----- (004A0F40) --------------------------------------------------------
Ritor1
parents:
diff changeset
3926 bool Render::LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags)
Ritor1
parents:
diff changeset
3927 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3928 //IDirectDrawSurface4 *v4; // esi@1
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
3929 HRESULT result; // eax@1
0
Ritor1
parents:
diff changeset
3930 HRESULT v6; // eax@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3931 // int v7; // [sp-8h] [bp-14h]@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3932 // unsigned int v8; // [sp-4h] [bp-10h]@10
0
Ritor1
parents:
diff changeset
3933 char v9; // [sp+Bh] [bp-1h]@1
Ritor1
parents:
diff changeset
3934
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3935 //v4 = pSurface;
0
Ritor1
parents:
diff changeset
3936 v9 = 1;
Ritor1
parents:
diff changeset
3937 result = pSurface->Lock(0, pDesc, uLockFlags, 0);
Ritor1
parents:
diff changeset
3938 if ( result == DDERR_SURFACELOST )
Ritor1
parents:
diff changeset
3939 {
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3940 v6 = pSurface->Restore();
0
Ritor1
parents:
diff changeset
3941 if ( v6 )
Ritor1
parents:
diff changeset
3942 {
Ritor1
parents:
diff changeset
3943 if ( v6 != DDERR_IMPLICITLYCREATED )
Ritor1
parents:
diff changeset
3944 {
Ritor1
parents:
diff changeset
3945 LABEL_20:
Ritor1
parents:
diff changeset
3946 v9 = 0;
Ritor1
parents:
diff changeset
3947 result = (bool)memset(pDesc, 0, 4u);
Ritor1
parents:
diff changeset
3948 goto LABEL_21;
Ritor1
parents:
diff changeset
3949 }
Ritor1
parents:
diff changeset
3950 pRenderer->pFrontBuffer4->Restore();
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3951 pSurface->Restore();
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3952 }
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
3953 result = pSurface->Lock(0, pDesc, DDLOCK_WAIT, 0);
0
Ritor1
parents:
diff changeset
3954 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3955 goto LABEL_20;
Ritor1
parents:
diff changeset
3956 ErrD3D(result);
Ritor1
parents:
diff changeset
3957 if ( result )
Ritor1
parents:
diff changeset
3958 {
Ritor1
parents:
diff changeset
3959 //v8 = 0;
Ritor1
parents:
diff changeset
3960 //v7 = 2161;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3961 //LABEL_19:
0
Ritor1
parents:
diff changeset
3962 //CheckHRESULT((CheckHRESULT_stru0 *)&pSurface, result, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Screen16.cpp", v7, v8);
Ritor1
parents:
diff changeset
3963 goto LABEL_20;
Ritor1
parents:
diff changeset
3964 }
Ritor1
parents:
diff changeset
3965 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
3966 pRenderD3D->HandleLostResources();
Ritor1
parents:
diff changeset
3967 result = pRenderer->pDirectDraw4->RestoreAllSurfaces();
Ritor1
parents:
diff changeset
3968 }
Ritor1
parents:
diff changeset
3969 else
Ritor1
parents:
diff changeset
3970 {
Ritor1
parents:
diff changeset
3971 if ( result )
Ritor1
parents:
diff changeset
3972 {
Ritor1
parents:
diff changeset
3973 if ( result == DDERR_INVALIDRECT || result == DDERR_SURFACEBUSY )
Ritor1
parents:
diff changeset
3974 goto LABEL_20;
Ritor1
parents:
diff changeset
3975 ErrD3D(result);
Ritor1
parents:
diff changeset
3976 //v8 = 0;
Ritor1
parents:
diff changeset
3977 //v7 = 2199;
Ritor1
parents:
diff changeset
3978 //goto LABEL_19;
Ritor1
parents:
diff changeset
3979 }
Ritor1
parents:
diff changeset
3980 }
Ritor1
parents:
diff changeset
3981 LABEL_21:
Ritor1
parents:
diff changeset
3982 LOBYTE(result) = v9;
Ritor1
parents:
diff changeset
3983 return result;
Ritor1
parents:
diff changeset
3984 }
Ritor1
parents:
diff changeset
3985
Ritor1
parents:
diff changeset
3986
Ritor1
parents:
diff changeset
3987 //----- (004A10E4) --------------------------------------------------------
Ritor1
parents:
diff changeset
3988 void Render::CreateDirectDraw()
Ritor1
parents:
diff changeset
3989 {
Ritor1
parents:
diff changeset
3990 Render *v1; // edi@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3991 // HRESULT v2; // eax@1
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3992 // HRESULT v3; // eax@5
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3993 // int v6; // [sp-Ch] [bp-20h]@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
3994 // unsigned int v9; // [sp+0h] [bp-14h]@0
0
Ritor1
parents:
diff changeset
3995 IDirectDraw *lpDD; // [sp+10h] [bp-4h]@1
Ritor1
parents:
diff changeset
3996
Ritor1
parents:
diff changeset
3997 v1 = this;
Ritor1
parents:
diff changeset
3998 ErrD3D(DirectDrawCreate(0, &lpDD, 0));
Ritor1
parents:
diff changeset
3999
Ritor1
parents:
diff changeset
4000 pDirectDraw4 = nullptr;
Ritor1
parents:
diff changeset
4001
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4002 ErrD3D(lpDD->QueryInterface(IID_IDirectDraw4, (void **)&pDirectDraw4));
0
Ritor1
parents:
diff changeset
4003
Ritor1
parents:
diff changeset
4004 lpDD->Release();
Ritor1
parents:
diff changeset
4005 lpDD = nullptr;
Ritor1
parents:
diff changeset
4006 }
Ritor1
parents:
diff changeset
4007
Ritor1
parents:
diff changeset
4008 //----- (004A1169) --------------------------------------------------------
Ritor1
parents:
diff changeset
4009 void Render::SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen)
Ritor1
parents:
diff changeset
4010 {
Ritor1
parents:
diff changeset
4011 DWORD flags; // eax@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4012 // IDirectDraw *v4; // ecx@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4013 //// HRESULT v5; // eax@5
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4014 // int v6; // [sp-8h] [bp-8h]@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4015 // unsigned int v7; // [sp-4h] [bp-4h]@3
0
Ritor1
parents:
diff changeset
4016
Ritor1
parents:
diff changeset
4017 flags = bFullscreen ? DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN :
Ritor1
parents:
diff changeset
4018 DDSCL_NORMAL;
Ritor1
parents:
diff changeset
4019
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4020 ErrD3D(pDirectDraw4->SetCooperativeLevel(hWnd, flags | DDSCL_MULTITHREADED));
0
Ritor1
parents:
diff changeset
4021 }
Ritor1
parents:
diff changeset
4022
Ritor1
parents:
diff changeset
4023 //----- (004A11C6) --------------------------------------------------------
Ritor1
parents:
diff changeset
4024 void Render::SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP)
Ritor1
parents:
diff changeset
4025 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4026 ErrD3D(pDirectDraw4->SetDisplayMode(uWidth, uHeight, uBPP, 0, 0));
0
Ritor1
parents:
diff changeset
4027 }
Ritor1
parents:
diff changeset
4028
Ritor1
parents:
diff changeset
4029 //----- (004A121C) --------------------------------------------------------
Ritor1
parents:
diff changeset
4030 void Render::CreateFrontBuffer()
Ritor1
parents:
diff changeset
4031 {
Ritor1
parents:
diff changeset
4032 Render *v1; // esi@1
Ritor1
parents:
diff changeset
4033 IDirectDraw *pDD; // eax@3
Ritor1
parents:
diff changeset
4034 IDirectDrawSurface **pOutSurf; // esi@3
Ritor1
parents:
diff changeset
4035 struct _DDSURFACEDESC *v4; // edx@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4036 //// HRESULT v5; // eax@5
0
Ritor1
parents:
diff changeset
4037 int v6; // [sp-8h] [bp-8Ch]@3
Ritor1
parents:
diff changeset
4038 unsigned int v7; // [sp-4h] [bp-88h]@3
Ritor1
parents:
diff changeset
4039 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3
Ritor1
parents:
diff changeset
4040
Ritor1
parents:
diff changeset
4041 v1 = this;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4042 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4043 //pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4044 {
Ritor1
parents:
diff changeset
4045 memset(&a2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4046 pDD = (IDirectDraw *)v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4047 a2.dwSize = 124;
Ritor1
parents:
diff changeset
4048 a2.dwFlags = 1;
Ritor1
parents:
diff changeset
4049 v7 = 0;
Ritor1
parents:
diff changeset
4050 a2.ddsCaps.dwCaps = 512;
Ritor1
parents:
diff changeset
4051 v6 = 2357;
Ritor1
parents:
diff changeset
4052 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
4053 v4 = (struct _DDSURFACEDESC *)&a2;
Ritor1
parents:
diff changeset
4054 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4055 /*else
0
Ritor1
parents:
diff changeset
4056 {
Ritor1
parents:
diff changeset
4057 memset(&a2.lPitch, 0, 0x6Cu); // DDSURFACEDESC here
Ritor1
parents:
diff changeset
4058 pDD = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
4059 a2.lPitch = 108;
Ritor1
parents:
diff changeset
4060 a2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
4061 v7 = 0;
Ritor1
parents:
diff changeset
4062 a2.dwTextureStage = 512;
Ritor1
parents:
diff changeset
4063 v6 = 2346;
Ritor1
parents:
diff changeset
4064 pOutSurf = (IDirectDrawSurface **)&v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
4065 v4 = (struct _DDSURFACEDESC *)&a2.lPitch;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4066 }*/
0
Ritor1
parents:
diff changeset
4067 ErrD3D(pDD->CreateSurface(v4, pOutSurf, 0));
Ritor1
parents:
diff changeset
4068 }
Ritor1
parents:
diff changeset
4069
Ritor1
parents:
diff changeset
4070 //----- (004A12CD) --------------------------------------------------------
Ritor1
parents:
diff changeset
4071 void Render::CreateBackBuffer()
Ritor1
parents:
diff changeset
4072 {
Ritor1
parents:
diff changeset
4073 Render *v1; // esi@1
Ritor1
parents:
diff changeset
4074 IDirectDraw *v2; // eax@3
Ritor1
parents:
diff changeset
4075 IDirectDrawSurface **ppBackBuffer; // esi@3
Ritor1
parents:
diff changeset
4076 struct _DDSURFACEDESC *v4; // edx@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4077 // HRESULT v5; // eax@5
0
Ritor1
parents:
diff changeset
4078 int v6; // [sp-8h] [bp-8Ch]@3
Ritor1
parents:
diff changeset
4079 unsigned int v7; // [sp-4h] [bp-88h]@3
Ritor1
parents:
diff changeset
4080 DDSURFACEDESC2 a2; // [sp+4h] [bp-80h]@3
Ritor1
parents:
diff changeset
4081
Ritor1
parents:
diff changeset
4082 v1 = this;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4083 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4084 // pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4085 {
Ritor1
parents:
diff changeset
4086 memset(&a2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4087 v2 = (IDirectDraw *)v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4088 a2.dwSize = 124;
Ritor1
parents:
diff changeset
4089 a2.dwFlags = 7;
Ritor1
parents:
diff changeset
4090 v7 = 0;
Ritor1
parents:
diff changeset
4091 a2.ddsCaps.dwCaps = 2112;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
4092 a2.dwWidth = window->GetWidth();
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
4093 a2.dwHeight = window->GetHeight();
0
Ritor1
parents:
diff changeset
4094 v6 = 2387;
Ritor1
parents:
diff changeset
4095 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4;
Ritor1
parents:
diff changeset
4096 v4 = (struct _DDSURFACEDESC *)&a2;
Ritor1
parents:
diff changeset
4097 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4098 /*else
0
Ritor1
parents:
diff changeset
4099 {
Ritor1
parents:
diff changeset
4100 memset(&a2.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4101 v2 = (IDirectDraw *)v1->pDirectDraw2;
Ritor1
parents:
diff changeset
4102 a2.lPitch = 108;
Ritor1
parents:
diff changeset
4103 a2.dwBackBufferCount = 7;
Ritor1
parents:
diff changeset
4104 v7 = 0;
Ritor1
parents:
diff changeset
4105 a2.dwTextureStage = 2112;
Ritor1
parents:
diff changeset
4106 a2.dwAlphaBitDepth = 640;
Ritor1
parents:
diff changeset
4107 a2.dwMipMapCount = 480;
Ritor1
parents:
diff changeset
4108 v6 = 2374;
Ritor1
parents:
diff changeset
4109 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2;
Ritor1
parents:
diff changeset
4110 v4 = (struct _DDSURFACEDESC *)&a2.lPitch; // //DDSURFACEDESC here fo ddraw2
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4111 }*/
0
Ritor1
parents:
diff changeset
4112 ErrD3D(v2->CreateSurface(v4, ppBackBuffer, 0));
Ritor1
parents:
diff changeset
4113 }
Ritor1
parents:
diff changeset
4114
Ritor1
parents:
diff changeset
4115 //----- (004A139A) --------------------------------------------------------
Ritor1
parents:
diff changeset
4116 void Render::CreateDirectDrawPrimarySurface()
Ritor1
parents:
diff changeset
4117 {
Ritor1
parents:
diff changeset
4118 Render *v1; // esi@1
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4119 //int v2; // ebx@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4120 // IDirectDraw2 *v3; // eax@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4121 // HRESULT v4; // eax@3
0
Ritor1
parents:
diff changeset
4122 IDirectDrawSurface *pFrontBuffer; // eax@3
Ritor1
parents:
diff changeset
4123 DDSCAPS2 *v6; // edx@3
Ritor1
parents:
diff changeset
4124 IDirectDraw4 *v7; // eax@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4125 // HRESULT v8; // eax@4
0
Ritor1
parents:
diff changeset
4126 int v9; // ST14_4@5
Ritor1
parents:
diff changeset
4127 IDirectDrawSurface *v10; // ST10_4@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4128 // HRESULT v11; // eax@5
0
Ritor1
parents:
diff changeset
4129 IDirectDrawSurface **ppBackBuffer; // [sp-4h] [bp-A4h]@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4130 // const char *v13; // [sp+0h] [bp-A0h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4131 // int v14; // [sp+4h] [bp-9Ch]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4132 // unsigned int v15; // [sp+8h] [bp-98h]@0
0
Ritor1
parents:
diff changeset
4133 DDSURFACEDESC2 ddsd2; // [sp+Ch] [bp-94h]@3
Ritor1
parents:
diff changeset
4134 DDSCAPS2 v17; // [sp+88h] [bp-18h]@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4135 // int a4; // [sp+98h] [bp-8h]@3
0
Ritor1
parents:
diff changeset
4136
Ritor1
parents:
diff changeset
4137 v1 = this;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4138 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4139 //pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4140 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4141 //v2 = 0;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4142 //this->field_4004C = 1;
0
Ritor1
parents:
diff changeset
4143 memset(&ddsd2, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4144 v7 = v1->pDirectDraw4;
Ritor1
parents:
diff changeset
4145 ddsd2.dwBackBufferCount = 1;
Ritor1
parents:
diff changeset
4146 ddsd2.dwSize = 0x7Cu;
Ritor1
parents:
diff changeset
4147 ddsd2.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
Ritor1
parents:
diff changeset
4148 ddsd2.ddsCaps.dwCaps = DDSCAPS_COMPLEX | DDSCAPS_FLIP | DDSCAPS_3DDEVICE | DDSCAPS_PRIMARYSURFACE;
Ritor1
parents:
diff changeset
4149 ErrD3D(v7->CreateSurface(
Ritor1
parents:
diff changeset
4150 &ddsd2,
Ritor1
parents:
diff changeset
4151 &pFrontBuffer4,
Ritor1
parents:
diff changeset
4152 0));
Ritor1
parents:
diff changeset
4153 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer4;
Ritor1
parents:
diff changeset
4154 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer4;
Ritor1
parents:
diff changeset
4155 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4156 /*else
0
Ritor1
parents:
diff changeset
4157 {
Ritor1
parents:
diff changeset
4158 v2 = 0;
Ritor1
parents:
diff changeset
4159 this->field_4004C = 1;
Ritor1
parents:
diff changeset
4160
Ritor1
parents:
diff changeset
4161 DDSURFACEDESC ddsd;
Ritor1
parents:
diff changeset
4162 memset(&ddsd, 0, sizeof(DDSURFACEDESC));
Ritor1
parents:
diff changeset
4163
Ritor1
parents:
diff changeset
4164 ddsd.lpSurface = (LPVOID)1;
Ritor1
parents:
diff changeset
4165 ddsd.lPitch = 108;
Ritor1
parents:
diff changeset
4166 ddsd.dwBackBufferCount = 33;
Ritor1
parents:
diff changeset
4167 ddsd.ddsCaps.dwCaps = 8728;
Ritor1
parents:
diff changeset
4168 ErrD3D(pDirectDraw2->CreateSurface(
Ritor1
parents:
diff changeset
4169 &ddsd,
Ritor1
parents:
diff changeset
4170 (IDirectDrawSurface **)&pFrontBuffer2,
Ritor1
parents:
diff changeset
4171 0));
Ritor1
parents:
diff changeset
4172
Ritor1
parents:
diff changeset
4173 pFrontBuffer = (IDirectDrawSurface *)v1->pFrontBuffer2;
Ritor1
parents:
diff changeset
4174 ppBackBuffer = (IDirectDrawSurface **)&v1->pBackBuffer2;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4175 }*/
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
4176 __debugbreak(); // warning C4700: uninitialized local variable 'v6' used
0
Ritor1
parents:
diff changeset
4177 v9 = (int)v6;
Ritor1
parents:
diff changeset
4178 v10 = pFrontBuffer; // BUG
Ritor1
parents:
diff changeset
4179
Ritor1
parents:
diff changeset
4180 v17.dwCaps = 4;
Ritor1
parents:
diff changeset
4181 ErrD3D(pFrontBuffer->GetAttachedSurface((DDSCAPS *)&v17, ppBackBuffer));// hr = this->pFrontBuffer->GetAttachedSurface(&ddsCaps2, ppBackBuffer);
Ritor1
parents:
diff changeset
4182 //CheckHRESULT(&thisa, v11, (const char *)v10, v9, (unsigned int)ppBackBuffer);
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4183 //v1->field_40030 = v2;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4184 //v1->field_18_locked_pitch = v2;
0
Ritor1
parents:
diff changeset
4185 }
Ritor1
parents:
diff changeset
4186
Ritor1
parents:
diff changeset
4187 //----- (004A14F4) --------------------------------------------------------
Ritor1
parents:
diff changeset
4188 void Render::CreateClipper(HWND a2)
Ritor1
parents:
diff changeset
4189 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4190 ErrD3D(pDirectDraw4->CreateClipper(0, &pDDrawClipper, 0));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4191 ErrD3D(pDDrawClipper->SetHWnd(0, a2));
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4192 ErrD3D(pFrontBuffer4->SetClipper(pDDrawClipper));
0
Ritor1
parents:
diff changeset
4193 }
Ritor1
parents:
diff changeset
4194
Ritor1
parents:
diff changeset
4195 //----- (004A15D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
4196 void Render::GetTargetPixelFormat(DDPIXELFORMAT *pOut)
Ritor1
parents:
diff changeset
4197 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4198 pFrontBuffer4->GetPixelFormat(pOut);
0
Ritor1
parents:
diff changeset
4199 }
Ritor1
parents:
diff changeset
4200
Ritor1
parents:
diff changeset
4201 //----- (004A1605) --------------------------------------------------------
Ritor1
parents:
diff changeset
4202 void Render::LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow)
Ritor1
parents:
diff changeset
4203 {
Ritor1
parents:
diff changeset
4204 signed int v4; // eax@3
Ritor1
parents:
diff changeset
4205
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4206 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4207 //pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4208 {
Ritor1
parents:
diff changeset
4209 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4210 memset(&pDesc, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4211 pDesc.dwSize = 124;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
4212 LockSurface_DDraw4(this->pBackBuffer4, &pDesc, DDLOCK_WAIT);
0
Ritor1
parents:
diff changeset
4213 *pOutSurfacePtr = pDesc.lpSurface;
Ritor1
parents:
diff changeset
4214 v4 = pDesc.lPitch;
Ritor1
parents:
diff changeset
4215 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4216 /*else
0
Ritor1
parents:
diff changeset
4217 {
Ritor1
parents:
diff changeset
4218 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4219 memset(&pDesc.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4220 pDesc.lPitch = 108;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
4221 LockSurface_DDraw2(this->pBackBuffer2, &pDesc, 1);
0
Ritor1
parents:
diff changeset
4222 *pOutSurfacePtr = (void *)pDesc.lpSurface;
Ritor1
parents:
diff changeset
4223 v4 = pDesc.dwReserved;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4224 }*/
0
Ritor1
parents:
diff changeset
4225 *pOutPixelsPerRow = v4 >> 1;
Ritor1
parents:
diff changeset
4226 }
Ritor1
parents:
diff changeset
4227
Ritor1
parents:
diff changeset
4228 //----- (004A16E1) --------------------------------------------------------
Ritor1
parents:
diff changeset
4229 void Render::UnlockBackBuffer()
Ritor1
parents:
diff changeset
4230 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4231 ErrD3D(pBackBuffer4->Unlock(0));
0
Ritor1
parents:
diff changeset
4232 }
Ritor1
parents:
diff changeset
4233
Ritor1
parents:
diff changeset
4234 //----- (004A172E) --------------------------------------------------------
Ritor1
parents:
diff changeset
4235 void Render::LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow)
Ritor1
parents:
diff changeset
4236 {
Ritor1
parents:
diff changeset
4237 signed int v4; // eax@3
Ritor1
parents:
diff changeset
4238
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4239 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4240 {
Ritor1
parents:
diff changeset
4241 DDSURFACEDESC2 pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4242 memset(&pDesc, 0, 0x7Cu);
Ritor1
parents:
diff changeset
4243 pDesc.dwSize = 124;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
4244 LockSurface_DDraw4(this->pFrontBuffer4, &pDesc, DDLOCK_WAIT);
0
Ritor1
parents:
diff changeset
4245 *pOutSurface = pDesc.lpSurface;
Ritor1
parents:
diff changeset
4246 v4 = pDesc.lPitch;
Ritor1
parents:
diff changeset
4247 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4248 /*else
0
Ritor1
parents:
diff changeset
4249 {
Ritor1
parents:
diff changeset
4250 DDSURFACEDESC pDesc; // [sp+4h] [bp-7Ch]@3
Ritor1
parents:
diff changeset
4251 memset(&pDesc.lPitch, 0, 0x6Cu);
Ritor1
parents:
diff changeset
4252 pDesc.lPitch = 108;
2132
49de109bbab5 SavePCXScreenshot() continue
Ritor1
parents: 2131
diff changeset
4253 LockSurface_DDraw2(this->pFrontBuffer2, &pDesc, 1);
0
Ritor1
parents:
diff changeset
4254 *pOutSurface = (void *)pDesc.lpSurface;
Ritor1
parents:
diff changeset
4255 v4 = pDesc.dwReserved;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4256 }*/
0
Ritor1
parents:
diff changeset
4257 *pOutPixelsPerRow = v4 >> 1;
Ritor1
parents:
diff changeset
4258 }
Ritor1
parents:
diff changeset
4259
Ritor1
parents:
diff changeset
4260 //----- (004A17C7) --------------------------------------------------------
Ritor1
parents:
diff changeset
4261 void Render::UnlockFrontBuffer()
Ritor1
parents:
diff changeset
4262 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4263 ErrD3D(pFrontBuffer4->Unlock(0));
0
Ritor1
parents:
diff changeset
4264 }
Ritor1
parents:
diff changeset
4265
Ritor1
parents:
diff changeset
4266 //----- (004A1814) --------------------------------------------------------
Ritor1
parents:
diff changeset
4267 void Render::RestoreFrontBuffer()
Ritor1
parents:
diff changeset
4268 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4269 if (pFrontBuffer4->IsLost() == DDERR_SURFACELOST )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4270 pFrontBuffer4->Restore();
0
Ritor1
parents:
diff changeset
4271 }
Ritor1
parents:
diff changeset
4272
Ritor1
parents:
diff changeset
4273 //----- (004A184C) --------------------------------------------------------
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4274 void Render::RestoreBackBuffer()
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4275 {
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4276 if ( pBackBuffer4->IsLost() == DDERR_SURFACELOST )
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4277 pBackBuffer4->Restore();
0
Ritor1
parents:
diff changeset
4278 }
Ritor1
parents:
diff changeset
4279
Ritor1
parents:
diff changeset
4280 //----- (004A18F5) --------------------------------------------------------
Ritor1
parents:
diff changeset
4281 void Render::BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags)
Ritor1
parents:
diff changeset
4282 {
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4283 ErrD3D(pFrontBuffer4->Blt(pDstRect, (IDirectDrawSurface4 *)pSrcSurface, pSrcRect, uBltFlags, nullptr));
0
Ritor1
parents:
diff changeset
4284 }
Ritor1
parents:
diff changeset
4285
Ritor1
parents:
diff changeset
4286 //----- (004A194A) --------------------------------------------------------
Ritor1
parents:
diff changeset
4287 void Render::BltBackToFontFast(int a2, int a3, RECT *a4)
Ritor1
parents:
diff changeset
4288 {
Ritor1
parents:
diff changeset
4289 IDirectDrawSurface *pFront; // eax@3
Ritor1
parents:
diff changeset
4290 IDirectDrawSurface *pBack; // [sp-Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
4291
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4292 //if ( pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || pVersion->pVersionInfo.dwMajorVersion != 4 )
0
Ritor1
parents:
diff changeset
4293 {
Ritor1
parents:
diff changeset
4294 pFront = (IDirectDrawSurface *)this->pFrontBuffer4;
Ritor1
parents:
diff changeset
4295 pBack = (IDirectDrawSurface *)this->pBackBuffer4;
Ritor1
parents:
diff changeset
4296 }
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4297 /*else
0
Ritor1
parents:
diff changeset
4298 {
Ritor1
parents:
diff changeset
4299 pFront = (IDirectDrawSurface *)this->pFrontBuffer2;
Ritor1
parents:
diff changeset
4300 pBack = (IDirectDrawSurface *)this->pBackBuffer2;
2152
d44b7775fc06 Removed DirectDraw2 compatibility.
Nomad
parents: 2151
diff changeset
4301 }*/
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4302 pFront->BltFast(0, 0, pBack, a4, DDBLTFAST_WAIT);
0
Ritor1
parents:
diff changeset
4303 }
Ritor1
parents:
diff changeset
4304
Ritor1
parents:
diff changeset
4305 //----- (004A1B22) --------------------------------------------------------
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4306 unsigned int Render::Billboard_ProbablyAddToListAndSortByZOrder(float z)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4307 {
0
Ritor1
parents:
diff changeset
4308 unsigned int v7; // edx@6
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4309
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4310 if (uNumBillboardsToDraw >= 999 )
0
Ritor1
parents:
diff changeset
4311 return 0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4312 if (!uNumBillboardsToDraw)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4313 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4314 uNumBillboardsToDraw = 1;
0
Ritor1
parents:
diff changeset
4315 return 0;
Ritor1
parents:
diff changeset
4316 }
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4317
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4318 for (int left = 0, right = uNumBillboardsToDraw; left < right; ) // binsearch
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4319 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4320 v7 = left + (right - left) / 2;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4321 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4322 right = v7;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4323 else
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4324 left = v7 + 1;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4325 }
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4326
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4327 if (z > pRenderer->pBillboardRenderListD3D[v7].z_order )
0
Ritor1
parents:
diff changeset
4328 {
Ritor1
parents:
diff changeset
4329 if ( v7 == pRenderer->uNumBillboardsToDraw - 1 )
Ritor1
parents:
diff changeset
4330 v7 = pRenderer->uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
4331 else
Ritor1
parents:
diff changeset
4332 {
Ritor1
parents:
diff changeset
4333 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 )
Ritor1
parents:
diff changeset
4334 {
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4335 for ( uint i = 0; i < pRenderer->uNumBillboardsToDraw - v7; i++ )
0
Ritor1
parents:
diff changeset
4336 {
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4337 memcpy(&pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i],
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4338 &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - (i + 1)],
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4339 sizeof(pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i]));
0
Ritor1
parents:
diff changeset
4340 }
Ritor1
parents:
diff changeset
4341 }
Ritor1
parents:
diff changeset
4342 ++v7;
Ritor1
parents:
diff changeset
4343 }
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
4344 uNumBillboardsToDraw++;
0
Ritor1
parents:
diff changeset
4345 return v7;
Ritor1
parents:
diff changeset
4346 }
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4347 if (z <= pRenderer->pBillboardRenderListD3D[v7].z_order )
0
Ritor1
parents:
diff changeset
4348 {
Ritor1
parents:
diff changeset
4349 if ( (signed int)pRenderer->uNumBillboardsToDraw > (signed int)v7 )
Ritor1
parents:
diff changeset
4350 {
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4351 for ( uint i = 0; i < pRenderer->uNumBillboardsToDraw - v7; i++ )
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4352 {
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4353 memcpy(&pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i],
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4354 &pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw -(i + 1)],
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4355 sizeof(pRenderer->pBillboardRenderListD3D[pRenderer->uNumBillboardsToDraw - i]));
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4356 }
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
4357 }
717
Ritor1
parents: 688
diff changeset
4358 uNumBillboardsToDraw++;
Ritor1
parents: 688
diff changeset
4359 return v7;
0
Ritor1
parents:
diff changeset
4360 }
Ritor1
parents:
diff changeset
4361 return v7;
Ritor1
parents:
diff changeset
4362 }
Ritor1
parents:
diff changeset
4363
Ritor1
parents:
diff changeset
4364 //----- (004A1E9D) --------------------------------------------------------
Ritor1
parents:
diff changeset
4365 unsigned int Render::GetBillboardDrawListSize()
Ritor1
parents:
diff changeset
4366 {
Ritor1
parents:
diff changeset
4367 return pRenderer->uNumBillboardsToDraw;
Ritor1
parents:
diff changeset
4368 }
Ritor1
parents:
diff changeset
4369
Ritor1
parents:
diff changeset
4370 //----- (004A1EA3) --------------------------------------------------------
Ritor1
parents:
diff changeset
4371 unsigned int Render::GetParentBillboardID(unsigned int uBillboardID)
Ritor1
parents:
diff changeset
4372 {
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
4373 return pRenderer->pBillboardRenderListD3D[uBillboardID].sParentBillboardID;
0
Ritor1
parents:
diff changeset
4374 }
Ritor1
parents:
diff changeset
4375
Ritor1
parents:
diff changeset
4376 //----- (004A1EB6) --------------------------------------------------------
Ritor1
parents:
diff changeset
4377 void Render::BeginSceneD3D()
Ritor1
parents:
diff changeset
4378 {
Ritor1
parents:
diff changeset
4379 if (!uNumD3DSceneBegins++)
Ritor1
parents:
diff changeset
4380 {
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4381 //if (pRenderD3D)
0
Ritor1
parents:
diff changeset
4382 {
Ritor1
parents:
diff changeset
4383 pRenderD3D->ClearTarget(true, 0x00F08020, true, 1.0);
Ritor1
parents:
diff changeset
4384 pRenderer->uNumBillboardsToDraw = 0;
Ritor1
parents:
diff changeset
4385 pRenderD3D->pDevice->BeginScene();
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4386
0
Ritor1
parents:
diff changeset
4387 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
Ritor1
parents:
diff changeset
4388 uFogColor = GetLevelFogColor();
Ritor1
parents:
diff changeset
4389 else
Ritor1
parents:
diff changeset
4390 uFogColor = 0;
Ritor1
parents:
diff changeset
4391
Ritor1
parents:
diff changeset
4392 if ( uFogColor & 0xFF000000 )
Ritor1
parents:
diff changeset
4393 {
Ritor1
parents:
diff changeset
4394 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1);
Ritor1
parents:
diff changeset
4395 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor & 0xFFFFFF);
Ritor1
parents:
diff changeset
4396 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0);
Ritor1
parents:
diff changeset
4397 bUsingSpecular = true;
Ritor1
parents:
diff changeset
4398 }
Ritor1
parents:
diff changeset
4399 else
Ritor1
parents:
diff changeset
4400 {
Ritor1
parents:
diff changeset
4401 pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0);
Ritor1
parents:
diff changeset
4402 bUsingSpecular = 0;
Ritor1
parents:
diff changeset
4403 }
Ritor1
parents:
diff changeset
4404 }
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4405 /*else
0
Ritor1
parents:
diff changeset
4406 {
Ritor1
parents:
diff changeset
4407 LockRenderSurface((void **)&pTargetSurface, &uTargetSurfacePitch);
Ritor1
parents:
diff changeset
4408 if (pTargetSurface)
Ritor1
parents:
diff changeset
4409 field_18_locked_pitch = uTargetSurfacePitch;
Ritor1
parents:
diff changeset
4410 else
Ritor1
parents:
diff changeset
4411 --uNumD3DSceneBegins;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
4412 }*/
0
Ritor1
parents:
diff changeset
4413 }
Ritor1
parents:
diff changeset
4414 }
Ritor1
parents:
diff changeset
4415
Ritor1
parents:
diff changeset
4416 //----- (004A1FE1) --------------------------------------------------------
Ritor1
parents:
diff changeset
4417 void Render::DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene()
Ritor1
parents:
diff changeset
4418 {
Ritor1
parents:
diff changeset
4419 --uNumD3DSceneBegins;
Ritor1
parents:
diff changeset
4420 if (uNumD3DSceneBegins)
Ritor1
parents:
diff changeset
4421 return;
Ritor1
parents:
diff changeset
4422
Ritor1
parents:
diff changeset
4423 if (pRenderD3D)
Ritor1
parents:
diff changeset
4424 {
Ritor1
parents:
diff changeset
4425 pGame->draw_debug_outlines();
161
49e74dee4eab 13.02.13
Ritor1
parents: 152
diff changeset
4426 DoRenderBillboards_D3D();
0
Ritor1
parents:
diff changeset
4427 pGame->pStru6Instance->RenderSpecialEffects();
Ritor1
parents:
diff changeset
4428 pRenderD3D->pDevice->EndScene();
Ritor1
parents:
diff changeset
4429 }
Ritor1
parents:
diff changeset
4430 else
Ritor1
parents:
diff changeset
4431 pGame->pStru6Instance->RenderSpecialEffects();
Ritor1
parents:
diff changeset
4432 }
Ritor1
parents:
diff changeset
4433
Ritor1
parents:
diff changeset
4434 //----- (004A2031) --------------------------------------------------------
349
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4435 unsigned int Render::GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6)
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4436 {
1117
ad89d1905b48 * stru6_stru1_indoor_sw_billboard::sub_47802A() cleaned, fireball working
zipi
parents: 1113
diff changeset
4437 // __debugbreak(); // should not fire outside decal builder
349
672b83584b0f GetActorTintColor
Nomad
parents: 323
diff changeset
4438 return ::GetActorTintColor(tint, a4, a2, a5, a6);
0
Ritor1
parents:
diff changeset
4439 }
Ritor1
parents:
diff changeset
4440
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
4441 /*void Render::DrawTerrainPolygon_new(Polygon *a3, IDirect3DTexture2 *pTexture)//new function
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4442 {
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4443 int v5; // ebx@1
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4444 int v6; // edi@1
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4445 int v8; // eax@7
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4446 float v9; // eax@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4447 float *v10; // esi@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4448 float v11; // ecx@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4449 double v12; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4450 double v13; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4451 double v14; // st7@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4452 signed int v15; // eax@14
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4453 int v16; // eax@15
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4454 float v17; // ST48_4@15
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4455 char v18; // zf@17
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4456 int v19; // eax@18
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4457 int v20; // eax@18
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4458 int v21; // edx@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4459 signed int v22; // ecx@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4460 int v23; // eax@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4461 const char *v24; // ST4C_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4462 unsigned int v25; // ST50_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4463 int v26; // ST54_4@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4464 int v27; // eax@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4465 _UNKNOWN *v28; // eax@21
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4466 int v29; // ecx@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4467 int v30; // eax@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4468 int v31; // eax@23
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4469 int v32; // eax@24
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4470 int v33; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4471 int v34; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4472 int v35; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4473 int v36; // eax@25
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4474 signed int v37; // ecx@26
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4475 int v38; // eax@26
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4476 _UNKNOWN *v39; // eax@27
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4477 int v40; // edx@28
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4478 int v41; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4479 int v42; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4480 int v43; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4481 int v44; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4482 unsigned int v46; // eax@29
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4483 int v47; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4484 int v48; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4485 int v49; // eax@30
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4486 double v52; // st6@35
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4487 const char *v55; // [sp+4Ch] [bp-1Ch]@20
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4488 int v57; // [sp+5Ch] [bp-Ch]@3
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4489 signed int v59; // [sp+60h] [bp-8h]@12
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4490 int v61; // [sp+64h] [bp-4h]@4
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4491 int i;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4492
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4493 v6 = (int)this;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4494 v5 = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4495 if (!this->uNumD3DSceneBegins)
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4496 return;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4497
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4498
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4499
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4500
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4501 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4502 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4503 if (this->bUsingSpecular)
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4504 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4505 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4506 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4507 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4508 }
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4509
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4510 pVertices[0].pos.x = array_50AC10[0].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4511 pVertices[0].pos.y = array_50AC10[0].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4512 pVertices[0].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[0].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4513 pVertices[0].rhw = 1.0 / (array_50AC10[0].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4514 pVertices[0].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4515 pVertices[0].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4516 pVertices[0].texcoord.x = array_50AC10[0].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4517 pVertices[0].texcoord.y = array_50AC10[0].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4518
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4519 pVertices[1].pos.x = array_50AC10[3].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4520 pVertices[1].pos.y = array_50AC10[3].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4521 pVertices[1].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[3].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4522 pVertices[1].rhw = 1.0 / (array_50AC10[3].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4523 pVertices[1].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[3].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4524 pVertices[1].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4525 pVertices[1].texcoord.x = array_50AC10[3].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4526 pVertices[1].texcoord.y = array_50AC10[3].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4527
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4528 pVertices[2].pos.x = array_50AC10[1].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4529 pVertices[2].pos.y = array_50AC10[1].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4530 pVertices[2].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[1].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4531 pVertices[2].rhw = 1.0 / (array_50AC10[1].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4532 pVertices[2].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[1].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4533 pVertices[2].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4534 pVertices[2].texcoord.x = array_50AC10[1].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4535 pVertices[2].texcoord.y = array_50AC10[1].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4536
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4537 memcpy(pVertices + 3, pVertices + 2, sizeof(RenderVertexD3D3));
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4538 memcpy(pVertices + 4, pVertices + 1, sizeof(RenderVertexD3D3));
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4539
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4540 pVertices[5].pos.x = array_50AC10[2].vWorldViewProjX;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4541 pVertices[5].pos.y = array_50AC10[2].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4542 pVertices[5].pos.z = 1.0 - 1.0 / (1000 * array_50AC10[2].vWorldViewPosition.x / (double)pODMRenderParams->shading_dist_mist);
86
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4543 pVertices[5].rhw = 1.0 / (array_50AC10[2].vWorldViewPosition.x + 0.0000001000000011686097);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4544 pVertices[5].diffuse = GetActorTintColor(a3->field_58, 0, array_50AC10[2].vWorldViewPosition.x, 0, 0);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4545 pVertices[5].specular = 0;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4546 pVertices[5].texcoord.x = array_50AC10[2].u;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4547 pVertices[5].texcoord.y = array_50AC10[2].v;
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4548
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4549
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4550 this->pRenderD3D->pDevice->SetTexture(0, pTexture);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4551 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLELIST, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, pVertices, 6, D3DDP_DONOTLIGHT);
ec84db4c8f9d 4.01.13
Ritor1
parents: 77
diff changeset
4552
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4553 }*/
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4554
0
Ritor1
parents:
diff changeset
4555 //----- (004A26BC) --------------------------------------------------------
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1390
diff changeset
4556 void Render::DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders)
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4557 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4558 //RenderVertexSoft *pVertices; // esi@0
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4559 //int v7; // edi@1
0
Ritor1
parents:
diff changeset
4560 unsigned int v8; // ebx@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4561 // LightmapBuilder *v9; // esi@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4562 // unsigned int v10; // edx@3
0
Ritor1
parents:
diff changeset
4563 int v11; // eax@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4564 // int v12; // eax@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4565 // char *v13; // esi@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4566 // double v14; // st7@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4567 // double v15; // st7@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4568 // signed int v16; // eax@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4569 // int v17; // ecx@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4570 // double v18; // st7@13
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4571 // float v19; // ST78_4@14
0
Ritor1
parents:
diff changeset
4572 int v20; // eax@14
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4573 // char v21; // zf@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4574 // HRESULT v22; // eax@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4575 // HRESULT v23; // eax@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4576 // HRESULT v24; // eax@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4577 // HRESULT v25; // eax@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4578 // unsigned int v26; // ecx@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4579 // char *v27; // eax@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4580 // HRESULT v28; // eax@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4581 // HRESULT v29; // eax@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4582 // HRESULT v30; // eax@23
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4583 // HRESULT v31; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4584 // HRESULT v32; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4585 // HRESULT v33; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4586 // HRESULT v34; // eax@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4587 // HRESULT v35; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4588 // HRESULT v36; // eax@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4589 // unsigned int v37; // ecx@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4590 // char *v38; // eax@26
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4591 // int v39; // edx@27
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4592 // HRESULT v40; // eax@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4593 // HRESULT v41; // eax@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4594 // HRESULT v42; // eax@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4595 // HRESULT v43; // eax@28
0
Ritor1
parents:
diff changeset
4596 //IDirect3DDevice3Vtbl *v44; // ebx@28
Ritor1
parents:
diff changeset
4597 unsigned int v45; // eax@28
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4598 // HRESULT v46; // eax@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4599 // HRESULT v47; // eax@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4600 // HRESULT v48; // eax@29
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4601 //IDirect3DDevice3 *v49; // eax@35
0
Ritor1
parents:
diff changeset
4602 //IDirect3DDevice3Vtbl *v50; // ecx@35
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4603 // int v51; // eax@40
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4604 // char *v52; // esi@40
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4605 // double v53; // st7@42
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4606 // double v54; // st7@42
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4607 // signed int v55; // eax@42
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4608 // int v56; // ecx@42
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4609 // double v57; // st7@42
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4610 // float v58; // ST7C_4@43
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4611 // int v59; // eax@43
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4612 //signed int v60; // [sp+78h] [bp-14h]@31
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4613 //RenderVertexSoft *v61; // [sp+7Ch] [bp-10h]@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4614 // const char *v62; // [sp+80h] [bp-Ch]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4615 // const char *v63; // [sp+80h] [bp-Ch]@19
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4616 // int v64; // [sp+84h] [bp-8h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4617 // LightmapBuilder *v65; // [sp+88h] [bp-4h]@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4618 // unsigned int v66; // [sp+88h] [bp-4h]@40
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4619 // unsigned int a6a; // [sp+A0h] [bp+14h]@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4620 // int a7;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4621
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4622 //v7 = (int)this;
0
Ritor1
parents:
diff changeset
4623 v8 = 0;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4624 if (!this->uNumD3DSceneBegins)
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4625 return;
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4626 if ( uNumVertices < 3)
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4627 return;
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4628
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4629 //v61 = pVertices;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4630
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4631 /* v9 = pGame->pLightmapBuilder;
0
Ritor1
parents:
diff changeset
4632 v65 = v9;
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4633 v10 = v9->std__vector_000004_size;*/
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
4634 if ( byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related)
0
Ritor1
parents:
diff changeset
4635 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4636 v11 = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[0].vWorldViewPosition.x, 0, 0);
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
4637 pGame->pLightmapBuilder->DrawLightmaps(/*v11, 0*/);
0
Ritor1
parents:
diff changeset
4638 }
Ritor1
parents:
diff changeset
4639 else
Ritor1
parents:
diff changeset
4640 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4641 if (transparent || !pGame->pLightmapBuilder->std__vector_000004_size ||
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4642 byte_4D864C && pGame->uFlags & 2 )
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4643 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4644 if (clampAtTextureBorders)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4645 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP);
0
Ritor1
parents:
diff changeset
4646 else
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4647 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4648
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4649 if (transparent || this->bUsingSpecular)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4650 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4651 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4652 if (transparent)
0
Ritor1
parents:
diff changeset
4653 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4654 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4655 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4656 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4657 //this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE);
0
Ritor1
parents:
diff changeset
4658 }
Ritor1
parents:
diff changeset
4659 else
Ritor1
parents:
diff changeset
4660 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4661 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4662 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
0
Ritor1
parents:
diff changeset
4663 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4664 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4665
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4666 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4667 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4668
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4669 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4670 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4671 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4672 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4673 d3d_vertex_buffer[i].diffuse = ::GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4674 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
4675 {
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
4676 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
4677 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4678 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4679 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4680 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4681 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4682 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4683 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4684 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4685
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4686 this->pRenderD3D->pDevice->SetTexture(0, a5);
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4687 this->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1, d3d_vertex_buffer, uNumVertices, 16);
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4688 if (transparent)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4689 {
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4690 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4691 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4692 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
4693 }
Ritor1
parents:
diff changeset
4694 }
Ritor1
parents:
diff changeset
4695 else
Ritor1
parents:
diff changeset
4696 {
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4697 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4698 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4699
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4700 d3d_vertex_buffer[i].pos.x = array_50AC10[i].vWorldViewProjX;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4701 d3d_vertex_buffer[i].pos.y = array_50AC10[i].vWorldViewProjY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
4702 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / ((array_50AC10[i].vWorldViewPosition.x * 1000) / (double)pODMRenderParams->shading_dist_mist);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4703 d3d_vertex_buffer[i].rhw = 1.0 / (array_50AC10[i].vWorldViewPosition.x + 0.0000001);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4704 d3d_vertex_buffer[i].diffuse = GetActorTintColor(a4->dimming_level, 0, array_50AC10[i].vWorldViewPosition.x, 0, 0);
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4705 if ( this->bUsingSpecular )
0
Ritor1
parents:
diff changeset
4706 {
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
4707 d3d_vertex_buffer[i].specular = sub_47C3D7_get_fog_specular(0, 0, array_50AC10[i].vWorldViewPosition.x);
0
Ritor1
parents:
diff changeset
4708 }
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4709 else
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4710 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4711 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4712 }
1409
c9e3b93ec570 Highlighted locations with "using uninitialized variable" warning.
Nomad
parents: 1394
diff changeset
4713 __debugbreak(); // warning C4700: uninitialized local variable 'v20' used
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4714 d3d_vertex_buffer[i].specular = v20;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4715 d3d_vertex_buffer[i].texcoord.x = array_50AC10[i].u;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4716 d3d_vertex_buffer[i].texcoord.y = array_50AC10[i].v;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4717 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4718 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4719 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4720 if (pRenderer->bUsingSpecular)
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4721 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0
Ritor1
parents:
diff changeset
4722
Ritor1
parents:
diff changeset
4723 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4724 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4725 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4726 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4727 uNumVertices,
Ritor1
parents:
diff changeset
4728 16));
Ritor1
parents:
diff changeset
4729 //v63 = (const char *)v7->pRenderD3D->pDevice;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4730 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0
Ritor1
parents:
diff changeset
4731 //(*(void (**)(void))(*(int *)v63 + 88))();
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
4732 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4733 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4734 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4735 d3d_vertex_buffer[i].diffuse = -1;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4736 }
0
Ritor1
parents:
diff changeset
4737 ErrD3D(pRenderD3D->pDevice->SetTexture(0, a5));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4738 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
4739 if ( !pRenderer->bUsingSpecular )
Ritor1
parents:
diff changeset
4740 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4741 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4742 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4743 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4744 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4745 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4746 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4747 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4748 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4749 uNumVertices,
Ritor1
parents:
diff changeset
4750 16));
Ritor1
parents:
diff changeset
4751 if ( pRenderer->bUsingSpecular )
Ritor1
parents:
diff changeset
4752 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4753 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0
Ritor1
parents:
diff changeset
4754 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
1073
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4755 for (uint i = 0; i < uNumVertices; ++i)
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4756 {
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4757 d3d_vertex_buffer[i].diffuse = pRenderer->uFogColor | d3d_vertex_buffer[i].specular & 0xFF000000;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4758 d3d_vertex_buffer[i].specular = 0;
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4759 }
d4a1a46192ba some Render cleaning
zipi
parents: 1072
diff changeset
4760
75
6ef241d53522 28.01.13
Ritor1
parents: 67
diff changeset
4761 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));//problem
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4762 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4763 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4764 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
4765 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4766 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
4767 uNumVertices,
Ritor1
parents:
diff changeset
4768 16));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4769 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0
Ritor1
parents:
diff changeset
4770 //v44 = pRenderer->pRenderD3D->pDevice;
Ritor1
parents:
diff changeset
4771 v45 = GetLevelFogColor();
Ritor1
parents:
diff changeset
4772 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, v45 & 0xFFFFFF));
Ritor1
parents:
diff changeset
4773 v8 = 0;
Ritor1
parents:
diff changeset
4774 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
Ritor1
parents:
diff changeset
4775 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4776 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4777 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0
Ritor1
parents:
diff changeset
4778 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, v8));
Ritor1
parents:
diff changeset
4779 }
Ritor1
parents:
diff changeset
4780 }
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4781
1638
ccde94f02b75 class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents: 1637
diff changeset
4782 //if (pIndoorCamera->flags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES || pBLVRenderParams->uFlags & INDOOR_CAMERA_DRAW_TERRAIN_OUTLINES)
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1641
diff changeset
4783 if (pGame->pIndoorCameraD3D->debug_flags & ODM_RENDER_DRAW_TERRAIN_OUTLINES)
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
4784 pGame->pIndoorCameraD3D->debug_outline_d3d(d3d_vertex_buffer, uNumVertices, 0x00FFFFFF, 0.0);
0
Ritor1
parents:
diff changeset
4785 }
Ritor1
parents:
diff changeset
4786 // 4A26BC: could not find valid save-restore pair for esi
Ritor1
parents:
diff changeset
4787 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
4788
Ritor1
parents:
diff changeset
4789 //----- (004A2DA3) --------------------------------------------------------
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4790 void Render::DrawOutdoorSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture)
852
Ritor1
parents: 840
diff changeset
4791 {
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4792 int v7; // eax@7
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4793
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4794 if ( !this->uNumD3DSceneBegins )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4795 return;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4796 if ( uNumVertices >= 3 )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4797 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4798 this->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4799 if ( this->bUsingSpecular )
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4800 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4801 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4802 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4803 this->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4804 }
1427
Ritor1
parents: 1424
diff changeset
4805 for ( uint i = 0; i < uNumVertices; ++i )
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4806 {
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4807 pVertices[i].pos.x = array_50AC10[i].vWorldViewProjX;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4808 pVertices[i].pos.y = array_50AC10[i].vWorldViewProjY;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4809 pVertices[i].pos.z = 0.99989998;
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
4810 pVertices[i].rhw = array_50AC10[i]._rhw;
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4811
840
6dd2b94efce7 DrawFan
Ritor1
parents: 810
diff changeset
4812 pVertices[i].diffuse = ::GetActorTintColor(31, 0, array_50AC10[i].vWorldViewPosition.x, 1, 0);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4813 v7 = 0;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4814 if (this->bUsingSpecular)
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
4815 v7 = sub_47C3D7_get_fog_specular(0, 1, array_50AC10[i].vWorldViewPosition.x);
67
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4816 pVertices[i].specular = v7;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4817 pVertices[i].texcoord.x = array_50AC10[i].u;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4818 pVertices[i].texcoord.y = array_50AC10[i].v;
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4819 }
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4820 pRenderer->pRenderD3D->pDevice->SetTexture(0, pTexture);
3b4f8bd48e3b 25.01.13 (I did sky)
Ritor1
parents: 65
diff changeset
4821 pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
840
6dd2b94efce7 DrawFan
Ritor1
parents: 810
diff changeset
4822 pVertices, uNumVertices, D3DDP_DONOTUPDATEEXTENTS | D3DDP_DONOTLIGHT);
0
Ritor1
parents:
diff changeset
4823 }
Ritor1
parents:
diff changeset
4824 }
Ritor1
parents:
diff changeset
4825
Ritor1
parents:
diff changeset
4826 //----- (004A2ED5) --------------------------------------------------------
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4827 void Render::DrawIndoorSkyPolygon(signed int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture)
0
Ritor1
parents:
diff changeset
4828 {
Ritor1
parents:
diff changeset
4829 int v5; // eax@3
Ritor1
parents:
diff changeset
4830
Ritor1
parents:
diff changeset
4831 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
4832 {
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4833 if ( uNumVertices >= 3 )
0
Ritor1
parents:
diff changeset
4834 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
4835 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4836 v5 = 31 - (pSkyPolygon->dimming_level & 0x1F);
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4837 if ( v5 < pOutdoor->max_terrain_dimming_level )
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 637
diff changeset
4838 v5 = pOutdoor->max_terrain_dimming_level;
1937
Ritor1
parents: 1936
diff changeset
4839 for (uint i = 0; i < uNumVertices; ++i)
Ritor1
parents: 1936
diff changeset
4840 {
Ritor1
parents: 1936
diff changeset
4841 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
Ritor1
parents: 1936
diff changeset
4842 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
4843 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
1937
Ritor1
parents: 1936
diff changeset
4844 d3d_vertex_buffer[i].rhw = array_507D30[i]._rhw;
Ritor1
parents: 1936
diff changeset
4845 d3d_vertex_buffer[i].diffuse = 8 * v5 | ((8 * v5 | (v5 << 11)) << 8);
Ritor1
parents: 1936
diff changeset
4846 d3d_vertex_buffer[i].specular = 0;
Ritor1
parents: 1936
diff changeset
4847 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u;
Ritor1
parents: 1936
diff changeset
4848 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v;
Ritor1
parents: 1936
diff changeset
4849 }
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4850 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pTexture));
1936
68f2d9d3a1d9 MSVS 2010 project file
Ritor1
parents: 1925
diff changeset
4851 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
68f2d9d3a1d9 MSVS 2010 project file
Ritor1
parents: 1925
diff changeset
4852 d3d_vertex_buffer, uNumVertices, 28));
0
Ritor1
parents:
diff changeset
4853 }
Ritor1
parents:
diff changeset
4854 }
Ritor1
parents:
diff changeset
4855 }
Ritor1
parents:
diff changeset
4856
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4857 //----- (00479A53) --------------------------------------------------------
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
4858 void Render::DrawIndoorSky(unsigned int uNumVertices, unsigned int uFaceID)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4859 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4860 BLVFace *pFace; // esi@1
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4861 double v5; // st7@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4862 signed __int64 v6; // qax@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4863 int v12; // edx@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4864 int v13; // eax@7
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4865 // void *v15; // ecx@9
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4866 int v17; // edi@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4867 double v18; // st7@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4868 signed int v19; // ebx@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4869 void *v20; // ecx@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4870 int v21; // ebx@11
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4871 int v22; // eax@14
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4872 signed __int64 v23; // qtt@16
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4873 // double v24; // st7@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4874 // unsigned __int8 v25; // sf@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4875 // unsigned __int8 v26; // of@16
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4876 double v28; // st7@20
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4877 // char *v29; // ebx@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4878 // char *v30; // edx@20
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4879 // unsigned __int8 v31; // c0@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4880 // unsigned __int8 v32; // c3@21
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4881 double v33; // st6@23
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4882 // char *v34; // esi@30
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4883 const void *v35; // ecx@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4884 int v36; // eax@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4885 const void *v37; // edi@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4886 signed __int64 v38; // qax@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4887 int v39; // ecx@31
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4888 int v40; // ebx@33
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4889 int v41; // eax@36
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4890 signed __int64 v42; // qtt@39
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4891 int v43; // eax@39
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4892 // char v44; // zf@39
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4893 // double v45; // st7@39
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4894 // double v46; // st7@39
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4895 // unsigned int v47; // edx@40
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4896 double v48; // st7@41
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4897 // RenderVertexSoft *v49; // ebx@41
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4898 // void *v50; // edi@43
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4899 double v51; // st7@46
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4900 // RenderVertexSoft *v52; // edx@46
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4901 // void *v53; // edi@48
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4902 // signed int v59; // [sp-4h] [bp-178h]@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4903 // struct Polygon *v60; // [sp+0h] [bp-174h]@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
4904 // IDirect3DTexture2 *v61; // [sp+4h] [bp-170h]@17
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4905 struct Polygon pSkyPolygon; // [sp+14h] [bp-160h]@6
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4906 unsigned int v63; // [sp+120h] [bp-54h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4907 unsigned int v65; // [sp+128h] [bp-4Ch]@1
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4908 unsigned int v66; // [sp+12Ch] [bp-48h]@7
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4909 //float v67; // [sp+130h] [bp-44h]@7
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4910 __int64 v69; // [sp+13Ch] [bp-38h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4911 int v70; // [sp+144h] [bp-30h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4912 int X; // [sp+148h] [bp-2Ch]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4913 int v72; // [sp+14Ch] [bp-28h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4914 float v73; // [sp+150h] [bp-24h]@16
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4915 unsigned int v74; // [sp+154h] [bp-20h]@3
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
4916 unsigned int v74_; // [sp+154h] [bp-20h]@3
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4917 RenderVertexSoft *v75; // [sp+158h] [bp-1Ch]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4918 float v76; // [sp+15Ch] [bp-18h]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4919 int v77; // [sp+160h] [bp-14h]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4920 int v78; // [sp+164h] [bp-10h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4921 void *v79; // [sp+168h] [bp-Ch]@9
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4922 float v80; // [sp+16Ch] [bp-8h]@3
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4923 const void *v81; // [sp+170h] [bp-4h]@7
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4924
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4925 pFace = &pIndoor->pFaces[uFaceID];
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4926 //for floor and wall(for example Selesta)-------------------
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4927 if (pFace->uPolygonType == POLYGON_InBetweenFloorAndWall || pFace->uPolygonType == POLYGON_Floor)
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4928 {
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4929 int v69 = (GetTickCount() / 32) - pGame->pIndoorCameraD3D->vPartyPos.x;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4930 int v55 = (GetTickCount() / 32) + pGame->pIndoorCameraD3D->vPartyPos.y;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4931 for (uint i = 0; i < uNumVertices; ++i)
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4932 {
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4933 array_507D30[i].u = (v69 + array_507D30[i].u) * 0.25f;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4934 array_507D30[i].v = (v55 + array_507D30[i].v) * 0.25f;
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4935 }
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4936 pRenderer->DrawIndoorPolygon(uNumVertices, pFace, pBitmaps_LOD->pHardwareTextures[pFace->uBitmapID], pFace->GetTexture(), PID(OBJECT_BModel, uFaceID), -1, 0);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4937 return;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4938 }
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4939 //---------------------------------------
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4940 v70 = (signed __int64)((double)(pBLVRenderParams->fov_rad_fixpoint * pGame->pIndoorCameraD3D->vPartyPos.z)//179
1641
466c5e15f524 Excess wrapper (IndoorLocation_drawstru) removed.
Nomad
parents: 1640
diff changeset
4941 / (((double)pBLVRenderParams->fov_rad_fixpoint + 16192.0)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4942 * 65536.0)
1922
e60d9df73428 DrawIndoorPolygonSky
Ritor1
parents: 1913
diff changeset
4943 + (double)pBLVRenderParams->uViewportCenterY);
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4944 v5 = (double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064;//0
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4945 v6 = (signed __int64)((double)pBLVRenderParams->uViewportCenterY//183
1641
466c5e15f524 Excess wrapper (IndoorLocation_drawstru) removed.
Nomad
parents: 1640
diff changeset
4946 - (double)pBLVRenderParams->fov_rad_fixpoint
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4947 / ((cos(v5) * 16192.0 + 0.0000001)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4948 * 65535.0)
1922
e60d9df73428 DrawIndoorPolygonSky
Ritor1
parents: 1913
diff changeset
4949 * (sin(v5) * -16192.0 - (double)pGame->pIndoorCameraD3D->vPartyPos.z));
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4950
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
4951 stru_8019C8._48653D_frustum_blv(65536, 0, 0, 0, 65536, 0);
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4952 pSkyPolygon.Create_48607B(&stru_8019C8);
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4953 pSkyPolygon.uTileBitmapID = pFace->uBitmapID;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4954
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4955 pSkyPolygon.pTexture = pBitmaps_LOD->GetTexture(pSkyPolygon.uTileBitmapID);
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4956 if ( !pSkyPolygon.pTexture )
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4957 return;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4958
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4959 pSkyPolygon.dimming_level = 0;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4960 pSkyPolygon.uNumVertices = uNumVertices;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4961
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4962 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16);
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4963 pSkyPolygon.v_18.y = 0;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4964 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16);
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4965
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4966 memcpy(&array_507D30[uNumVertices], array_507D30, sizeof(array_507D30[uNumVertices]));
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4967 pSkyPolygon.field_24 = 0x2000000;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4968
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4969 extern float _calc_fov(int viewport_width, int angle_degree);
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4970 //v64 = (double)(signed int)(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX) * 0.5;
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4971 //v72 = 65536 / (signed int)(signed __int64)(v64 / tan(0.6457717418670654) + 0.5);
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4972 v72 = 65536.0f / _calc_fov(pBLVRenderParams->uViewportZ - pBLVRenderParams->uViewportX, 74);
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4973 v12 = pSkyPolygon.pTexture->uWidthMinus1;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4974 v13 = pSkyPolygon.pTexture->uHeightMinus1;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4975 //v67 = 1.0 / (double)pSkyPolygon.pTexture->uTextureWidth;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4976 v63 = 224 * pMiscTimer->uTotalGameTimeElapsed & v13;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4977 v66 = 224 * pMiscTimer->uTotalGameTimeElapsed & v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4978 v78 = 0;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4979 //v81 = 0;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4980 float v68 = 1.0 / (double)pSkyPolygon.pTexture->uTextureHeight;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4981 if ( (signed int)pSkyPolygon.uNumVertices <= 0 )
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4982 return;
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4983
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4984 int _507D30_idx = 0;
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
4985 for ( _507D30_idx; _507D30_idx < pSkyPolygon.uNumVertices; _507D30_idx++ )
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
4986 {
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
4987 //v15 = (void *)(v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY));
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
4988 v77 = fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_west_east, v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY));
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4989 v74 = v77 + pSkyPolygon.ptr_38->angle_from_north;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4990
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
4991 v77 = fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_north_south, v72 * (v70 - array_507D30[_507D30_idx].vWorldViewProjY));
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
4992 v74_ = v77 + pSkyPolygon.ptr_38->angle_from_east;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4993
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
4994 v79 = (void *)(fixpoint_mul(pSkyPolygon.v_18.z, v72 * (v70 - (int)array_507D30[_507D30_idx].vWorldViewProjY)));
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4995 v17 = v72 * (pBLVRenderParams->uViewportCenterX - (int)array_507D30[_507D30_idx].vWorldViewProjX);
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
4996 v18 = array_507D30[_507D30_idx].vWorldViewProjY - 1.0;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4997 v19 = -pSkyPolygon.field_24;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4998 v77 = -pSkyPolygon.field_24;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
4999 X = (int)((char *)v79 + pSkyPolygon.v_18.x);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5000 LODWORD(v76) = (signed __int64)v18;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5001 v20 = (void *)(v72 * (v70 - LODWORD(v76)));
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5002 while ( 1 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5003 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5004 v79 = v20;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5005 if ( !X )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5006 goto LABEL_14;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5007 v21 = abs(v19 >> 14);
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5008 if ( v21 <= abs(X) )//0x800 <= 0x28652
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5009 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5010 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5011 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5012 v19 = v77;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5013 v20 = v79;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5014 LABEL_14:
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5015 v79 = (void *)fixpoint_mul(pSkyPolygon.v_18.z, (int)v20);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5016 v22 = fixpoint_mul(pSkyPolygon.v_18.z, (int)v20);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5017 --LODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5018 v20 = (char *)v20 + v72;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5019 X = v22 + pSkyPolygon.v_18.x;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5020 v78 = 1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5021 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5022 if ( !v78 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5023 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5024 LODWORD(v23) = v77 << 16;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5025 HIDWORD(v23) = v77 >> 16;//v23 = 0xfffffe0000000000
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5026 v79 = (void *)(v23 / X);//X = FFFF9014(-28652)
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5027 v77 = v17;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5028 signed __int64 s = v74 + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_west, v17);// s = 0xFFFFFFFF FFFF3EE6
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5029 LODWORD(v80) = v66 + ((signed int)fixpoint_mul(SLODWORD(s), v23 / X) >> 4);
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5030 array_507D30[_507D30_idx].u = ((double)SLODWORD(v80) * 0.000015259022) * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth);
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5031
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5032 signed __int64 s2 = v74_ + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_south, v17);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5033 LODWORD(v80) = v63 + ((signed int)fixpoint_mul(SLODWORD(s2), v23 / X) >> 4);
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5034 array_507D30[_507D30_idx].v = ((double)SLODWORD(v80) * 0.000015259022) * v68;
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5035
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5036 v77 = fixpoint_mul(SLODWORD(s), v23 / X);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5037 LODWORD(v73) = fixpoint_mul(SLODWORD(s2), v23 / X);
1644
dbd6f940f26c Fixed Celestia sky a bit.
Nomad
parents: 1642
diff changeset
5038 array_507D30[_507D30_idx]._rhw = 65536.0 / (double)(signed int)v79;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5039
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5040 //if ( (int)v81 >= pSkyPolygon.uNumVertices )
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5041 //{
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5042 // pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon,
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5043 // pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5044 // return;
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5045 //}
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5046 continue;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5047 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5048 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5049 }
1999
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5050 if ( _507D30_idx >= pSkyPolygon.uNumVertices )
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5051 {
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5052 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon,
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5053 pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5054 return;
079f2abf54e4 DrawIndoorSky() fix
Ritor1
parents: 1997
diff changeset
5055 }
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5056 LODWORD(v73) = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5057 v80 = v76;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5058 if ( (signed int)pSkyPolygon.uNumVertices > 0 )
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5059 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5060 v28 = (double)SLODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5061 LODWORD(v76) = (int)(char *)array_50AC10 + 28;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5062 uint i = 0;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5063 for ( v78 = pSkyPolygon.uNumVertices; v78; --v78 )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5064 {
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5065 ++LODWORD(v73);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5066 memcpy(&array_50AC10[i], &array_507D30[i], 0x30u);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5067 LODWORD(v76) += 48;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5068 if ( v28 < array_507D30[i].vWorldViewProjY | v28 == array_507D30[i].vWorldViewProjY
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5069 || v28 >= array_507D30[i + 1].vWorldViewProjY )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5070 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5071 if ( v28 >= array_507D30[i].vWorldViewProjY || v28 <= array_507D30[i + 1].vWorldViewProjY )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5072 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5073 i++;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5074 continue;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5075 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5076 v33 = (array_507D30[i + 1].vWorldViewProjX - array_507D30[i].vWorldViewProjX) * v28 / (array_507D30[i + 1].vWorldViewProjY - array_507D30[i].vWorldViewProjY)
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5077 + array_507D30[i + 1].vWorldViewProjX;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5078 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5079 else
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5080 {
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5081 v33 = (array_507D30[i].vWorldViewProjX - array_507D30[i + 1].vWorldViewProjX) * v28 / (array_507D30[i].vWorldViewProjY - array_507D30[i + 1].vWorldViewProjY)
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5082 + array_507D30[i].vWorldViewProjX;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5083 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5084 array_50AC10[i + 1].vWorldViewProjX = v33;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5085 ++LODWORD(v73);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5086 *(unsigned int *)LODWORD(v76) = v28;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5087 LODWORD(v76) += 48;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5088 i++;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5089 }
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5090 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5091 if ( SLODWORD(v73) <= 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5092 goto LABEL_40;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5093 //v34 = (char *)&array_50AC10[0].vWorldViewProjY;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5094 uint j = 0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5095 v65 = v77 >> 14;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5096 //HIDWORD(v69) = LODWORD(v73);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5097 for ( int t = (int)LODWORD(v73); t > 1; t-- )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5098 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5099 v35 = (const void *)(v72 * (v70 - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjY));
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5100
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5101 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_west_east;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5102 //v81 = (const void *)fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_west_east, v35);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5103 v36 = (int)(fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_west_east, (int)v35) + pSkyPolygon.ptr_38->angle_from_north);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5104
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5105 v81 = v35;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5106 v74 = v36;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5107 //v78 = pSkyPolygon.ptr_38->viewing_angle_from_north_south;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5108 v81 = (const void *)fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_north_south, (int)v35);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5109 v78 = (int)v35;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5110 v75 = (RenderVertexSoft *)((char *)v81 + pSkyPolygon.ptr_38->angle_from_east);
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5111 //v81 = (const void *)pSkyPolygon.v_18.z;
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5112 v78 = fixpoint_mul(pSkyPolygon.v_18.z, (int)v35);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5113 v37 = (const void *)(v72 * (pBLVRenderParams->uViewportCenterX - (unsigned __int64)(signed __int64)array_50AC10[j].vWorldViewProjX));
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5114 v38 = (signed __int64)(array_50AC10[j].vWorldViewProjY - 1.0);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5115 v81 = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5116 LODWORD(v76) = v38;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5117 v39 = v72 * (v70 - v38);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5118 while ( 1 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5119 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5120 v78 = v39;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5121 if ( !X )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5122 goto LABEL_36;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5123 v40 = abs(X);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5124 if ( abs((signed __int64)v65) <= v40 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5125 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5126 if ( SLODWORD(v76) <= (signed int)pViewport->uViewportTL_Y )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5127 break;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5128 v39 = v78;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5129 LABEL_36:
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5130 v78 = pSkyPolygon.v_18.z;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5131 v41 = fixpoint_mul(pSkyPolygon.v_18.z, v39);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5132 --LODWORD(v76);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5133 v39 += v72;
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5134 X = v41 + pSkyPolygon.v_18.x;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5135 v81 = (const void *)1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5136 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5137 if ( v81 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5138 {
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5139 v79 = (void *)pSkyPolygon.v_18.z;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5140 v78 = 2 * LODWORD(v76);
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5141 v81 = (const void *)fixpoint_mul(pSkyPolygon.v_18.z, (((double)v70 - ((double)(2 * LODWORD(v76)) - array_50AC10[j].vWorldViewProjY))
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5142 * (double)v72));
1981
d9ea00250e2e DrawIndoorSky() continue
Ritor1
parents: 1937
diff changeset
5143 X = (int)((char *)v81 + pSkyPolygon.v_18.x);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5144 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5145 LODWORD(v42) = v77 << 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5146 HIDWORD(v42) = v77 >> 16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5147 v79 = (void *)(v42 / X);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5148 v81 = v37;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5149
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5150 //v78 = pSkyPolygon.ptr_38->angle_from_west;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5151 v81 = (const void *)fixpoint_mul(pSkyPolygon.ptr_38->angle_from_west, (int)v37);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5152 v43 = v74 + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_west, (int)v37);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5153 v74 = (unsigned int)v37;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5154 LODWORD(v76) = v43;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5155
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5156 //v78 = pSkyPolygon.ptr_38->angle_from_south;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5157 v75 = (RenderVertexSoft *)((char *)v75 + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_south, (int)v37));
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5158 //v74 = fixpoint_mul(v43, v42 / X);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5159 v81 = (const void *)fixpoint_mul((int)v75, v42 / X);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5160
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5161 //v34 += 48;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5162 //v78 = v66 + ((signed int)fixpoint_mul(v43, v42 / X) >> 4);
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5163 //v44 = HIDWORD(v69)-- == 1;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5164 //v45 = (double)(v66 + ((signed int)fixpoint_mul(v43, v42 / X) >> 4)) * 0.000015259022;
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5165 //v78 = v63 + ((signed int)fixpoint_mul((int)v75, v42 / X) >> 4);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5166 array_50AC10[j].u = ((double)(v66 + ((signed int)fixpoint_mul(v43, v42 / X) >> 4)) * 0.000015259022) * (1.0 / (double)pSkyPolygon.pTexture->uTextureWidth);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
5167 array_50AC10[j].v = ((double)(v66 + ((signed int)fixpoint_mul(v43, v42 / X) >> 4)) * 0.000015259022) * v68;
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5168 //v46 = (double)(signed int)v79;
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5169 array_50AC10[j].vWorldViewPosition.x = 0.000015258789 * (double)(signed int)v79;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5170 array_50AC10[j]._rhw = 65536.0 / (double)(signed int)v79;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5171 ++j;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5172 }
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5173 //while ( !v44 );
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5174 LABEL_40:
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5175 uint i = 0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5176 if ( SLODWORD(v73) > 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5177 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5178 v48 = (double)SLODWORD(v80);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5179 for ( HIDWORD(v69) = LODWORD(v73); HIDWORD(v69); --HIDWORD(v69) )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5180 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5181 if ( v48 >= array_50AC10[i].vWorldViewProjY )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5182 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5183 ++i;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5184 memcpy(&array_507D30[i], &array_50AC10[i], 0x30u);
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5185 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5186 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5187 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5188 pSkyPolygon.uNumVertices = i;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5189 pRenderer->DrawIndoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5190 int pNumVertices = 0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5191 if ( SLODWORD(v73) > 0 )
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5192 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5193 v51 = (double)SLODWORD(v80);
1997
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5194 for ( v80 = v73; v80 != 0.0; --LODWORD(v80) )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5195 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5196 if ( v51 <= array_50AC10[pNumVertices].vWorldViewProjY )
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5197 {
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5198 ++pNumVertices;
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5199 memcpy(&array_507D30[pNumVertices], &array_50AC10[pNumVertices], 0x30u);
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5200 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5201 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5202 }
157fd2831567 DrawIndoorSky() continue
Ritor1
parents: 1985
diff changeset
5203 pRenderer->DrawIndoorSkyPolygon(pNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5204 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5205
2016
f1fd2ed4e9ba Обращённый набор изменений ÑлиÑниÑ: 9dbc142fc8f7
Ritor1
parents: 2014
diff changeset
5206
0
Ritor1
parents:
diff changeset
5207 //----- (004A2FC0) --------------------------------------------------------
Ritor1
parents:
diff changeset
5208 void Render::DrawIndoorPolygon(unsigned int uNumVertices, BLVFace *pFace, IDirect3DTexture2 *pHwTex, Texture *pTex, int uPackedID, unsigned int uColor, int a8)
Ritor1
parents:
diff changeset
5209 {
Ritor1
parents:
diff changeset
5210 //Render *v8; // edi@1
Ritor1
parents:
diff changeset
5211 //unsigned int v9; // esi@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5212 // RenderVertexSoft *v12; // ecx@9
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5213 // RenderVertexD3D3 *v13; // eax@9
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5214 // double v14; // st6@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5215 // int v15; // edx@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5216 // Texture *v16; // edx@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5217 // double v17; // st6@10
0
Ritor1
parents:
diff changeset
5218 //char v18; // zf@10
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5219 // Texture *v19; // edx@10
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5220 //Texture *v23; // edx@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5221 //char *v24; // ecx@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5222 //char *v25; // eax@16
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5223 //double v26; // st6@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5224 //int v27; // esi@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5225 //double v28; // st6@17
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5226 //unsigned int v33; // ecx@18
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5227 //char *v34; // eax@19
0
Ritor1
parents:
diff changeset
5228 //Texture *v45; // edx@23
Ritor1
parents:
diff changeset
5229 //char *v46; // ecx@23
Ritor1
parents:
diff changeset
5230 //char *v47; // eax@23
Ritor1
parents:
diff changeset
5231 //double v48; // st6@24
Ritor1
parents:
diff changeset
5232 //int v49; // esi@24
Ritor1
parents:
diff changeset
5233 //double v50; // st6@24
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5234 // const char *v53; // [sp-Ch] [bp-20h]@21
0
Ritor1
parents:
diff changeset
5235 //int v54; // [sp-8h] [bp-1Ch]@21
Ritor1
parents:
diff changeset
5236 //unsigned int v55; // [sp-4h] [bp-18h]@21
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5237 // const char *v56; // [sp+0h] [bp-14h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5238 // int v57; // [sp+4h] [bp-10h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5239 // unsigned int v58; // [sp+8h] [bp-Ch]@0
0
Ritor1
parents:
diff changeset
5240 //LightmapBuilder *v59; // [sp+Ch] [bp-8h]@3
Ritor1
parents:
diff changeset
5241 //int a3a; // [sp+10h] [bp-4h]@4
Ritor1
parents:
diff changeset
5242
Ritor1
parents:
diff changeset
5243 //v8 = this;
Ritor1
parents:
diff changeset
5244 if (!uNumD3DSceneBegins || uNumVertices < 3)
Ritor1
parents:
diff changeset
5245 return;
Ritor1
parents:
diff changeset
5246
Ritor1
parents:
diff changeset
5247 //auto a3 = pFace;
Ritor1
parents:
diff changeset
5248 //auto a6 = uPackedID;
Ritor1
parents:
diff changeset
5249 //v59 = pGame->pLightmapBuilder;
Ritor1
parents:
diff changeset
5250 //v9 = v59->std__vector_000004_size;
Ritor1
parents:
diff changeset
5251
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5252 int sCorrectedColor = uColor;
0
Ritor1
parents:
diff changeset
5253 if (pGame->pLightmapBuilder->std__vector_000004_size)
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5254 sCorrectedColor = -1;
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5255 pGame->AlterGamma_BLV(pFace, &sCorrectedColor);
0
Ritor1
parents:
diff changeset
5256
792
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5257
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5258 if (pFace->uAttributes & FACE_OUTLINED)
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5259 {
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
5260 // int color;
792
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5261 if (GetTickCount() % 300 >= 150)
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5262 uColor = sCorrectedColor = 0xFF20FF20;
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5263 else uColor = sCorrectedColor = 0xFF109010;
792
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5264 }
41b4e9769863 Walking in BLV iproved drastically.
Nomad
parents: 791
diff changeset
5265
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5266 if (byte_4D864C && pGame->uFlags & GAME_FLAGS_1_01_lightmap_related)
0
Ritor1
parents:
diff changeset
5267 {
Ritor1
parents:
diff changeset
5268 __debugbreak();
Ritor1
parents:
diff changeset
5269 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5270 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5271 for (uint i = 0; i < uNumVertices; ++i)
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5272 {
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5273 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5274 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5275 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5276 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5277 d3d_vertex_buffer[i].diffuse = sCorrectedColor;
1072
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5278 d3d_vertex_buffer[i].specular = 0;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5279 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5280 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5281 }
48168499f52e pointer cleaning
zipi
parents: 1038
diff changeset
5282
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5283 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5284 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
Ritor1
parents:
diff changeset
5285 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
5286 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
5287 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5288 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5289 uNumVertices,
Ritor1
parents:
diff changeset
5290 28));
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
5291 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
0
Ritor1
parents:
diff changeset
5292 }
Ritor1
parents:
diff changeset
5293 else
Ritor1
parents:
diff changeset
5294 {
Ritor1
parents:
diff changeset
5295 if (!pGame->pLightmapBuilder->std__vector_000004_size ||
Ritor1
parents:
diff changeset
5296 byte_4D864C && pGame->uFlags & 2)
Ritor1
parents:
diff changeset
5297 {
Ritor1
parents:
diff changeset
5298 for (uint i = 0; i < uNumVertices; ++i)
Ritor1
parents:
diff changeset
5299 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5300 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5301 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5302 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5303 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5304 d3d_vertex_buffer[i].diffuse = sCorrectedColor;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5305 d3d_vertex_buffer[i].specular = 0;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5306 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5307 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5308 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5309
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5310 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5311 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex));
Ritor1
parents:
diff changeset
5312 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
5313 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5314 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5315 uNumVertices,
Ritor1
parents:
diff changeset
5316 28));
Ritor1
parents:
diff changeset
5317 }
Ritor1
parents:
diff changeset
5318 else
Ritor1
parents:
diff changeset
5319 {
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5320 for (uint i = 0; i < uNumVertices; ++i)
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5321 {
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5322 d3d_vertex_buffer[i].pos.x = array_507D30[i].vWorldViewProjX;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5323 d3d_vertex_buffer[i].pos.y = array_507D30[i].vWorldViewProjY;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5324 d3d_vertex_buffer[i].pos.z = 1.0 - 1.0 / (array_507D30[i].vWorldViewPosition.x * 0.061758894);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5325 d3d_vertex_buffer[i].rhw = 1.0 / array_507D30[i].vWorldViewPosition.x;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5326 d3d_vertex_buffer[i].diffuse = uColor;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5327 d3d_vertex_buffer[i].specular = 0;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5328 d3d_vertex_buffer[i].texcoord.x = array_507D30[i].u / (double)pTex->uTextureWidth;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5329 d3d_vertex_buffer[i].texcoord.y = array_507D30[i].v / (double)pTex->uTextureHeight;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5330 }
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5331 //__debugbreak();
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5332 //if ( (signed int)uNumVertices > 0 )
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5333 //{
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5334 //v23 = pTex;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5335 //v24 = (char *)&array_507D30[0].vWorldViewPosition;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5336 //v25 = (char *)&d3d_vertex_buffer[0].pos.y;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5337 //pTex = (Texture *)uNumVertices;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5338 //uint v18;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5339 //do
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5340 //{
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5341 //v26 = *(float *)v24 * 0.061758894;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5342 //v27 = *((int *)v24 + 3);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5343 //*((int *)v25 + 4) = 0;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5344 //*((int *)v25 - 1) = v27;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5345 //*(int *)v25 = *((int *)v24 + 4);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5346 //*((int *)v25 + 3) = uColor;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5347 //v25 += 32;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5348 //*((float *)v25 - 7) = 1.0 - 1.0 / v26;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5349 //v28 = 1.0 / *(float *)v24;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5350 //v24 += 48;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5351 //v18 = pTex == (Texture *)1;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5352 //pTex = (Texture *)((char *)pTex - 1);
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5353 //*((float *)v25 - 6) = v28;
0
Ritor1
parents:
diff changeset
5354 //a3 = (BLVFace *)v23->uTextureWidth;
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5355 //*((float *)v25 - 3) = *((float *)v24 - 6) / (double)(signed int)v23->uTextureWidth;
0
Ritor1
parents:
diff changeset
5356 //a3 = (BLVFace *)v23->uTextureHeight;
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5357 //*((float *)v25 - 2) = *((float *)v24 - 5) / (double)(signed int)v23->uTextureHeight;
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5358 //}
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5359 //while ( !v18 );
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5360 //}
0
Ritor1
parents:
diff changeset
5361 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5362 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
0
Ritor1
parents:
diff changeset
5363 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5364 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
5365 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5366 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5367 uNumVertices,
Ritor1
parents:
diff changeset
5368 28));
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5369
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5370 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
1394
8ea496564034 Some LightmapBuilder renames.
Nomad
parents: 1391
diff changeset
5371 pGame->pLightmapBuilder->DrawLightmaps(/*-1, 0*/);
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5372
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5373 for (uint i = 0; i < uNumVertices; ++i)
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5374 d3d_vertex_buffer[i].diffuse = sCorrectedColor;
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5375 /*v33 = uNumVertices;
0
Ritor1
parents:
diff changeset
5376 if ( (signed int)uNumVertices > 0 )
Ritor1
parents:
diff changeset
5377 {
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5378 v34 = (char *)&d3d_vertex_buffer[0].diffuse;
0
Ritor1
parents:
diff changeset
5379 do
Ritor1
parents:
diff changeset
5380 {
Ritor1
parents:
diff changeset
5381 *(int *)v34 = uCorrectedColor;
Ritor1
parents:
diff changeset
5382 v34 += 32;
Ritor1
parents:
diff changeset
5383 --v33;
Ritor1
parents:
diff changeset
5384 }
Ritor1
parents:
diff changeset
5385 while ( v33 );
595
55d6b756e03a Cave textures
Nomad
parents: 577
diff changeset
5386 }*/
0
Ritor1
parents:
diff changeset
5387 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pHwTex));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5388 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_WRAP));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5389 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5390 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5391 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5392 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_SRCCOLOR));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5393 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0
Ritor1
parents:
diff changeset
5394 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1207
96a81634669e arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents: 1206
diff changeset
5395 d3d_vertex_buffer,
0
Ritor1
parents:
diff changeset
5396 uNumVertices,
Ritor1
parents:
diff changeset
5397 28));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5398 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5399 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
5400 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0
Ritor1
parents:
diff changeset
5401 }
Ritor1
parents:
diff changeset
5402 }
Ritor1
parents:
diff changeset
5403 }
Ritor1
parents:
diff changeset
5404 // 4D864C: using guessed type char byte_4D864C;
Ritor1
parents:
diff changeset
5405
Ritor1
parents:
diff changeset
5406 //----- (004A43B1) --------------------------------------------------------
717
Ritor1
parents: 688
diff changeset
5407 void Render::DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level)
Ritor1
parents: 688
diff changeset
5408 {
Ritor1
parents: 688
diff changeset
5409 //RenderBillboardTransform_local0 *v4; // ebx@2
Ritor1
parents: 688
diff changeset
5410 //double v5; // st7@2
Ritor1
parents: 688
diff changeset
5411 //float v6; // ST08_4@2
0
Ritor1
parents:
diff changeset
5412 unsigned int v7; // eax@2
717
Ritor1
parents: 688
diff changeset
5413 //int v8; // ecx@2
Ritor1
parents: 688
diff changeset
5414 //unsigned int v9; // esi@2
Ritor1
parents: 688
diff changeset
5415 //Sprite *v10; // edi@5
0
Ritor1
parents:
diff changeset
5416 signed int v11; // eax@9
Ritor1
parents:
diff changeset
5417 signed int v12; // eax@9
717
Ritor1
parents: 688
diff changeset
5418 //double v13; // st7@12
Ritor1
parents: 688
diff changeset
5419 //double v14; // st6@12
0
Ritor1
parents:
diff changeset
5420 double v15; // st5@12
Ritor1
parents:
diff changeset
5421 double v16; // st4@12
Ritor1
parents:
diff changeset
5422 double v17; // st3@12
Ritor1
parents:
diff changeset
5423 double v18; // st2@12
Ritor1
parents:
diff changeset
5424 int v19; // ecx@14
Ritor1
parents:
diff changeset
5425 double v20; // st3@14
Ritor1
parents:
diff changeset
5426 int v21; // ecx@16
Ritor1
parents:
diff changeset
5427 double v22; // st3@16
717
Ritor1
parents: 688
diff changeset
5428 //IDirect3DTexture2 *v23; // eax@18
Ritor1
parents: 688
diff changeset
5429 //signed int v24; // [sp+18h] [bp-18h]@5
Ritor1
parents: 688
diff changeset
5430 //signed int v25; // [sp+1Ch] [bp-14h]@5
Ritor1
parents: 688
diff changeset
5431 //Render *v26; // [sp+20h] [bp-10h]@1
0
Ritor1
parents:
diff changeset
5432 float v27; // [sp+24h] [bp-Ch]@5
Ritor1
parents:
diff changeset
5433 int v28; // [sp+28h] [bp-8h]@2
Ritor1
parents:
diff changeset
5434 float v29; // [sp+2Ch] [bp-4h]@5
717
Ritor1
parents: 688
diff changeset
5435 //float pSoftBillboarda; // [sp+38h] [bp+8h]@2
0
Ritor1
parents:
diff changeset
5436 float v31; // [sp+3Ch] [bp+Ch]@5
717
Ritor1
parents: 688
diff changeset
5437 //float v32; // [sp+3Ch] [bp+Ch]@12
0
Ritor1
parents:
diff changeset
5438 float a1; // [sp+40h] [bp+10h]@5
Ritor1
parents:
diff changeset
5439
717
Ritor1
parents: 688
diff changeset
5440 //v26 = this;
0
Ritor1
parents:
diff changeset
5441 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5442 {
717
Ritor1
parents: 688
diff changeset
5443 //v4 = pSoftBillboard;
Ritor1
parents: 688
diff changeset
5444 //v5 = (double)pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5445 //pSoftBillboarda = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5446 //v6 = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5447 v7 = Billboard_ProbablyAddToListAndSortByZOrder(pSoftBillboard->zbuffer_depth);
Ritor1
parents: 688
diff changeset
5448 //v8 = dimming_level;
Ritor1
parents: 688
diff changeset
5449 //v9 = v7;
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5450 v28 = dimming_level & 0xFF000000;
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5451 if ( dimming_level & 0xFF000000 )
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5452 pBillboardRenderListD3D[v7].opacity = RenderBillboardD3D::Opaque_3;
0
Ritor1
parents:
diff changeset
5453 else
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5454 pBillboardRenderListD3D[v7].opacity = RenderBillboardD3D::Transparent;
717
Ritor1
parents: 688
diff changeset
5455 //v10 = a3;
Ritor1
parents: 688
diff changeset
5456 pBillboardRenderListD3D[v7].field_90 = pSoftBillboard->field_44;
Ritor1
parents: 688
diff changeset
5457 pBillboardRenderListD3D[v7].sZValue = pSoftBillboard->sZValue;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
5458 pBillboardRenderListD3D[v7].sParentBillboardID = pSoftBillboard->sParentBillboardID;
717
Ritor1
parents: 688
diff changeset
5459 //v25 = pSoftBillboard->uScreenSpaceX;
Ritor1
parents: 688
diff changeset
5460 //v24 = pSoftBillboard->uScreenSpaceY;
Ritor1
parents: 688
diff changeset
5461 a1 = (pSoftBillboard->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_x_scaler_packedfloat);
Ritor1
parents: 688
diff changeset
5462 v29 = (pSoftBillboard->_screenspace_y_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(pSoftBillboard->_screenspace_y_scaler_packedfloat);
Ritor1
parents: 688
diff changeset
5463 v31 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX);
Ritor1
parents: 688
diff changeset
5464 v27 = (double)(pSprite->uBufferHeight - pSprite->uAreaY);
Ritor1
parents: 688
diff changeset
5465 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5466 v31 = v31 * -1.0;
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5467 if ( pSoftBillboard->sTintColor && this->bTinting )
717
Ritor1
parents: 688
diff changeset
5468 {
Ritor1
parents: 688
diff changeset
5469 v11 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0);
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5470 v12 = BlendColors(pSoftBillboard->sTintColor, v11);
0
Ritor1
parents:
diff changeset
5471 if ( v28 )
Ritor1
parents:
diff changeset
5472 v12 = (unsigned int)((char *)&array_77EC08[1852].pEdgeList1[17] + 3) & ((unsigned int)v12 >> 1);
Ritor1
parents:
diff changeset
5473 }
Ritor1
parents:
diff changeset
5474 else
Ritor1
parents:
diff changeset
5475 {
717
Ritor1
parents: 688
diff changeset
5476 v12 = ::GetActorTintColor(dimming_level, 0, pSoftBillboard->zbuffer_depth, 0, 0);
Ritor1
parents: 688
diff changeset
5477 }
Ritor1
parents: 688
diff changeset
5478 //v13 = (double)v25;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5479 pBillboardRenderListD3D[v7].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5480 pBillboardRenderListD3D[v7].pQuads[0].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5481 pBillboardRenderListD3D[v7].pQuads[0].pos.x = pSoftBillboard->uScreenSpaceX - v31 * a1;
717
Ritor1
parents: 688
diff changeset
5482 //v14 = (double)v24;
Ritor1
parents: 688
diff changeset
5483 //v32 = v14;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5484 pBillboardRenderListD3D[v7].pQuads[0].pos.y = pSoftBillboard->uScreenSpaceY - v27 * v29;
717
Ritor1
parents: 688
diff changeset
5485 v15 = 1.0 - 1.0 / (pSoftBillboard->zbuffer_depth * 0.061758894);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5486 pBillboardRenderListD3D[v7].pQuads[0].pos.z = v15;
717
Ritor1
parents: 688
diff changeset
5487 v16 = 1.0 / pSoftBillboard->zbuffer_depth;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5488 pBillboardRenderListD3D[v7].pQuads[0].rhw = 1.0 / pSoftBillboard->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5489 pBillboardRenderListD3D[v7].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5490 pBillboardRenderListD3D[v7].pQuads[0].texcoord.y = 0.0;
717
Ritor1
parents: 688
diff changeset
5491 v17 = (double)((pSprite->uBufferWidth >> 1) - pSprite->uAreaX);
Ritor1
parents: 688
diff changeset
5492 v18 = (double)(pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight);
Ritor1
parents: 688
diff changeset
5493 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5494 v17 = v17 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5495 pBillboardRenderListD3D[v7].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5496 pBillboardRenderListD3D[v7].pQuads[1].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5497 pBillboardRenderListD3D[v7].pQuads[1].pos.x = pSoftBillboard->uScreenSpaceX - v17 * a1;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5498 pBillboardRenderListD3D[v7].pQuads[1].pos.y = pSoftBillboard->uScreenSpaceY - v18 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5499 pBillboardRenderListD3D[v7].pQuads[1].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5500 pBillboardRenderListD3D[v7].pQuads[1].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5501 pBillboardRenderListD3D[v7].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5502 pBillboardRenderListD3D[v7].pQuads[1].texcoord.y = 1.0;
717
Ritor1
parents: 688
diff changeset
5503 v19 = pSprite->uBufferHeight - pSprite->uAreaY - pSprite->uAreaHeight;
Ritor1
parents: 688
diff changeset
5504 v20 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth);
Ritor1
parents: 688
diff changeset
5505 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5506 v20 = v20 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5507 pBillboardRenderListD3D[v7].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5508 pBillboardRenderListD3D[v7].pQuads[2].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5509 pBillboardRenderListD3D[v7].pQuads[2].pos.x = v20 * a1 + pSoftBillboard->uScreenSpaceX;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5510 pBillboardRenderListD3D[v7].pQuads[2].pos.y = pSoftBillboard->uScreenSpaceY - (double)v19 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5511 pBillboardRenderListD3D[v7].pQuads[2].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5512 pBillboardRenderListD3D[v7].pQuads[2].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5513 pBillboardRenderListD3D[v7].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5514 pBillboardRenderListD3D[v7].pQuads[2].texcoord.y = 1.0;
717
Ritor1
parents: 688
diff changeset
5515 v21 = pSprite->uBufferHeight - pSprite->uAreaY;
Ritor1
parents: 688
diff changeset
5516 v22 = (double)(pSprite->uAreaX + pSprite->uAreaWidth + (pSprite->uBufferWidth >> 1) - pSprite->uBufferWidth);
Ritor1
parents: 688
diff changeset
5517 if ( pSoftBillboard->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5518 v22 = v22 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5519 pBillboardRenderListD3D[v7].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5520 pBillboardRenderListD3D[v7].pQuads[3].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5521 pBillboardRenderListD3D[v7].pQuads[3].pos.x = v22 * a1 + pSoftBillboard->uScreenSpaceX;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5522 pBillboardRenderListD3D[v7].pQuads[3].pos.y = pSoftBillboard->uScreenSpaceY - (double)v21 * v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5523 pBillboardRenderListD3D[v7].pQuads[3].pos.z = v15;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5524 pBillboardRenderListD3D[v7].pQuads[3].rhw = v16;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5525 pBillboardRenderListD3D[v7].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5526 pBillboardRenderListD3D[v7].pQuads[3].texcoord.y = 0.0;
717
Ritor1
parents: 688
diff changeset
5527 //v23 = pSprite->pTexture;
Ritor1
parents: 688
diff changeset
5528 pBillboardRenderListD3D[v7].uNumVertices = 4;
Ritor1
parents: 688
diff changeset
5529 pBillboardRenderListD3D[v7].z_order = pSoftBillboard->zbuffer_depth;
Ritor1
parents: 688
diff changeset
5530 pBillboardRenderListD3D[v7].pTexture = pSprite->pTexture;
0
Ritor1
parents:
diff changeset
5531 }
Ritor1
parents:
diff changeset
5532 }
Ritor1
parents:
diff changeset
5533
Ritor1
parents:
diff changeset
5534 //----- (004A354F) --------------------------------------------------------
Ritor1
parents:
diff changeset
5535 void Render::MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle)
Ritor1
parents:
diff changeset
5536 {
743
Ritor1
parents: 741
diff changeset
5537 //double v5; // st7@3
Ritor1
parents: 741
diff changeset
5538 //float v6; // ST20_4@3
Ritor1
parents: 741
diff changeset
5539 //float v7; // ST00_4@3
0
Ritor1
parents:
diff changeset
5540 unsigned int v8; // esi@3
743
Ritor1
parents: 741
diff changeset
5541 //int v9; // eax@3
Ritor1
parents: 741
diff changeset
5542 //int v10; // ebx@3
0
Ritor1
parents:
diff changeset
5543 float v11; // ST28_4@3
743
Ritor1
parents: 741
diff changeset
5544 //double v12; // st7@3
Ritor1
parents: 741
diff changeset
5545 //float v13; // ST24_4@3
Ritor1
parents: 741
diff changeset
5546 //double v14; // st6@3
Ritor1
parents: 741
diff changeset
5547 //float v15; // ST1C_4@3
0
Ritor1
parents:
diff changeset
5548 float v16; // ST2C_4@3
Ritor1
parents:
diff changeset
5549 float v17; // ST30_4@3
Ritor1
parents:
diff changeset
5550 signed int v18; // ST18_4@3
Ritor1
parents:
diff changeset
5551 signed int v19; // ST14_4@3
Ritor1
parents:
diff changeset
5552 signed int v20; // ST10_4@3
Ritor1
parents:
diff changeset
5553 signed int v21; // eax@3
Ritor1
parents:
diff changeset
5554 double v22; // st6@3
Ritor1
parents:
diff changeset
5555 float v23; // ST2C_4@3
Ritor1
parents:
diff changeset
5556 float v24; // ST30_4@3
Ritor1
parents:
diff changeset
5557 signed int v25; // ST10_4@3
Ritor1
parents:
diff changeset
5558 signed int v26; // ST14_4@3
Ritor1
parents:
diff changeset
5559 signed int v27; // ST18_4@3
Ritor1
parents:
diff changeset
5560 signed int v28; // eax@3
Ritor1
parents:
diff changeset
5561 double v29; // st6@3
Ritor1
parents:
diff changeset
5562 float v30; // ecx@3
Ritor1
parents:
diff changeset
5563 float v31; // ST2C_4@3
Ritor1
parents:
diff changeset
5564 float v32; // ST30_4@3
Ritor1
parents:
diff changeset
5565 signed int v33; // ST10_4@3
Ritor1
parents:
diff changeset
5566 signed int v34; // ST14_4@3
Ritor1
parents:
diff changeset
5567 signed int v35; // ST18_4@3
Ritor1
parents:
diff changeset
5568 signed int v36; // eax@3
Ritor1
parents:
diff changeset
5569 float v37; // ecx@3
Ritor1
parents:
diff changeset
5570 double v38; // st6@3
Ritor1
parents:
diff changeset
5571 float v39; // ST2C_4@3
Ritor1
parents:
diff changeset
5572 float v40; // ST30_4@3
Ritor1
parents:
diff changeset
5573 signed int v41; // ST10_4@3
Ritor1
parents:
diff changeset
5574 signed int v42; // ST14_4@3
Ritor1
parents:
diff changeset
5575 signed int v43; // ST18_4@3
Ritor1
parents:
diff changeset
5576 signed int v44; // eax@3
Ritor1
parents:
diff changeset
5577 double v45; // st6@3
Ritor1
parents:
diff changeset
5578 float v46; // eax@3
Ritor1
parents:
diff changeset
5579
Ritor1
parents:
diff changeset
5580 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5581 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5582 if (a2->zbuffer_depth)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5583 {
743
Ritor1
parents: 741
diff changeset
5584 //v5 = (double)a2->zbuffer_depth;
Ritor1
parents: 741
diff changeset
5585 //v6 = v5;
Ritor1
parents: 741
diff changeset
5586 //v7 = v5;
Ritor1
parents: 741
diff changeset
5587 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth);
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5588 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_1;
0
Ritor1
parents:
diff changeset
5589 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
Ritor1
parents:
diff changeset
5590 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
5591 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID;
743
Ritor1
parents: 741
diff changeset
5592 //v9 = a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5593 //v10 = a2->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5594 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
743
Ritor1
parents: 741
diff changeset
5595 //v12 = (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5596 //v13 = v12;
Ritor1
parents: 741
diff changeset
5597 //v14 = (double)(a2->uScreenSpaceY - 12);
Ritor1
parents: 741
diff changeset
5598 //v15 = v14;
Ritor1
parents: 741
diff changeset
5599 v16 = (double)( a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5600 v17 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5601 v18 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5602 v19 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5603 v20 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5604 v21 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5605 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022
0
Ritor1
parents:
diff changeset
5606 + (double)(v18 >> 16))
Ritor1
parents:
diff changeset
5607 * v16
Ritor1
parents:
diff changeset
5608 - ((double)(unsigned __int16)v19 * 0.000015259022
Ritor1
parents:
diff changeset
5609 + (double)(v19 >> 16))
Ritor1
parents:
diff changeset
5610 * v17)
743
Ritor1
parents: 741
diff changeset
5611 * v11 + (double) a2->uScreenSpaceX;
0
Ritor1
parents:
diff changeset
5612 v22 = (((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v17
Ritor1
parents:
diff changeset
5613 + ((double)(unsigned __int16)v20 * 0.000015259022 + (double)(v20 >> 16)) * v16
Ritor1
parents:
diff changeset
5614 - 12.0)
Ritor1
parents:
diff changeset
5615 * v11
Ritor1
parents:
diff changeset
5616 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5617 pBillboardRenderListD3D[v8].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5618 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5619 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v22;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5620 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 0.061758894);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5621 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5622 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5623 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
743
Ritor1
parents: 741
diff changeset
5624 v31 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5625 v32 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5626 v25 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5627 v26 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5628 v27 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5629 v28 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5630 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v25 * 0.000015259022
0
Ritor1
parents:
diff changeset
5631 + (double)(v25 >> 16))
740
Ritor1
parents: 728
diff changeset
5632 * v31
0
Ritor1
parents:
diff changeset
5633 - ((double)(unsigned __int16)v26 * 0.000015259022
Ritor1
parents:
diff changeset
5634 + (double)(v26 >> 16))
740
Ritor1
parents: 728
diff changeset
5635 * v32)
743
Ritor1
parents: 741
diff changeset
5636 * v11 + (double) a2->uScreenSpaceX;
740
Ritor1
parents: 728
diff changeset
5637 v29 = (((double)(unsigned __int16)v28 * 0.000015259022 + (double)(v28 >> 16)) * v32
Ritor1
parents: 728
diff changeset
5638 + ((double)(unsigned __int16)v27 * 0.000015259022 + (double)(v27 >> 16)) * v31
0
Ritor1
parents:
diff changeset
5639 - 12.0)
Ritor1
parents:
diff changeset
5640 * v11
Ritor1
parents:
diff changeset
5641 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5642 pBillboardRenderListD3D[v8].pQuads[1].pos.z = pRenderer->pBillboardRenderListD3D[v8].pQuads[0].pos.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5643 v30 = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5644 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v29;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5645 pBillboardRenderListD3D[v8].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5646 pBillboardRenderListD3D[v8].pQuads[1].rhw = v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5647 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5648 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5649 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
743
Ritor1
parents: 741
diff changeset
5650 v23 = (double)(a2->uScreenSpaceX - 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5651 v24 = (double)a2->uScreenSpaceY - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5652 v33 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5653 v34 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5654 v35 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5655 v36 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5656 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v33 * 0.000015259022
0
Ritor1
parents:
diff changeset
5657 + (double)(v33 >> 16))
740
Ritor1
parents: 728
diff changeset
5658 * v23
0
Ritor1
parents:
diff changeset
5659 - ((double)(unsigned __int16)v34 * 0.000015259022
Ritor1
parents:
diff changeset
5660 + (double)(v34 >> 16))
740
Ritor1
parents: 728
diff changeset
5661 * v24)
743
Ritor1
parents: 741
diff changeset
5662 * v11 + (double) a2->uScreenSpaceX;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5663 v37 = pBillboardRenderListD3D[v8].pQuads[0].pos.z;
740
Ritor1
parents: 728
diff changeset
5664 v38 = (((double)(unsigned __int16)v36 * 0.000015259022 + (double)(v36 >> 16)) * v24
Ritor1
parents: 728
diff changeset
5665 + ((double)(unsigned __int16)v35 * 0.000015259022 + (double)(v35 >> 16)) * v23
0
Ritor1
parents:
diff changeset
5666 - 12.0)
Ritor1
parents:
diff changeset
5667 * v11
Ritor1
parents:
diff changeset
5668 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5669 pBillboardRenderListD3D[v8].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5670 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v37;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5671 pBillboardRenderListD3D[v8].pQuads[2].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5672 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5673 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v38;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5674 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5675 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
743
Ritor1
parents: 741
diff changeset
5676 v39 = (double)(a2->uScreenSpaceX + 12) - (double) a2->uScreenSpaceX;
Ritor1
parents: 741
diff changeset
5677 v40 = (double)(a2->uScreenSpaceY - 25) - (double)(a2->uScreenSpaceY - 12);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5678 v41 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5679 v42 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5680 v43 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5681 v44 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5682 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v41 * 0.000015259022
0
Ritor1
parents:
diff changeset
5683 + (double)(v41 >> 16))
Ritor1
parents:
diff changeset
5684 * v39
Ritor1
parents:
diff changeset
5685 - ((double)(unsigned __int16)v42 * 0.000015259022
Ritor1
parents:
diff changeset
5686 + (double)(v42 >> 16))
Ritor1
parents:
diff changeset
5687 * v40)
743
Ritor1
parents: 741
diff changeset
5688 * v11 + (double) a2->uScreenSpaceX;
0
Ritor1
parents:
diff changeset
5689 v45 = (((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40
Ritor1
parents:
diff changeset
5690 + ((double)(unsigned __int16)v43 * 0.000015259022 + (double)(v43 >> 16)) * v39
Ritor1
parents:
diff changeset
5691 - 12.0)
Ritor1
parents:
diff changeset
5692 * v11
Ritor1
parents:
diff changeset
5693 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5694 v46 = pBillboardRenderListD3D[v8].pQuads[0].pos.z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5695 pBillboardRenderListD3D[v8].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5696 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5697 pBillboardRenderListD3D[v8].pQuads[3].rhw = pBillboardRenderListD3D[v8].pQuads[0].rhw;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5698 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse;
0
Ritor1
parents:
diff changeset
5699 pBillboardRenderListD3D[v8].pTexture = a3;
743
Ritor1
parents: 741
diff changeset
5700 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth;
0
Ritor1
parents:
diff changeset
5701 pBillboardRenderListD3D[v8].uNumVertices = 4;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5702 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v45;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5703 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5704 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
5705 }
Ritor1
parents:
diff changeset
5706 }
Ritor1
parents:
diff changeset
5707 }
Ritor1
parents:
diff changeset
5708
Ritor1
parents:
diff changeset
5709 //----- (004A3AD9) --------------------------------------------------------
Ritor1
parents:
diff changeset
5710 void Render::MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle)
Ritor1
parents:
diff changeset
5711 {
Ritor1
parents:
diff changeset
5712 double v5; // st7@2
Ritor1
parents:
diff changeset
5713 float v6; // ST28_4@2
Ritor1
parents:
diff changeset
5714 float v7; // ST00_4@2
Ritor1
parents:
diff changeset
5715 unsigned int v8; // esi@2
Ritor1
parents:
diff changeset
5716 int v9; // eax@2
Ritor1
parents:
diff changeset
5717 int v10; // ebx@2
Ritor1
parents:
diff changeset
5718 float v11; // ST34_4@2
Ritor1
parents:
diff changeset
5719 double v12; // st7@2
Ritor1
parents:
diff changeset
5720 float v13; // ST2C_4@2
Ritor1
parents:
diff changeset
5721 double v14; // st6@2
Ritor1
parents:
diff changeset
5722 float v15; // ST24_4@2
Ritor1
parents:
diff changeset
5723 float v16; // ST38_4@2
Ritor1
parents:
diff changeset
5724 float v17; // ST3C_4@2
Ritor1
parents:
diff changeset
5725 signed int v18; // ST1C_4@2
Ritor1
parents:
diff changeset
5726 int v19; // ST30_4@2
Ritor1
parents:
diff changeset
5727 signed int v20; // ST20_4@2
Ritor1
parents:
diff changeset
5728 signed int v21; // ST18_4@2
Ritor1
parents:
diff changeset
5729 signed int v22; // eax@2
Ritor1
parents:
diff changeset
5730 double v23; // st6@2
Ritor1
parents:
diff changeset
5731 float v24; // ST20_4@2
Ritor1
parents:
diff changeset
5732 float v25; // ST1C_4@2
Ritor1
parents:
diff changeset
5733 float v26; // ST38_4@2
Ritor1
parents:
diff changeset
5734 float v27; // ST3C_4@2
Ritor1
parents:
diff changeset
5735 signed int v28; // ST18_4@2
Ritor1
parents:
diff changeset
5736 signed int v29; // ST14_4@2
Ritor1
parents:
diff changeset
5737 signed int v30; // ST10_4@2
Ritor1
parents:
diff changeset
5738 signed int v31; // eax@2
Ritor1
parents:
diff changeset
5739 double v32; // st6@2
Ritor1
parents:
diff changeset
5740 float v33; // ST38_4@2
Ritor1
parents:
diff changeset
5741 float v34; // ST3C_4@2
Ritor1
parents:
diff changeset
5742 signed int v35; // ST10_4@2
Ritor1
parents:
diff changeset
5743 signed int v36; // ST14_4@2
Ritor1
parents:
diff changeset
5744 signed int v37; // ST18_4@2
Ritor1
parents:
diff changeset
5745 signed int v38; // eax@2
Ritor1
parents:
diff changeset
5746 double v39; // st6@2
Ritor1
parents:
diff changeset
5747 float v40; // ST38_4@2
Ritor1
parents:
diff changeset
5748 float v41; // ST3C_4@2
Ritor1
parents:
diff changeset
5749 signed int v42; // ST10_4@2
Ritor1
parents:
diff changeset
5750 signed int v43; // ST14_4@2
Ritor1
parents:
diff changeset
5751 signed int v44; // ST18_4@2
Ritor1
parents:
diff changeset
5752 signed int v45; // eax@2
Ritor1
parents:
diff changeset
5753 double v46; // st6@2
Ritor1
parents:
diff changeset
5754
Ritor1
parents:
diff changeset
5755 if ( this->uNumD3DSceneBegins )
Ritor1
parents:
diff changeset
5756 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5757 v5 = (double)a2->zbuffer_depth;
0
Ritor1
parents:
diff changeset
5758 v6 = v5;
Ritor1
parents:
diff changeset
5759 v7 = v5;
Ritor1
parents:
diff changeset
5760 v8 = Billboard_ProbablyAddToListAndSortByZOrder(LODWORD(v7));
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5761 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_1;
0
Ritor1
parents:
diff changeset
5762 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
Ritor1
parents:
diff changeset
5763 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
5764 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID;
0
Ritor1
parents:
diff changeset
5765 v9 = a2->uScreenSpaceX;
Ritor1
parents:
diff changeset
5766 v10 = a2->uScreenSpaceY;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5767 v11 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) * 0.000015260186 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
0
Ritor1
parents:
diff changeset
5768 v12 = (double)v9;
Ritor1
parents:
diff changeset
5769 v13 = v12;
Ritor1
parents:
diff changeset
5770 v14 = (double)(v10 - 12);
Ritor1
parents:
diff changeset
5771 v15 = v14;
Ritor1
parents:
diff changeset
5772 v16 = (double)(v9 - 12) - v12;
Ritor1
parents:
diff changeset
5773 v17 = (double)(v10 - 25) - v14;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5774 v18 = stru_5C6E00->Cos(angle);
0
Ritor1
parents:
diff changeset
5775 v19 = angle - stru_5C6E00->uIntegerHalfPi;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5776 v20 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5777 v21 = stru_5C6E00->Sin(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5778 v22 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5779 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (((double)(unsigned __int16)v18 * 0.000015259022
0
Ritor1
parents:
diff changeset
5780 + (double)(v18 >> 16))
Ritor1
parents:
diff changeset
5781 * v16
Ritor1
parents:
diff changeset
5782 - ((double)(unsigned __int16)v20 * 0.000015259022
Ritor1
parents:
diff changeset
5783 + (double)(v20 >> 16))
Ritor1
parents:
diff changeset
5784 * v17)
Ritor1
parents:
diff changeset
5785 * v11 + v13;
Ritor1
parents:
diff changeset
5786 v23 = (((double)(unsigned __int16)v22 * 0.000015259022 + (double)(v22 >> 16)) * v17
Ritor1
parents:
diff changeset
5787 + ((double)(unsigned __int16)v21 * 0.000015259022 + (double)(v21 >> 16)) * v16
Ritor1
parents:
diff changeset
5788 - 12.0)
Ritor1
parents:
diff changeset
5789 * v11
Ritor1
parents:
diff changeset
5790 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5791 pBillboardRenderListD3D[v8].pQuads[0].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5792 pBillboardRenderListD3D[v8].pQuads[0].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5793 pBillboardRenderListD3D[v8].pQuads[0].pos.y = v23;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5794 v24 = 1.0 - 1.0 / (v6 * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5795 pBillboardRenderListD3D[v8].pQuads[0].pos.z = v24;
0
Ritor1
parents:
diff changeset
5796 v25 = 1.0 / v6;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5797 pBillboardRenderListD3D[v8].pQuads[0].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5798 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5799 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
5800 v26 = (double)(a2->uScreenSpaceX - 12) - v13;
Ritor1
parents:
diff changeset
5801 v27 = (double)a2->uScreenSpaceY - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5802 v28 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5803 v29 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5804 v30 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5805 v31 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5806 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (((double)(unsigned __int16)v28 * 0.000015259022
0
Ritor1
parents:
diff changeset
5807 + (double)(v28 >> 16))
Ritor1
parents:
diff changeset
5808 * v26
Ritor1
parents:
diff changeset
5809 - ((double)(unsigned __int16)v29 * 0.000015259022
Ritor1
parents:
diff changeset
5810 + (double)(v29 >> 16))
Ritor1
parents:
diff changeset
5811 * v27)
Ritor1
parents:
diff changeset
5812 * v11 + v13;
Ritor1
parents:
diff changeset
5813 v32 = (((double)(unsigned __int16)v31 * 0.000015259022 + (double)(v31 >> 16)) * v27
Ritor1
parents:
diff changeset
5814 + ((double)(unsigned __int16)v30 * 0.000015259022 + (double)(v30 >> 16)) * v26
Ritor1
parents:
diff changeset
5815 - 12.0)
Ritor1
parents:
diff changeset
5816 * v11
Ritor1
parents:
diff changeset
5817 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5818 pBillboardRenderListD3D[v8].pQuads[1].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5819 pBillboardRenderListD3D[v8].pQuads[1].pos.y = v32;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5820 pBillboardRenderListD3D[v8].pQuads[1].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5821 pBillboardRenderListD3D[v8].pQuads[1].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5822 pBillboardRenderListD3D[v8].pQuads[1].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5823 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5824 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
0
Ritor1
parents:
diff changeset
5825 v33 = (double)(a2->uScreenSpaceX + 12) - v13;
Ritor1
parents:
diff changeset
5826 v34 = (double)a2->uScreenSpaceY - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5827 v35 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5828 v36 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5829 v37 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5830 v38 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5831 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (((double)(unsigned __int16)v35 * 0.000015259022
0
Ritor1
parents:
diff changeset
5832 + (double)(v35 >> 16))
Ritor1
parents:
diff changeset
5833 * v33
Ritor1
parents:
diff changeset
5834 - ((double)(unsigned __int16)v36 * 0.000015259022
Ritor1
parents:
diff changeset
5835 + (double)(v36 >> 16))
Ritor1
parents:
diff changeset
5836 * v34)
Ritor1
parents:
diff changeset
5837 * v11 + v13;
Ritor1
parents:
diff changeset
5838 v39 = (((double)(unsigned __int16)v38 * 0.000015259022 + (double)(v38 >> 16)) * v34
Ritor1
parents:
diff changeset
5839 + ((double)(unsigned __int16)v37 * 0.000015259022 + (double)(v37 >> 16)) * v33
Ritor1
parents:
diff changeset
5840 - 12.0)
Ritor1
parents:
diff changeset
5841 * v11
Ritor1
parents:
diff changeset
5842 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5843 pBillboardRenderListD3D[v8].pQuads[2].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5844 pBillboardRenderListD3D[v8].pQuads[2].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5845 pBillboardRenderListD3D[v8].pQuads[2].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5846 pBillboardRenderListD3D[v8].pQuads[2].diffuse = uDiffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5847 pBillboardRenderListD3D[v8].pQuads[2].pos.y = v39;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5848 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5849 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
0
Ritor1
parents:
diff changeset
5850 v40 = (double)(a2->uScreenSpaceX + 12) - v13;
Ritor1
parents:
diff changeset
5851 v41 = (double)(a2->uScreenSpaceY - 25) - v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5852 v42 = stru_5C6E00->Cos(angle);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5853 v43 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5854 v44 = stru_5C6E00->Sin(v19 + stru_5C6E00->uIntegerHalfPi);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 315
diff changeset
5855 v45 = stru_5C6E00->Cos(angle);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5856 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (((double)(unsigned __int16)v42 * 0.000015259022
0
Ritor1
parents:
diff changeset
5857 + (double)(v42 >> 16))
Ritor1
parents:
diff changeset
5858 * v40
Ritor1
parents:
diff changeset
5859 - ((double)(unsigned __int16)v43 * 0.000015259022
Ritor1
parents:
diff changeset
5860 + (double)(v43 >> 16))
Ritor1
parents:
diff changeset
5861 * v41)
Ritor1
parents:
diff changeset
5862 * v11 + v13;
Ritor1
parents:
diff changeset
5863 v46 = (((double)(unsigned __int16)v45 * 0.000015259022 + (double)(v45 >> 16)) * v41
Ritor1
parents:
diff changeset
5864 + ((double)(unsigned __int16)v44 * 0.000015259022 + (double)(v44 >> 16)) * v40
Ritor1
parents:
diff changeset
5865 - 12.0)
Ritor1
parents:
diff changeset
5866 * v11
Ritor1
parents:
diff changeset
5867 + (double)a2->uScreenSpaceY;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5868 pBillboardRenderListD3D[v8].pQuads[3].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5869 pBillboardRenderListD3D[v8].pQuads[3].pos.z = v24;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5870 pBillboardRenderListD3D[v8].pQuads[3].rhw = v25;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5871 pBillboardRenderListD3D[v8].pQuads[3].diffuse = uDiffuse;
0
Ritor1
parents:
diff changeset
5872 pBillboardRenderListD3D[v8].pTexture = a3;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5873 pBillboardRenderListD3D[v8].z_order = v6;
0
Ritor1
parents:
diff changeset
5874 pBillboardRenderListD3D[v8].uNumVertices = 4;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5875 pBillboardRenderListD3D[v8].pQuads[3].pos.y = v46;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5876 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5877 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
5878 }
Ritor1
parents:
diff changeset
5879 }
Ritor1
parents:
diff changeset
5880
Ritor1
parents:
diff changeset
5881 //----- (004A4023) --------------------------------------------------------
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5882 void Render::TransformBillboard(RenderBillboardTransform_local0 *a2, Sprite *pSprite, int dimming_level, RenderBillboard *pBillboard)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5883 {
0
Ritor1
parents:
diff changeset
5884 unsigned int v8; // esi@2
Ritor1
parents:
diff changeset
5885 double v14; // st6@14
Ritor1
parents:
diff changeset
5886 double v15; // st5@14
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5887 //unsigned int v16; // ecx@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5888 //double v17; // st7@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5889 //double v18; // st5@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5890 //double v19; // st4@16
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5891 //double v20; // st5@18
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5892 //double v21; // st4@18
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5893 //signed int v23; // [sp+18h] [bp-18h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5894 //signed int v24; // [sp+1Ch] [bp-14h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5895 //float v26; // [sp+20h] [bp-10h]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5896 //float v27; // [sp+20h] [bp-10h]@12
0
Ritor1
parents:
diff changeset
5897 float v29; // [sp+28h] [bp-8h]@5
Ritor1
parents:
diff changeset
5898 float v30; // [sp+2Ch] [bp-4h]@5
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5899 //float pSpritea; // [sp+3Ch] [bp+Ch]@5
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5900
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5901 if (!uNumD3DSceneBegins)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5902 return;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5903
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5904 v8 = Billboard_ProbablyAddToListAndSortByZOrder(a2->zbuffer_depth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5905
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5906 v30 = (a2->_screenspace_x_scaler_packedfloat & 0xFFFF) / 65530.0 + HIWORD(a2->_screenspace_x_scaler_packedfloat);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5907 v29 = (a2->_screenspace_y_scaler_packedfloat & 0xFFFF) / 65530.0 + HIWORD(a2->_screenspace_y_scaler_packedfloat);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5908
657
7747161ea5b5 RenderBillboard member rename
Nomad
parents: 653
diff changeset
5909 unsigned int diffuse = ::GetActorTintColor(dimming_level, 0, a2->zbuffer_depth, 0, pBillboard);
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5910 if (a2->sTintColor & 0x00FFFFFF && bTinting)
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5911 {
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5912 diffuse = BlendColors(a2->sTintColor, diffuse);
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5913 if (a2->sTintColor & 0xFF000000)
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5914 diffuse = 0x007F7F7F & ((unsigned int)diffuse >> 1);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5915 }
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5916
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5917 unsigned int specular = 0;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5918 if (bUsingSpecular)
2193
4842f58715ea sub_47C3D7_get_fog_related_stuff to sub_47C3D7_get_fog_specular cleanup, IsTerrainSlopeTooHigh restoring commented out min,min/max,max implementation, some small changes in OnMapLoad, sub_4465DF_check_season attempted to pick the best readabilty/maintainability tradeoff
Grumpy7
parents: 2182
diff changeset
5919 specular = sub_47C3D7_get_fog_specular(0, 0, a2->zbuffer_depth);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5920
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5921 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5922 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5923 if (a2->uFlags & 4)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5924 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5925 pBillboardRenderListD3D[v8].pQuads[0].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5926 pBillboardRenderListD3D[v8].pQuads[0].pos.x = (double)a2->uScreenSpaceX - v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5927 pBillboardRenderListD3D[v8].pQuads[0].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5928 pBillboardRenderListD3D[v8].pQuads[0].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5929 pBillboardRenderListD3D[v8].pQuads[0].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5930 pBillboardRenderListD3D[v8].pQuads[0].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5931 pBillboardRenderListD3D[v8].pQuads[0].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5932 pBillboardRenderListD3D[v8].pQuads[0].texcoord.y = 0.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5933
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5934 v14 = (double)((int)pSprite->uBufferWidth / 2 - pSprite->uAreaX);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5935 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5936 if ( a2->uFlags & 4 )
0
Ritor1
parents:
diff changeset
5937 v14 = v14 * -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5938 pBillboardRenderListD3D[v8].pQuads[1].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5939 pBillboardRenderListD3D[v8].pQuads[1].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5940 pBillboardRenderListD3D[v8].pQuads[1].pos.x = (double)a2->uScreenSpaceX - v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5941 pBillboardRenderListD3D[v8].pQuads[1].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5942 pBillboardRenderListD3D[v8].pQuads[1].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5943 pBillboardRenderListD3D[v8].pQuads[1].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5944 pBillboardRenderListD3D[v8].pQuads[1].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5945 pBillboardRenderListD3D[v8].pQuads[1].texcoord.y = 1.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5946
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5947 v14 = (double)((int)pSprite->uAreaWidth + pSprite->uAreaX + pSprite->uBufferWidth / 2 - pSprite->uBufferWidth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5948 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5949 if ( a2->uFlags & 4 )
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5950 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5951 pBillboardRenderListD3D[v8].pQuads[2].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5952 pBillboardRenderListD3D[v8].pQuads[2].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5953 pBillboardRenderListD3D[v8].pQuads[2].pos.x = (double)a2->uScreenSpaceX + v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5954 pBillboardRenderListD3D[v8].pQuads[2].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5955 pBillboardRenderListD3D[v8].pQuads[2].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5956 pBillboardRenderListD3D[v8].pQuads[2].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5957 pBillboardRenderListD3D[v8].pQuads[2].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5958 pBillboardRenderListD3D[v8].pQuads[2].texcoord.y = 1.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5959
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5960 v14 = (double)((int)pSprite->uAreaWidth + pSprite->uAreaX + pSprite->uBufferWidth / 2 - pSprite->uBufferWidth);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5961 v15 = (double)((int)pSprite->uBufferHeight - pSprite->uAreaY);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5962 if ( a2->uFlags & 4 )
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5963 v14 *= -1.0;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5964 pBillboardRenderListD3D[v8].pQuads[3].diffuse = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5965 pBillboardRenderListD3D[v8].pQuads[3].specular = specular;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5966 pBillboardRenderListD3D[v8].pQuads[3].pos.x = (double)a2->uScreenSpaceX + v14 * v30;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5967 pBillboardRenderListD3D[v8].pQuads[3].pos.y = (double)a2->uScreenSpaceY - v15 * v29;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
5968 pBillboardRenderListD3D[v8].pQuads[3].pos.z = 1.0 - 1.0 / (a2->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5969 pBillboardRenderListD3D[v8].pQuads[3].rhw = 1.0 / a2->zbuffer_depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5970 pBillboardRenderListD3D[v8].pQuads[3].texcoord.x = 1.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
5971 pBillboardRenderListD3D[v8].pQuads[3].texcoord.y = 0.0;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5972
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5973 pBillboardRenderListD3D[v8].uNumVertices = 4;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5974 pBillboardRenderListD3D[v8].pTexture = pSprite->pTexture;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5975 pBillboardRenderListD3D[v8].z_order = a2->zbuffer_depth;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5976 pBillboardRenderListD3D[v8].field_90 = a2->field_44;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5977 pBillboardRenderListD3D[v8].sZValue = a2->sZValue;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
5978 pBillboardRenderListD3D[v8].sParentBillboardID = a2->sParentBillboardID;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5979
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
5980 if (a2->sTintColor & 0xFF000000)
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5981 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Opaque_3;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
5982 else
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
5983 pBillboardRenderListD3D[v8].opacity = RenderBillboardD3D::Transparent;
0
Ritor1
parents:
diff changeset
5984 }
Ritor1
parents:
diff changeset
5985
Ritor1
parents:
diff changeset
5986
Ritor1
parents:
diff changeset
5987 //----- (004A49D0) --------------------------------------------------------
Ritor1
parents:
diff changeset
5988 void Render::DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9)
Ritor1
parents:
diff changeset
5989 {
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
5990 int absXDifference; // eax@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
5991 int absYDifference; // eax@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
5992 unsigned int smallerabsdiff; // ebx@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
5993 unsigned int largerabsdiff;
0
Ritor1
parents:
diff changeset
5994 double v16; // st7@7
Ritor1
parents:
diff changeset
5995 double v17; // st7@7
Ritor1
parents:
diff changeset
5996 double v18; // st6@7
Ritor1
parents:
diff changeset
5997 double v20; // st4@8
Ritor1
parents:
diff changeset
5998 double v21; // st4@10
Ritor1
parents:
diff changeset
5999 double v22; // st4@10
Ritor1
parents:
diff changeset
6000 double v23; // st4@10
Ritor1
parents:
diff changeset
6001 double v25; // st4@11
Ritor1
parents:
diff changeset
6002 double v26; // st4@13
Ritor1
parents:
diff changeset
6003 double v28; // st4@13
Ritor1
parents:
diff changeset
6004 RenderVertexD3D3 v29[4]; // [sp+0h] [bp-94h]@7
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6005 int xDifference; // [sp+88h] [bp-Ch]@1
0
Ritor1
parents:
diff changeset
6006 signed int v32; // [sp+8Ch] [bp-8h]@1
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6007 int yDifference; // [sp+90h] [bp-4h]@1
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6008
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6009 xDifference = bankersRounding(dstX - srcX);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6010 yDifference = bankersRounding(dstY - srcY);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6011 absYDifference = abs(yDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6012 absXDifference = abs(xDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6013 smallerabsdiff = min(absXDifference, absYDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6014 largerabsdiff = max(absXDifference, absYDifference);
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6015 v32 = (11 * smallerabsdiff >> 5) + largerabsdiff;
0
Ritor1
parents:
diff changeset
6016 v16 = 1.0 / (double)v32;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6017 v17 = (double)yDifference * v16 * a4;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6018 v18 = (double)xDifference * v16 * a4;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6019 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6020 {
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6021 v20 = a3 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6022 v25 = a7 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6023 }
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6024 else
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6025 {
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6026 v20 = a3 * 0.061758894;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6027 v25 = a7 * 0.061758894;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6028 }
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6029 v21 = 1.0 / a3;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6030 v22 = (double)yDifference * v16 * a8;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6031 v23 = (double)xDifference * v16 * a8;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6032 v26 = 1.0 - 1.0 / v25;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6033 v28 = 1.0 / a7;
0
Ritor1
parents:
diff changeset
6034 v29[0].pos.x = srcX + v17;
Ritor1
parents:
diff changeset
6035 v29[0].pos.y = srcY - v18;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6036 v29[0].pos.z = 1.0 - 1.0 / v20;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6037 v29[0].rhw = v21;
0
Ritor1
parents:
diff changeset
6038 v29[0].diffuse = -1;
Ritor1
parents:
diff changeset
6039 v29[0].specular = 0;
Ritor1
parents:
diff changeset
6040 v29[0].texcoord.x = 1.0;
Ritor1
parents:
diff changeset
6041 v29[0].texcoord.y = 0.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6042
0
Ritor1
parents:
diff changeset
6043 v29[1].pos.x = v22 + dstX;
Ritor1
parents:
diff changeset
6044 v29[1].pos.y = dstY - v23;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6045 v29[1].pos.z = v26;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6046 v29[1].rhw = v28;
0
Ritor1
parents:
diff changeset
6047 v29[1].diffuse = -16711936;
Ritor1
parents:
diff changeset
6048 v29[1].specular = 0;
Ritor1
parents:
diff changeset
6049 v29[1].texcoord.x = 1.0;
Ritor1
parents:
diff changeset
6050 v29[1].texcoord.y = 1.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6051
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6052 v29[2].pos.x = dstX - v22;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6053 v29[2].pos.y = v23 + dstY;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6054 v29[2].pos.z = v26;
0
Ritor1
parents:
diff changeset
6055 v29[2].rhw = v28;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6056 v29[2].diffuse = -1;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6057 v29[2].specular = 0;
0
Ritor1
parents:
diff changeset
6058 v29[2].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6059 v29[2].texcoord.y = 1.0;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6060
0
Ritor1
parents:
diff changeset
6061 v29[3].pos.x = srcX - v17;
Ritor1
parents:
diff changeset
6062 v29[3].pos.y = v18 + srcY;
1159
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6063 v29[3].pos.z = v29[0].pos.z;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6064 v29[3].rhw = v21;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6065 v29[3].diffuse = -1;
da80e03c677c Render::DrawProjectile cleanup (correct)
Grumpy7
parents: 1157
diff changeset
6066 v29[3].specular = 0;
0
Ritor1
parents:
diff changeset
6067 v29[3].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6068 v29[3].texcoord.y = 0.0;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6069 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6070 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6071 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6072 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6073 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6074 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0
Ritor1
parents:
diff changeset
6075 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, a9));
Ritor1
parents:
diff changeset
6076 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
6077 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
6078 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
Ritor1
parents:
diff changeset
6079 v29,
Ritor1
parents:
diff changeset
6080 4,
Ritor1
parents:
diff changeset
6081 24));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6082 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6083 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6084 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6085 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6086 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6087 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
0
Ritor1
parents:
diff changeset
6088 }
Ritor1
parents:
diff changeset
6089
Ritor1
parents:
diff changeset
6090 //----- (004A4CC9) --------------------------------------------------------
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6091 void Render::_4A4CC9_AddSomeBillboard(stru6_stru1_indoor_sw_billboard *a1, int diffuse)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6092 {
0
Ritor1
parents:
diff changeset
6093 unsigned int v5; // eax@7
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6094 // char *v7; // edx@8
0
Ritor1
parents:
diff changeset
6095 double v10; // st6@9
Ritor1
parents:
diff changeset
6096 double v11; // st6@10
Ritor1
parents:
diff changeset
6097 int v12; // ebx@13
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6098
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6099 if (a1->uNumVertices < 3)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6100 return;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6101
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6102 float depth = 1000000.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6103 for (uint i = 0; i < a1->uNumVertices; ++i)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6104 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6105 if (a1->field_104[i].z < depth)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6106 depth = a1->field_104[i * 4].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6107 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6108
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6109 v5 = Billboard_ProbablyAddToListAndSortByZOrder(depth);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6110 pBillboardRenderListD3D[v5].field_90 = 0;
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1999
diff changeset
6111 pBillboardRenderListD3D[v5].sParentBillboardID = -1;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6112 pBillboardRenderListD3D[v5].opacity = RenderBillboardD3D::Opaque_2;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6113 pBillboardRenderListD3D[v5].pTexture = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6114 pBillboardRenderListD3D[v5].uNumVertices = a1->uNumVertices;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6115 pBillboardRenderListD3D[v5].z_order = depth;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6116
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6117 for (uint i = 0; i < a1->uNumVertices; ++i)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6118 {
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6119 pBillboardRenderListD3D[v5].pQuads[i].pos.x = a1->field_104[i].x;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6120 pBillboardRenderListD3D[v5].pQuads[i].pos.y = a1->field_104[i].y;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6121
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6122 v10 = a1->field_104[i].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6123 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6124 v11 = v10 * 0.061758894;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6125 else
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1633
diff changeset
6126 v11 = v10 * 1000.0 / (double)pODMRenderParams->shading_dist_mist;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6127 pBillboardRenderListD3D[v5].pQuads[i].pos.z = 1.0 - 1.0 / v11;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6128 pBillboardRenderListD3D[v5].pQuads[i].rhw = 1.0 / a1->field_104[i].z;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6129
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6130 if (diffuse & 0xFF000000)
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6131 v12 = a1->field_104[i].diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6132 else
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6133 v12 = diffuse;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6134 pBillboardRenderListD3D[v5].pQuads[i].diffuse = v12;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6135 pBillboardRenderListD3D[v5].pQuads[i].specular = 0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6136
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6137 pBillboardRenderListD3D[v5].pQuads[i].texcoord.x = 0.0;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
6138 pBillboardRenderListD3D[v5].pQuads[i].texcoord.y = 0.0;
0
Ritor1
parents:
diff changeset
6139 }
Ritor1
parents:
diff changeset
6140 }
Ritor1
parents:
diff changeset
6141
Ritor1
parents:
diff changeset
6142 //----- (004A4DE1) --------------------------------------------------------
Ritor1
parents:
diff changeset
6143 bool Render::LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture)
Ritor1
parents:
diff changeset
6144 {
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6145 // HRESULT v12; // eax@14
0
Ritor1
parents:
diff changeset
6146 unsigned __int16 *v13; // ecx@19
Ritor1
parents:
diff changeset
6147 unsigned __int16 *v14; // eax@19
Ritor1
parents:
diff changeset
6148 DWORD v15; // edx@20
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6149 // HRESULT v16; // eax@23
0
Ritor1
parents:
diff changeset
6150 stru350 Dst; // [sp+Ch] [bp-F8h]@12
Ritor1
parents:
diff changeset
6151
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
6152 HWLTexture* pHWLTexture = pD3DBitmaps.LoadTexture(pName, bMipMaps);
0
Ritor1
parents:
diff changeset
6153 if ( pHWLTexture )
Ritor1
parents:
diff changeset
6154 {
Ritor1
parents:
diff changeset
6155 bMipMaps = !strncmp(pName, "HDWTR", 5);
Ritor1
parents:
diff changeset
6156 if ( !pRenderD3D->CreateTexture(
Ritor1
parents:
diff changeset
6157 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6158 pHWLTexture->uHeight,
Ritor1
parents:
diff changeset
6159 pOutSurface,
Ritor1
parents:
diff changeset
6160 pOutTexture,
Ritor1
parents:
diff changeset
6161 true,
Ritor1
parents:
diff changeset
6162 bMipMaps,
Ritor1
parents:
diff changeset
6163 uMinDeviceTextureDim) )
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
6164 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0);
0
Ritor1
parents:
diff changeset
6165 //v10 = *pOutSurface;
Ritor1
parents:
diff changeset
6166 //v11 = 0;
1578
56cc81b1ed49 workaround for crash on startup
Beri Levi berilevi@gmail.com
parents: 1574
diff changeset
6167 if (bMipMaps)
0
Ritor1
parents:
diff changeset
6168 {
Ritor1
parents:
diff changeset
6169 Dst._450DDE();
Ritor1
parents:
diff changeset
6170 //v20 = 0;
Ritor1
parents:
diff changeset
6171 Dst._450DF1(&stru_4EFCBC, &stru_4EFCBC);
Ritor1
parents:
diff changeset
6172
Ritor1
parents:
diff changeset
6173 IDirectDrawSurface4 *pNextSurf = *pOutSurface;
Ritor1
parents:
diff changeset
6174 while ( 1 )
Ritor1
parents:
diff changeset
6175 {
Ritor1
parents:
diff changeset
6176 DDSCAPS2 v19;
Ritor1
parents:
diff changeset
6177 memset(&v19, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
6178 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
6179
Ritor1
parents:
diff changeset
6180 DDSURFACEDESC2 desc;
Ritor1
parents:
diff changeset
6181 memset(&desc, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
6182 desc.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
6183
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
6184 if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
0
Ritor1
parents:
diff changeset
6185 {
1831
Ritor1
parents: 1799
diff changeset
6186 Dst.sub_451007_scale_image_bicubic(
0
Ritor1
parents:
diff changeset
6187 pHWLTexture->pPixels,
Ritor1
parents:
diff changeset
6188 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6189 pHWLTexture->uHeight,
Ritor1
parents:
diff changeset
6190 pHWLTexture->uWidth,
Ritor1
parents:
diff changeset
6191 (unsigned short *)desc.lpSurface,
Ritor1
parents:
diff changeset
6192 desc.dwWidth,
Ritor1
parents:
diff changeset
6193 desc.dwHeight,
Ritor1
parents:
diff changeset
6194 desc.lPitch >> 1,
Ritor1
parents:
diff changeset
6195 0,
1831
Ritor1
parents: 1799
diff changeset
6196 0);
0
Ritor1
parents:
diff changeset
6197 ErrD3D(pNextSurf->Unlock(0));
Ritor1
parents:
diff changeset
6198 //bMipMaps = 0x4D86ACu;
Ritor1
parents:
diff changeset
6199 }
Ritor1
parents:
diff changeset
6200 if (FAILED(pNextSurf->GetAttachedSurface(&v19, &pNextSurf)))
Ritor1
parents:
diff changeset
6201 break;
Ritor1
parents:
diff changeset
6202 //v10 = (IDirectDrawSurface4 *)pName;
Ritor1
parents:
diff changeset
6203 //v11 = 0;
Ritor1
parents:
diff changeset
6204 }
Ritor1
parents:
diff changeset
6205 //v20 = -1;
Ritor1
parents:
diff changeset
6206 //nullsub_1();
Ritor1
parents:
diff changeset
6207 }
Ritor1
parents:
diff changeset
6208 else
Ritor1
parents:
diff changeset
6209 {
Ritor1
parents:
diff changeset
6210 DDSCAPS2 v19;
Ritor1
parents:
diff changeset
6211 memset(&v19, 0, sizeof(DDSCAPS2));
Ritor1
parents:
diff changeset
6212 v19.dwCaps = DDSCAPS_TEXTURE | DDSCAPS_MIPMAP;
Ritor1
parents:
diff changeset
6213
Ritor1
parents:
diff changeset
6214 DDSURFACEDESC2 desc;
Ritor1
parents:
diff changeset
6215 memset(&desc, 0, sizeof(DDSURFACEDESC2));
Ritor1
parents:
diff changeset
6216 desc.dwSize = sizeof(DDSURFACEDESC2);
Ritor1
parents:
diff changeset
6217
168
ee11772d0ad2 New sky (turn on -new_sky console command)
Nomad
parents: 144
diff changeset
6218 if ( LockSurface_DDraw4(*pOutSurface, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
0
Ritor1
parents:
diff changeset
6219 {
Ritor1
parents:
diff changeset
6220 bMipMaps = 0;
Ritor1
parents:
diff changeset
6221 v13 = pHWLTexture->pPixels;
Ritor1
parents:
diff changeset
6222 v14 = (unsigned __int16 *)desc.lpSurface;
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6223 for(int bMipMaps = 0; bMipMaps < desc.dwHeight; bMipMaps++)
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6224 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6225 for (v15 = 0; v15 < desc.dwWidth; v15++)
0
Ritor1
parents:
diff changeset
6226 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6227 *v14 = *v13;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6228 ++v14;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6229 ++v13;
0
Ritor1
parents:
diff changeset
6230 }
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6231 v14 += (desc.lPitch >> 1) - desc.dwWidth;
0
Ritor1
parents:
diff changeset
6232 }
Ritor1
parents:
diff changeset
6233 ErrD3D((*pOutSurface)->Unlock(0));
Ritor1
parents:
diff changeset
6234 }
Ritor1
parents:
diff changeset
6235 }
Ritor1
parents:
diff changeset
6236 delete [] pHWLTexture->pPixels;
Ritor1
parents:
diff changeset
6237 delete pHWLTexture;
Ritor1
parents:
diff changeset
6238 return true;
Ritor1
parents:
diff changeset
6239 }
Ritor1
parents:
diff changeset
6240 return false;
Ritor1
parents:
diff changeset
6241 }
Ritor1
parents:
diff changeset
6242
Ritor1
parents:
diff changeset
6243 //----- (004A5048) --------------------------------------------------------
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6244 bool Render::MoveSpriteToDevice( Sprite *pSprite )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6245 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6246
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6247 HWLTexture *sprite_texture; // eax@1
0
Ritor1
parents:
diff changeset
6248 unsigned __int16 *v9; // edx@5
Ritor1
parents:
diff changeset
6249 LPVOID v10; // eax@5
Ritor1
parents:
diff changeset
6250 DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4
Ritor1
parents:
diff changeset
6251
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6252 sprite_texture = pD3DSprites.LoadTexture(pSprite->pName, pSprite->uPaletteID);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6253 if ( sprite_texture )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6254 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6255 pSprite->uAreaX = sprite_texture->uAreaX;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6256 pSprite->uAreaY = sprite_texture->uAreaY;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6257 pSprite->uBufferWidth = sprite_texture->uBufferWidth;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6258 pSprite->uBufferHeight = sprite_texture->uBufferHeight;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6259 pSprite->uAreaWidth = sprite_texture->uAreaWidth;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6260 pSprite->uAreaHeight = sprite_texture->uAreaHeigth;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6261 //v6 = v3->uMinDeviceTextureDim;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
6262 //v7 = v3->pRenderD3D;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6263 if (!pRenderD3D->CreateTexture(sprite_texture->uWidth, sprite_texture->uHeight, &pSprite->pTextureSurface, &pSprite->pTexture, 1u, 0, uMinDeviceTextureDim))
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents: 1544
diff changeset
6264 Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0);
0
Ritor1
parents:
diff changeset
6265 //pSprite = v2->pTextureSurface;
Ritor1
parents:
diff changeset
6266 //pSprite = (Sprite *)pSprite->pName;
Ritor1
parents:
diff changeset
6267 //v8 = pSprite;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6268 memset(&Dst, 0, sizeof(DDSURFACEDESC2));
0
Ritor1
parents:
diff changeset
6269 Dst.dwSize = 124;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6270 if ( LockSurface_DDraw4((IDirectDrawSurface4 *)pSprite->pTextureSurface, &Dst, DDLOCK_WAIT | DDLOCK_WRITEONLY) )
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6271 {
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6272 v9 = sprite_texture->pPixels;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6273 v10 = Dst.lpSurface;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6274 for (int i=0; i<sprite_texture->uHeight; ++i)
0
Ritor1
parents:
diff changeset
6275 {
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6276 for (int j=0; j<sprite_texture->uWidth/2; ++j)
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6277 {
0
Ritor1
parents:
diff changeset
6278 *(int *)v10 = *(int *)v9;
Ritor1
parents:
diff changeset
6279 v9 += 2;
Ritor1
parents:
diff changeset
6280 v10 = (char *)v10 + 4;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6281 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6282 v10 = (char *)v10+Dst.lPitch-sprite_texture->uWidth*2;
0
Ritor1
parents:
diff changeset
6283 }
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6284 ErrD3D(pSprite->pTextureSurface->Unlock(0));
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6285 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6286 free(sprite_texture->pPixels);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6287 free(sprite_texture);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6288 return true;
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6289 }
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
6290 return false;
0
Ritor1
parents:
diff changeset
6291 }
Ritor1
parents:
diff changeset
6292
Ritor1
parents:
diff changeset
6293 //----- (004A51CB) --------------------------------------------------------
Ritor1
parents:
diff changeset
6294 void Render::BeginScene()
Ritor1
parents:
diff changeset
6295 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6296 //Render *v1; // esi@1
0
Ritor1
parents:
diff changeset
6297 unsigned int v2; // eax@1
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6298 /*int v3; // eax@5
0
Ritor1
parents:
diff changeset
6299 unsigned __int16 **v4; // edi@6
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6300 char *v5; // ebx@7*/
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6301 // DDSURFACEDESC2 Dst; // [sp+Ch] [bp-7Ch]@4
0
Ritor1
parents:
diff changeset
6302
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6303 //v1 = this;
0
Ritor1
parents:
diff changeset
6304 v2 = this->uNumSceneBegins;
Ritor1
parents:
diff changeset
6305 this->uNumSceneBegins = v2 + 1;
Ritor1
parents:
diff changeset
6306 if ( !v2 )
Ritor1
parents:
diff changeset
6307 {
Ritor1
parents:
diff changeset
6308 if ( this->pRenderD3D )
Ritor1
parents:
diff changeset
6309 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6310 /*if ( this->bColorKeySupported )
0
Ritor1
parents:
diff changeset
6311 {
Ritor1
parents:
diff changeset
6312 memset(&Dst, 0, 0x7Cu);
Ritor1
parents:
diff changeset
6313 Dst.dwSize = 124;
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6314 if ( LockSurface_DDraw4(this->pColorKeySurface4, &Dst, 0x800 | DDLOCK_WAIT) )
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6315 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6316 this->pTargetSurface = (unsigned __int16 *)Dst.lpSurface;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6317 this->uTargetSurfacePitch = Dst.lPitch >> 1;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6318 this->field_18_locked_pitch = Dst.lPitch >> 1;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6319 }
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6320 --this->uNumSceneBegins;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6321 }*/
0
Ritor1
parents:
diff changeset
6322 }
Ritor1
parents:
diff changeset
6323 else
Ritor1
parents:
diff changeset
6324 {
Ritor1
parents:
diff changeset
6325 if ( !this->pTargetSurface )
Ritor1
parents:
diff changeset
6326 {
Ritor1
parents:
diff changeset
6327 LockRenderSurface((void **)&this->pTargetSurface, &this->uTargetSurfacePitch);
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
6328 /*if ( this->pTargetSurface )
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6329 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6330 this->field_18_locked_pitch = this->uTargetSurfacePitch;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
6331 }*/
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6332 --this->uNumSceneBegins;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6333 }
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6334 }
0
Ritor1
parents:
diff changeset
6335 RestoreFrontBuffer();
Ritor1
parents:
diff changeset
6336 }
Ritor1
parents:
diff changeset
6337 }
Ritor1
parents:
diff changeset
6338
Ritor1
parents:
diff changeset
6339 //----- (004A527D) --------------------------------------------------------
Ritor1
parents:
diff changeset
6340 void Render::EndScene()
Ritor1
parents:
diff changeset
6341 {
1151
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6342 if ( this->uNumSceneBegins )
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6343 {
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6344 this->uNumSceneBegins--;
4eca5bb63dc0 some small rendering cleanups - if+do while to for, unnecessary variable removal
Grumpy7
parents: 1117
diff changeset
6345 if ( !this->uNumSceneBegins )
0
Ritor1
parents:
diff changeset
6346 {
Ritor1
parents:
diff changeset
6347 if ( this->pRenderD3D )
Ritor1
parents:
diff changeset
6348 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6349 /*if ( this->bColorKeySupported )
0
Ritor1
parents:
diff changeset
6350 {
Ritor1
parents:
diff changeset
6351 this->pTargetSurface = 0;
Ritor1
parents:
diff changeset
6352 this->uTargetSurfacePitch = 0;
Ritor1
parents:
diff changeset
6353 this->field_18_locked_pitch = 0;
Ritor1
parents:
diff changeset
6354 ErrD3D(this->pColorKeySurface4->Unlock(0));
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6355 }*/
0
Ritor1
parents:
diff changeset
6356 }
Ritor1
parents:
diff changeset
6357 else
Ritor1
parents:
diff changeset
6358 {
Ritor1
parents:
diff changeset
6359 this->pTargetSurface = 0;
Ritor1
parents:
diff changeset
6360 this->uTargetSurfacePitch = 0;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
6361 //this->field_18_locked_pitch = 0;
0
Ritor1
parents:
diff changeset
6362 UnlockBackBuffer();
Ritor1
parents:
diff changeset
6363 }
Ritor1
parents:
diff changeset
6364 }
Ritor1
parents:
diff changeset
6365 }
Ritor1
parents:
diff changeset
6366 }
Ritor1
parents:
diff changeset
6367
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6368 //----- (004A52F1) --------------------------------------------------------
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6369 void Render::ScreenFade(unsigned int color, float t)
0
Ritor1
parents:
diff changeset
6370 {
Ritor1
parents:
diff changeset
6371 unsigned int v3; // esi@1
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6372 //double v4; // st7@2
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6373 //double v5; // st7@6
0
Ritor1
parents:
diff changeset
6374 double v6; // st6@6
Ritor1
parents:
diff changeset
6375 unsigned int v7; // eax@6
Ritor1
parents:
diff changeset
6376 double v8; // st5@6
Ritor1
parents:
diff changeset
6377 double v9; // st4@6
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6378 // HRESULT v10; // eax@6
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6379 // HRESULT v11; // eax@6
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6380 // unsigned int result; // eax@6
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6381 // unsigned int v13; // eax@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6382 // unsigned __int16 *v14; // ecx@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6383 // int *v15; // eax@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6384 // unsigned int v16; // ecx@8
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6385 // __int16 v17; // ax@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6386 // int v18; // esi@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6387 // float v19; // edi@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6388 // void *v20; // esi@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6389 // int v21; // edx@10
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6390 // int v22; // ecx@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6391 // int v23; // edx@12
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6392 // __int16 v24; // ax@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6393 // int v25; // esi@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6394 // float v26; // edi@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6395 // char *v27; // esi@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6396 // int v28; // edx@15
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6397 // int v29; // ecx@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6398 // int v30; // edx@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6399 // int v31; // [sp-Ch] [bp-ACh]@11
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6400 // int v32; // [sp-Ch] [bp-ACh]@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6401 // const char *v33; // [sp+0h] [bp-A0h]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6402 // int v34; // [sp+4h] [bp-9Ch]@0
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6403 // unsigned int v35; // [sp+8h] [bp-98h]@0
0
Ritor1
parents:
diff changeset
6404 RenderVertexD3D3 v36[4]; // [sp+Ch] [bp-94h]@6
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6405 // unsigned int v37; // [sp+8Ch] [bp-14h]@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6406 // int v38; // [sp+90h] [bp-10h]@7
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6407 // double v39; // [sp+94h] [bp-Ch]@6
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6408 int v40; // [sp+9Ch] [bp-4h]@6
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6409
0
Ritor1
parents:
diff changeset
6410 v3 = 0;
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6411
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6412 //{
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6413 if (t > 1.0f)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6414 t = 1.0f;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6415 else if (t < 0.0f)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6416 t = 0.0f;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6417
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6418 v40 = (char)floorf(t * 255.0f + 0.5f);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6419 //v5 = (double)(signed int)pViewport->uViewportTL_X;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6420 v36[0].pos.x = pViewport->uViewportTL_X;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6421 v6 = (double)(signed int)pViewport->uViewportTL_Y;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6422 v7 = color | (v40 << 24);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6423 //this_ = pViewport->uViewportBR_Y + 1;
0
Ritor1
parents:
diff changeset
6424 v36[0].specular = 0;
Ritor1
parents:
diff changeset
6425 v36[0].pos.y = v6;
Ritor1
parents:
diff changeset
6426 v36[0].diffuse = v7;
Ritor1
parents:
diff changeset
6427 v36[1].diffuse = v7;
Ritor1
parents:
diff changeset
6428 v36[0].pos.z = 0.0;
Ritor1
parents:
diff changeset
6429 v36[2].diffuse = v7;
Ritor1
parents:
diff changeset
6430 v36[3].diffuse = v7;
Ritor1
parents:
diff changeset
6431 v36[0].rhw = 1.0;
Ritor1
parents:
diff changeset
6432 v36[1].specular = 0;
Ritor1
parents:
diff changeset
6433 v36[0].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6434 v36[2].specular = 0;
Ritor1
parents:
diff changeset
6435 v36[3].specular = 0;
Ritor1
parents:
diff changeset
6436 v36[0].texcoord.y = 0.0;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6437 v36[1].pos.x = pViewport->uViewportTL_X;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6438 v8 = (double)(pViewport->uViewportBR_Y + 1);
0
Ritor1
parents:
diff changeset
6439 v36[1].pos.y = v8;
Ritor1
parents:
diff changeset
6440 v36[1].pos.z = 0.0;
Ritor1
parents:
diff changeset
6441 v36[1].rhw = 1.0;
Ritor1
parents:
diff changeset
6442 v36[1].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6443 v36[1].texcoord.y = 0.0;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6444 v9 = (double)(signed int)pViewport->uViewportBR_X;
0
Ritor1
parents:
diff changeset
6445 v36[2].pos.x = v9;
Ritor1
parents:
diff changeset
6446 v36[2].pos.y = v8;
Ritor1
parents:
diff changeset
6447 v36[2].pos.z = 0.0;
Ritor1
parents:
diff changeset
6448 v36[2].rhw = 1.0;
Ritor1
parents:
diff changeset
6449 v36[2].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6450 v36[2].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
6451 v36[3].pos.x = v9;
Ritor1
parents:
diff changeset
6452 v36[3].pos.y = v6;
Ritor1
parents:
diff changeset
6453 v36[3].pos.z = 0.0;
Ritor1
parents:
diff changeset
6454 v36[3].rhw = 1.0;
Ritor1
parents:
diff changeset
6455 v36[3].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
6456 v36[3].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
6457 ErrD3D(pRenderD3D->pDevice->SetTexture(0, 0));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6458 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6459 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6460 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6461 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6462 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6463 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6464 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS));
0
Ritor1
parents:
diff changeset
6465 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
6466 D3DPT_TRIANGLEFAN,
Ritor1
parents:
diff changeset
6467 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
Ritor1
parents:
diff changeset
6468 v36,
Ritor1
parents:
diff changeset
6469 4,
Ritor1
parents:
diff changeset
6470 28));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6471 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6472 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6473 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6474 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6475 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
6476 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS));
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6477 /*}
0
Ritor1
parents:
diff changeset
6478 else
Ritor1
parents:
diff changeset
6479 {
Ritor1
parents:
diff changeset
6480 v40 = (1.0 - a3) * 65536.0;
Ritor1
parents:
diff changeset
6481 v39 = v40 + 6.7553994e15;
Ritor1
parents:
diff changeset
6482 LODWORD(a3) = LODWORD(v39);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6483 v38 = (signed int)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) >> 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6484 HIDWORD(v39) = pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6485 v13 = pViewport->uViewportTL_X + ecx0->uTargetSurfacePitch - pViewport->uViewportBR_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
6486 v14 = &ecx0->pTargetSurface[pViewport->uViewportTL_X + pViewport->uViewportTL_Y * ecx0->uTargetSurfacePitch];
0
Ritor1
parents:
diff changeset
6487 v37 = 2 * v13;
Ritor1
parents:
diff changeset
6488 LODWORD(v40) = (int)v14;
Ritor1
parents:
diff changeset
6489
Ritor1
parents:
diff changeset
6490 int __i = 0;
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
6491 v15 = dword_F1B430.data();
0
Ritor1
parents:
diff changeset
6492 do
Ritor1
parents:
diff changeset
6493 {
Ritor1
parents:
diff changeset
6494 v16 = v3;
Ritor1
parents:
diff changeset
6495 v3 += LODWORD(a3);
Ritor1
parents:
diff changeset
6496 dword_F1B430[__i++] = v16 >> 16;
Ritor1
parents:
diff changeset
6497 }
Ritor1
parents:
diff changeset
6498 //while ( (signed int)v15 < (signed int)&Aureal3D_SplashScreen );
Ritor1
parents:
diff changeset
6499 while (__i < 32);
Ritor1
parents:
diff changeset
6500
Ritor1
parents:
diff changeset
6501 if ( pRenderer->uTargetGBits == 6 )
Ritor1
parents:
diff changeset
6502 {
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6503 v17 = sr_42690D_colors_cvt(this_);
0
Ritor1
parents:
diff changeset
6504 v18 = (65536 - LODWORD(a3)) * (v17 & 0x1F);
Ritor1
parents:
diff changeset
6505 this_ = (((65536 - LODWORD(a3)) * (unsigned __int16)(v17 & 0xF800) & 0xF800FFFF | v18 & 0x1F0000 | (65536 - LODWORD(a3)) * (v17 & 0x7E0) & 0x7E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (unsigned __int16)(v17 & 0xF800) & 0xF800FFFF | v18 & 0x1F0000 | (65536 - LODWORD(a3)) * (v17 & 0x7E0) & 0x7E00000u) >> 16);
Ritor1
parents:
diff changeset
6506 v19 = v40;
Ritor1
parents:
diff changeset
6507 v20 = off_4EFDB0;
Ritor1
parents:
diff changeset
6508 v21 = HIDWORD(v39);
Ritor1
parents:
diff changeset
6509 do
Ritor1
parents:
diff changeset
6510 {
Ritor1
parents:
diff changeset
6511 v22 = v38;
Ritor1
parents:
diff changeset
6512 v31 = v21;
Ritor1
parents:
diff changeset
6513 do
Ritor1
parents:
diff changeset
6514 {
Ritor1
parents:
diff changeset
6515 v23 = (*(int *)((char *)v20
Ritor1
parents:
diff changeset
6516 + ((((unsigned __int16)(*(short *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | (*(int *)((char *)v20 + ((((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0x7C00000u) >> 20)) << 22) | ((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0xF81FF81F;
Ritor1
parents:
diff changeset
6517 result = this_
Ritor1
parents:
diff changeset
6518 + (*((int *)v20
Ritor1
parents:
diff changeset
6519 + (((unsigned __int8)(*((char *)v20
Ritor1
parents:
diff changeset
6520 + ((((unsigned __int16)(*(short *)((char *)v20
Ritor1
parents:
diff changeset
6521 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | *(unsigned int *)LODWORD(v19) & 0x1F) & 0x1F)) | (*(int *)((char *)v20 + ((v23 & 0x1F0000u) >> 14)) << 16) | ((*(int *)((char *)v20 + ((((unsigned __int16)(*(short *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | *(unsigned int *)LODWORD(v19) & 0x7FF) & 0x7C0u) >> 4)) << 6) | (*(int *)((char *)v20 + ((((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0x7C00000u) >> 20)) << 22) | ((*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF800u) >> 9)) << 11) | (*(int *)((char *)v20 + ((*(unsigned int *)LODWORD(v19) & 0xF8000000u) >> 25)) << 27) | *(unsigned int *)LODWORD(v19) & 0x7FF07FF) & 0xF81FF81F) & 0xFFE0FFE0);
Ritor1
parents:
diff changeset
6522 *(unsigned int *)LODWORD(v19) = result;
Ritor1
parents:
diff changeset
6523 LODWORD(v19) += 4;
Ritor1
parents:
diff changeset
6524 --v22;
Ritor1
parents:
diff changeset
6525 }
Ritor1
parents:
diff changeset
6526 while ( v22 );
Ritor1
parents:
diff changeset
6527 LODWORD(v19) += v37;
Ritor1
parents:
diff changeset
6528 v21 = v31 - 1;
Ritor1
parents:
diff changeset
6529 }
Ritor1
parents:
diff changeset
6530 while ( v31 != 1 );
Ritor1
parents:
diff changeset
6531 }
Ritor1
parents:
diff changeset
6532 else
Ritor1
parents:
diff changeset
6533 {
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6534 v24 = sr_4268E3_smthn_to_a1r5g5b5(this_);
0
Ritor1
parents:
diff changeset
6535 v25 = (65536 - LODWORD(a3)) * (v24 & 0x1F);
Ritor1
parents:
diff changeset
6536 this_ = (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3))
Ritor1
parents:
diff changeset
6537 * (v24 & 0x3E0) & 0x3E00000u) >> 16 << 16) | (((65536 - LODWORD(a3)) * (v24 & 0x7C00) & 0x7C000000 | v25 & 0x1F0000 | (65536 - LODWORD(a3)) * (v24 & 0x3E0) & 0x3E00000u) >> 16);
Ritor1
parents:
diff changeset
6538 v26 = v40;
Ritor1
parents:
diff changeset
6539 v27 = (char *)off_4EFDB0;
Ritor1
parents:
diff changeset
6540 v28 = HIDWORD(v39);
Ritor1
parents:
diff changeset
6541 do
Ritor1
parents:
diff changeset
6542 {
Ritor1
parents:
diff changeset
6543 v29 = v38;
Ritor1
parents:
diff changeset
6544 v32 = v28;
Ritor1
parents:
diff changeset
6545 do
Ritor1
parents:
diff changeset
6546 {
Ritor1
parents:
diff changeset
6547 v30 = 32
Ritor1
parents:
diff changeset
6548 * *(int *)&v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3] | (*(int *)&v27[(((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x3E00000u) >> 19] << 21) | ((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x7C1F7C1F;
Ritor1
parents:
diff changeset
6549 result = this_
Ritor1
parents:
diff changeset
6550 + (*(int *)&v27[4
Ritor1
parents:
diff changeset
6551 * (((unsigned __int8)(32
Ritor1
parents:
diff changeset
6552 * v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3]) | *(unsigned int *)LODWORD(v26) & 0x1F) & 0x1F)] | (*(int *)&v27[(v30 & 0x1F0000u) >> 14] << 16) | (32 * *(int *)&v27[(((unsigned __int16)(*(short *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | *(unsigned int *)LODWORD(v26) & 0x3FF) & 0x3E0u) >> 3] | (*(int *)&v27[(((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x3E00000u) >> 19] << 21) | ((*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C00u) >> 8] << 10) | (*(int *)&v27[(*(unsigned int *)LODWORD(v26) & 0x7C000000u) >> 24] << 26) | *(unsigned int *)LODWORD(v26) & 0x3FF03FF) & 0x7C1F7C1F) & 0xFFE0FFE0);
Ritor1
parents:
diff changeset
6553 *(unsigned int *)LODWORD(v26) = result;
Ritor1
parents:
diff changeset
6554 LODWORD(v26) += 4;
Ritor1
parents:
diff changeset
6555 --v29;
Ritor1
parents:
diff changeset
6556 }
Ritor1
parents:
diff changeset
6557 while ( v29 );
Ritor1
parents:
diff changeset
6558 LODWORD(v26) += v37;
Ritor1
parents:
diff changeset
6559 v28 = v32 - 1;
Ritor1
parents:
diff changeset
6560 }
Ritor1
parents:
diff changeset
6561 while ( v32 != 1 );
Ritor1
parents:
diff changeset
6562 }
1574
2d9c8f609a3c Here and there cleanings.
Nomad
parents: 1545
diff changeset
6563 }*/
0
Ritor1
parents:
diff changeset
6564 }
Ritor1
parents:
diff changeset
6565
Ritor1
parents:
diff changeset
6566 //----- (004A5B81) --------------------------------------------------------
727
da130dd3092a Big time Travel ouverhaul
Nomad
parents: 710
diff changeset
6567 void Render::SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW)
0
Ritor1
parents:
diff changeset
6568 {
Ritor1
parents:
diff changeset
6569 this->bClip = 1;
Ritor1
parents:
diff changeset
6570 this->uClipY = uY;
Ritor1
parents:
diff changeset
6571 this->uClipX = uX;
Ritor1
parents:
diff changeset
6572 this->uClipW = uW;
Ritor1
parents:
diff changeset
6573 this->uClipZ = uZ;
Ritor1
parents:
diff changeset
6574 }
Ritor1
parents:
diff changeset
6575
Ritor1
parents:
diff changeset
6576 //----- (004A5BB6) --------------------------------------------------------
727
da130dd3092a Big time Travel ouverhaul
Nomad
parents: 710
diff changeset
6577 void Render::ResetTextureClipRect()
0
Ritor1
parents:
diff changeset
6578 {
Ritor1
parents:
diff changeset
6579 this->uClipY = 0;
Ritor1
parents:
diff changeset
6580 this->uClipX = 0;
Ritor1
parents:
diff changeset
6581 this->bClip = 1;
Ritor1
parents:
diff changeset
6582 this->uClipW = 480;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
6583 this->uClipZ = window->GetWidth();
0
Ritor1
parents:
diff changeset
6584 }
Ritor1
parents:
diff changeset
6585
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6586 unsigned __int32 Color32(unsigned __int16 color16)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6587 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6588 unsigned __int32 c = color16;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6589 unsigned int b = (c & 31) * 8;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6590 unsigned int g = ((c >> 5) & 63) * 4;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6591 unsigned int r = ((c >> 11) & 31) * 8;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6592
2078
66cbc97b31fa fix transparent fonts
Gloval
parents: 2074
diff changeset
6593 return (r << 16) | (g << 8) | b;//
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6594 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6595
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6596 //----- (0040DEF3) --------------------------------------------------------
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6597 unsigned __int16 Color16(unsigned __int32 r, unsigned __int32 g, unsigned __int32 b)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6598 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6599 //return ((unsigned int)b >> (8 - LOBYTE(pRenderer->uTargetBBits))) | pRenderer->uTargetGMask & (g << (LOBYTE(pRenderer->uTargetGBits) +
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6600 // LOBYTE(pRenderer->uTargetBBits) - 8)) | pRenderer->uTargetRMask & (r << (LOBYTE(pRenderer->uTargetGBits) +
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6601 // LOBYTE(pRenderer->uTargetRBits) + LOBYTE(pRenderer->uTargetBBits) - 8));
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6602 return (b >> (8 - 5)) |
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6603 0x7E0 & (g << (6 + 5 - 8)) |
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6604 0xF800 & (r << (6 + 5 + 5 - 8));
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6605 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6606
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6607
0
Ritor1
parents:
diff changeset
6608 //----- (004A5BE3) --------------------------------------------------------
Ritor1
parents:
diff changeset
6609 void Render::DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4)
Ritor1
parents:
diff changeset
6610 {
Ritor1
parents:
diff changeset
6611 int v4; // edi@3
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6612 //unsigned __int16 *v5; // edx@3
0
Ritor1
parents:
diff changeset
6613 unsigned __int16 *v6; // esi@3
Ritor1
parents:
diff changeset
6614 unsigned int v8; // eax@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6615 unsigned int v9; // ebx@5
0
Ritor1
parents:
diff changeset
6616 unsigned int v11; // eax@7
Ritor1
parents:
diff changeset
6617 unsigned int v12; // ebx@8
Ritor1
parents:
diff changeset
6618 unsigned int v15; // eax@14
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6619 int v19; // [sp+10h] [bp-8h]@3
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6620 // unsigned int uOutXa; // [sp+20h] [bp+8h]@16
0
Ritor1
parents:
diff changeset
6621 int v23; // [sp+28h] [bp+10h]@3
Ritor1
parents:
diff changeset
6622
Ritor1
parents:
diff changeset
6623 if ( this->uNumSceneBegins && a4 )
Ritor1
parents:
diff changeset
6624 {
Ritor1
parents:
diff changeset
6625 v4 = a4->uWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6626 //v5 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch];
0
Ritor1
parents:
diff changeset
6627 v6 = a4->pPixels;
Ritor1
parents:
diff changeset
6628 v23 = a4->uHeight;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6629 v19 = v4;
0
Ritor1
parents:
diff changeset
6630 if ( this->bClip )
Ritor1
parents:
diff changeset
6631 {
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6632 if ( (signed int)uOutX < (signed int)this->uClipX )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6633 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6634 v8 = this->uClipX - uOutX;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6635 v9 = uOutX - this->uClipX;
0
Ritor1
parents:
diff changeset
6636 v8 *= 2;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6637 v4 += v9;
0
Ritor1
parents:
diff changeset
6638 v6 = (unsigned __int16 *)((char *)v6 + v8);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6639 //v5 = (unsigned __int16 *)((char *)v5 + v8);
0
Ritor1
parents:
diff changeset
6640 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6641 if ( (signed int)uOutY < (signed int)this->uClipY )
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6642 {
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6643 v11 = this->uClipY - uOutY;
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6644 v6 += v19 * v11;
0
Ritor1
parents:
diff changeset
6645 v23 += uOutY - this->uClipY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6646 //v5 += this->uTargetSurfacePitch * v11;
0
Ritor1
parents:
diff changeset
6647 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6648 v12 = max(this->uClipX, uOutX);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6649 if ( (signed int)(v4 + v12) > (signed int)this->uClipZ )
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6650 {
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6651 v4 = this->uClipZ - max(this->uClipX, uOutX);
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6652 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6653 v15 = max(this->uClipY, uOutY);
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6654 if ( (signed int)(v15 + v23) > (signed int)this->uClipW )
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6655 {
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6656 v23 = this->uClipW - max(this->uClipY, uOutY);
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6657 }
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6658 }
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6659
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6660 for (int y = 0; y < v23; y++)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6661 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6662 for (int x = 0; x < v4; x++)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6663 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6664 WritePixel16(uOutX + x, uOutY + y, *v6);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6665 //*v5 = *v6;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6666 //++v5;
1152
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6667 ++v6;
d8b455c81917 Render::DrawTextureRGB cleanup
Grumpy7
parents: 1151
diff changeset
6668 }
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6669 v6 += v19 - v4;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6670 //v5 += this->uTargetSurfacePitch - v4;
0
Ritor1
parents:
diff changeset
6671 }
Ritor1
parents:
diff changeset
6672 }
Ritor1
parents:
diff changeset
6673 }
Ritor1
parents:
diff changeset
6674
Ritor1
parents:
diff changeset
6675 //----- (004A5D33) --------------------------------------------------------
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6676 void Render::CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture)
0
Ritor1
parents:
diff changeset
6677 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6678 //unsigned __int16 *v7; // ebx@3
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6679 int full_width; // ecx@3
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6680 int full_height; // edi@3
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6681 //int v23; // edi@23
0
Ritor1
parents:
diff changeset
6682 unsigned __int16 *pTexturea; // [sp+28h] [bp+18h]@3
Ritor1
parents:
diff changeset
6683
Ritor1
parents:
diff changeset
6684 if ( this->uNumSceneBegins && pTexture )
Ritor1
parents:
diff changeset
6685 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6686 /*auto v7 = this->pTargetSurface;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6687 if (FORCE_16_BITS)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6688 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 2);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6689 else
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6690 v7 = (unsigned __int32 *)((char *)v7 + (pX + pY * this->uTargetSurfacePitch) * 4);*/
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6691 full_width = pTexture->uWidth - move_X;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6692 full_height = pTexture->uHeight - move_Y;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6693 pTexturea = &pTexture->pPixels[move_X + move_Y * pTexture->uWidth];
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6694 if ( this->bClip )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6695 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6696 if ( pX < this->uClipX )//åñëè êàäð âûõîäèò çà ïðàâóþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6697 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6698 pTexturea = (unsigned __int16 *)((char *)pTexturea + (2 * (this->uClipX - pX)));
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6699 full_width += pX - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6700 //v7 = (unsigned __int32 *)((char *)v7 + ((FORCE_16_BITS ? 2 : 4) * (this->uClipX - pX)));
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6701 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6702 if ( pY < this->uClipY )//åñëè êàäð âûõîäèò çà âåðõíþþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6703 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6704 pTexturea += pTexture->uWidth * (this->uClipY - pY);
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6705 full_height += pY - this->uClipY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6706 //v7 = (unsigned __int32 *)((char *)v7 + (FORCE_16_BITS ? 2 : 4) * this->uTargetSurfacePitch * (this->uClipY - pY));
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6707 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6708 if ( this->uClipX < pX )//åñëè ïðàâàÿ ãðàíèöà îêíà ìåíüøå õ êîîðäèíàòû êàäðà
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6709 this->uClipX = pX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6710 if ( this->uClipY < pY )//åñëè âåðõíÿÿ ãðàíèöà îêíà ìåíüøå y êîîðäèíàòû êàäðà
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6711 this->uClipY = pY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6712 if ( (full_width + this->uClipX) > this->uClipZ )//åñëè øèðèíà êàäðà âûõîäèò çà ïðàâóþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6713 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6714 if ( this->uClipX < pX )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6715 this->uClipX = pX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6716 full_width = this->uClipZ - this->uClipX;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6717 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6718 if ( (full_height + this->uClipY) > this->uClipW )//åñëè âûñîòà êàäðà âûõîäèò çà íèæíþþ ãðàíèöó
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6719 {
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6720 if ( this->uClipY < pY )
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6721 this->uClipY = pY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6722 full_height = this->uClipW - this->uClipY;
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6723 }
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6724 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6725
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6726 for (int y = 0; y < full_height; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6727 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6728 for (int x = 0; x < full_width; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6729 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6730 if ( *pTexturea != Color16(0, 0xFFu, 0xFFu) )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6731 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6732 WritePixel16(pX + x, pY + y, *pTexturea);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6733 /*if (FORCE_16_BITS)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6734 *(unsigned __int16 *)v7 = *pTexturea;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6735 else
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6736 *(unsigned __int32 *)v7 = r5g6b5_2_r8g8b8(*pTexturea);*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6737 }
0
Ritor1
parents:
diff changeset
6738 ++pTexturea;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6739 //++v7;
0
Ritor1
parents:
diff changeset
6740 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6741 //v7 += this->uTargetSurfacePitch - full_width;
1675
f1cdf8c062d4 MainMenuUI_Credits_Loop() and CreditsTextureScroll
Ritor1
parents: 1666
diff changeset
6742 pTexturea = (unsigned __int16 *)((char *)pTexturea + 2 * (pTexture->uWidth - full_width));
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6743 }
0
Ritor1
parents:
diff changeset
6744 }
Ritor1
parents:
diff changeset
6745 }
Ritor1
parents:
diff changeset
6746
Ritor1
parents:
diff changeset
6747 //----- (004A6E7E) --------------------------------------------------------
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
6748 void Render::DrawTranslucent(unsigned int a2, unsigned int a3, Texture *a4)
0
Ritor1
parents:
diff changeset
6749 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6750 //unsigned __int16 *v4; // eax@4
0
Ritor1
parents:
diff changeset
6751 int v5; // edx@4
Ritor1
parents:
diff changeset
6752 unsigned int v6; // edi@4
Ritor1
parents:
diff changeset
6753 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
6754 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
6755 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
6756 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
6757 unsigned int v11; // ebx@9
Ritor1
parents:
diff changeset
6758 unsigned int v12; // esi@11
Ritor1
parents:
diff changeset
6759 unsigned int v13; // edx@12
Ritor1
parents:
diff changeset
6760 unsigned int v14; // ebx@15
Ritor1
parents:
diff changeset
6761 unsigned int v15; // esi@17
Ritor1
parents:
diff changeset
6762 unsigned int v16; // edi@18
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6763 // char v17; // zf@29
0
Ritor1
parents:
diff changeset
6764 int v18; // [sp+14h] [bp-Ch]@4
Ritor1
parents:
diff changeset
6765 int v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
6766 unsigned __int8 *v20; // [sp+1Ch] [bp-4h]@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6767 // int v21; // [sp+28h] [bp+8h]@25
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6768 // int v22; // [sp+28h] [bp+8h]@34
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6769 // unsigned int v23; // [sp+2Ch] [bp+Ch]@23
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
6770 // unsigned int v24; // [sp+2Ch] [bp+Ch]@32
0
Ritor1
parents:
diff changeset
6771
Ritor1
parents:
diff changeset
6772 if ( this->uNumSceneBegins && a4 && a4->pPalette16 )
Ritor1
parents:
diff changeset
6773 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6774 //v4 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
6775 v20 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
6776 v5 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
6777 v6 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
6778 v19 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
6779 v18 = a4->uTextureWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6780 int clipped_out_x = a2;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6781 int clipped_out_y = a3;
0
Ritor1
parents:
diff changeset
6782 if ( this->bClip )
Ritor1
parents:
diff changeset
6783 {
Ritor1
parents:
diff changeset
6784 v7 = this->uClipX;
Ritor1
parents:
diff changeset
6785 if ( (signed int)a2 < (signed int)v7 )
Ritor1
parents:
diff changeset
6786 {
Ritor1
parents:
diff changeset
6787 v8 = v7 - a2;
Ritor1
parents:
diff changeset
6788 v20 += v8;
Ritor1
parents:
diff changeset
6789 v19 += a2 - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6790 //v4 += v8;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6791 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
6792 }
Ritor1
parents:
diff changeset
6793 v9 = this->uClipY;
Ritor1
parents:
diff changeset
6794 if ( (signed int)a3 < (signed int)v9 )
Ritor1
parents:
diff changeset
6795 {
Ritor1
parents:
diff changeset
6796 v10 = v9 - a3;
Ritor1
parents:
diff changeset
6797 v20 += v18 * v10;
Ritor1
parents:
diff changeset
6798 v6 = a3 - this->uClipY + a4->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6799 //v4 += this->uTargetSurfacePitch * v10;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6800 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
6801 }
Ritor1
parents:
diff changeset
6802 v11 = this->uClipX;
Ritor1
parents:
diff changeset
6803 v5 = v19;
Ritor1
parents:
diff changeset
6804 if ( (signed int)v11 < (signed int)a2 )
Ritor1
parents:
diff changeset
6805 v11 = a2;
Ritor1
parents:
diff changeset
6806 v12 = this->uClipZ;
Ritor1
parents:
diff changeset
6807 if ( (signed int)(v19 + v11) > (signed int)v12 )
Ritor1
parents:
diff changeset
6808 {
Ritor1
parents:
diff changeset
6809 v13 = this->uClipX;
Ritor1
parents:
diff changeset
6810 if ( (signed int)v13 < (signed int)a2 )
Ritor1
parents:
diff changeset
6811 v13 = a2;
Ritor1
parents:
diff changeset
6812 v5 = v12 - v13;
Ritor1
parents:
diff changeset
6813 }
Ritor1
parents:
diff changeset
6814 v14 = this->uClipY;
Ritor1
parents:
diff changeset
6815 if ( (signed int)v14 < (signed int)a3 )
Ritor1
parents:
diff changeset
6816 v14 = a3;
Ritor1
parents:
diff changeset
6817 v15 = this->uClipW;
Ritor1
parents:
diff changeset
6818 if ( (signed int)(v6 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
6819 {
Ritor1
parents:
diff changeset
6820 v16 = this->uClipY;
Ritor1
parents:
diff changeset
6821 if ( (signed int)v16 < (signed int)a3 )
Ritor1
parents:
diff changeset
6822 v16 = a3;
Ritor1
parents:
diff changeset
6823 v6 = v15 - v16;
Ritor1
parents:
diff changeset
6824 }
Ritor1
parents:
diff changeset
6825 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6826
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6827 for (int y = 0; y < v6; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6828 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6829 for (int x = 0; x < v5; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6830 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6831 if ( *v20 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6832 WritePixel16(clipped_out_x + x, clipped_out_y + y, ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6833 ++v20;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6834 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6835 v20 += v18 - v5;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6836 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6837
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6838 /*if ( pRenderer->uTargetGBits == 5 )
0
Ritor1
parents:
diff changeset
6839 {
Ritor1
parents:
diff changeset
6840 if ( (signed int)v6 > 0 )
Ritor1
parents:
diff changeset
6841 {
Ritor1
parents:
diff changeset
6842 v23 = v6;
Ritor1
parents:
diff changeset
6843 do
Ritor1
parents:
diff changeset
6844 {
Ritor1
parents:
diff changeset
6845 if ( v5 > 0 )
Ritor1
parents:
diff changeset
6846 {
Ritor1
parents:
diff changeset
6847 v21 = v5;
Ritor1
parents:
diff changeset
6848 do
Ritor1
parents:
diff changeset
6849 {
Ritor1
parents:
diff changeset
6850 if ( *v20 )
Ritor1
parents:
diff changeset
6851 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x3DEF;
Ritor1
parents:
diff changeset
6852 ++v4;
Ritor1
parents:
diff changeset
6853 ++v20;
Ritor1
parents:
diff changeset
6854 --v21;
Ritor1
parents:
diff changeset
6855 }
Ritor1
parents:
diff changeset
6856 while ( v21 );
Ritor1
parents:
diff changeset
6857 }
Ritor1
parents:
diff changeset
6858 v20 += v18 - v5;
Ritor1
parents:
diff changeset
6859 v17 = v23-- == 1;
Ritor1
parents:
diff changeset
6860 v4 += this->uTargetSurfacePitch - v5;
Ritor1
parents:
diff changeset
6861 }
Ritor1
parents:
diff changeset
6862 while ( !v17 );
Ritor1
parents:
diff changeset
6863 }
Ritor1
parents:
diff changeset
6864 }
Ritor1
parents:
diff changeset
6865 else
Ritor1
parents:
diff changeset
6866 {
Ritor1
parents:
diff changeset
6867 if ( (signed int)v6 > 0 )
Ritor1
parents:
diff changeset
6868 {
Ritor1
parents:
diff changeset
6869 v24 = v6;
Ritor1
parents:
diff changeset
6870 do
Ritor1
parents:
diff changeset
6871 {
Ritor1
parents:
diff changeset
6872 if ( v5 > 0 )
Ritor1
parents:
diff changeset
6873 {
Ritor1
parents:
diff changeset
6874 v22 = v5;
Ritor1
parents:
diff changeset
6875 do
Ritor1
parents:
diff changeset
6876 {
Ritor1
parents:
diff changeset
6877 if ( *v20 )
Ritor1
parents:
diff changeset
6878 *v4 = ((unsigned int)a4->pPalette16[*v20] >> 1) & 0x7BEF;
Ritor1
parents:
diff changeset
6879 ++v4;
Ritor1
parents:
diff changeset
6880 ++v20;
Ritor1
parents:
diff changeset
6881 --v22;
Ritor1
parents:
diff changeset
6882 }
Ritor1
parents:
diff changeset
6883 while ( v22 );
Ritor1
parents:
diff changeset
6884 }
Ritor1
parents:
diff changeset
6885 v20 += v18 - v5;
Ritor1
parents:
diff changeset
6886 v17 = v24-- == 1;
Ritor1
parents:
diff changeset
6887 v4 += this->uTargetSurfacePitch - v5;
Ritor1
parents:
diff changeset
6888 }
Ritor1
parents:
diff changeset
6889 while ( !v17 );
Ritor1
parents:
diff changeset
6890 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6891 }*/
0
Ritor1
parents:
diff changeset
6892 }
Ritor1
parents:
diff changeset
6893 }
Ritor1
parents:
diff changeset
6894
Ritor1
parents:
diff changeset
6895 //----- (004A6DF5) --------------------------------------------------------
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6896 void Render::_4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, Vec2_int_ *pBitmapXY, void *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7)
0
Ritor1
parents:
diff changeset
6897 {
2219
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6898 int width; // ecx@3
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6899 unsigned __int16 *pixels; // ebx@4
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6900 int height; // esi@4
0
Ritor1
parents:
diff changeset
6901
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6902 if ( !pBitmap || !pTarget)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6903 return;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6904
2219
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6905 width = a7->z - a7->x;
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6906 height = a7->w - a7->y;
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6907 pixels = (unsigned short *)pTarget + a7->x + uTargetPitch * a7->y;
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6908 for ( int y = 0; y < height; ++y )
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6909 {
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6910 for ( int x = 0; x < width; ++x )
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6911 {
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6912 WritePixel16(a7->x + x, a7->y + y, *pixels);
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6913 ++pixels;
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6914 }
e6771956e74a for mouse
Ritor1
parents: 2217
diff changeset
6915 pixels += uTargetPitch - width;
2093
52415f8bf7c2 RasterLine2D (continue)
Ritor1
parents: 2092
diff changeset
6916 }
0
Ritor1
parents:
diff changeset
6917 }
Ritor1
parents:
diff changeset
6918
Ritor1
parents:
diff changeset
6919 //----- (004A6D87) --------------------------------------------------------
Ritor1
parents:
diff changeset
6920 void Render::FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16)
Ritor1
parents:
diff changeset
6921 {
Ritor1
parents:
diff changeset
6922 if (!uNumSceneBegins)
Ritor1
parents:
diff changeset
6923 return;
Ritor1
parents:
diff changeset
6924
Ritor1
parents:
diff changeset
6925 unsigned __int32 twoColors = (uColor16 << 16) | uColor16;
Ritor1
parents:
diff changeset
6926 for (uint y = 0; y < uHeight; ++y)
Ritor1
parents:
diff changeset
6927 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6928 void *pDst = (char *)pTargetSurface + (FORCE_16_BITS ? 2 : 4) * (uX + (y + uY) * uTargetSurfacePitch);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6929
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6930 memset32(pDst,
2098
7810cb3a5fb7 Popup window in MainMenu not shown
Ritor1
parents: 2097
diff changeset
6931 FORCE_16_BITS ? twoColors : 0xFF000000 | Color32(uColor16), // two colors per int (16bit) or 1 (32bit)
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6932 uWidth / (FORCE_16_BITS ? 2 : 1)); // two pixels per int (16bit) or 1 (32bit)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6933
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6934 if (FORCE_16_BITS && uWidth & 1) // we may miss one pixel for 16bit
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6935 ((unsigned __int16 *)pTargetSurface)[uX + uWidth - 1 + (y + uY) * uTargetSurfacePitch] = uColor16;
0
Ritor1
parents:
diff changeset
6936 }
Ritor1
parents:
diff changeset
6937 }
Ritor1
parents:
diff changeset
6938
Ritor1
parents:
diff changeset
6939 //----- (004A6C4F) --------------------------------------------------------
2073
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
6940 void Render::DrawText(signed int uOutX, signed int uOutY, unsigned __int8 *pFontPixels, unsigned int uCharWidth,
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
6941 unsigned int uCharHeight, unsigned __int16 *pFontPalette,
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
6942 unsigned __int16 uFaceColor, unsigned __int16 uShadowColor)
0
Ritor1
parents:
diff changeset
6943 {
Ritor1
parents:
diff changeset
6944 unsigned int v9; // edi@2
Ritor1
parents:
diff changeset
6945 unsigned int v10; // esi@2
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6946 //unsigned __int16 *v11; // eax@2
0
Ritor1
parents:
diff changeset
6947 unsigned int v12; // ebx@3
Ritor1
parents:
diff changeset
6948 signed int v13; // edx@5
Ritor1
parents:
diff changeset
6949 int v14; // edx@6
Ritor1
parents:
diff changeset
6950 signed int v15; // ebx@7
Ritor1
parents:
diff changeset
6951 unsigned int v16; // edx@9
Ritor1
parents:
diff changeset
6952 signed int v17; // edi@10
Ritor1
parents:
diff changeset
6953 signed int v18; // ebx@13
Ritor1
parents:
diff changeset
6954 unsigned int v19; // edx@15
Ritor1
parents:
diff changeset
6955 signed int v20; // esi@16
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6956 //unsigned int v21; // esi@22
0
Ritor1
parents:
diff changeset
6957 unsigned __int16 v22; // dx@24
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6958 //char v23; // zf@28
0
Ritor1
parents:
diff changeset
6959 unsigned __int8 *v24; // [sp+Ch] [bp-4h]@2
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6960 //unsigned int uOutXa; // [sp+18h] [bp+8h]@20
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6961
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6962 if (!this->uNumSceneBegins)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6963 return;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6964
0
Ritor1
parents:
diff changeset
6965 v9 = uCharWidth;
Ritor1
parents:
diff changeset
6966 v10 = uCharHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6967 //v11 = &this->pTargetSurface[uOutX + uOutY * this->uTargetSurfacePitch];
0
Ritor1
parents:
diff changeset
6968 v24 = pFontPixels;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6969
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6970 int clipped_out_x = uOutX, clipped_out_y = uOutY;
0
Ritor1
parents:
diff changeset
6971 if ( this->bClip )
Ritor1
parents:
diff changeset
6972 {
Ritor1
parents:
diff changeset
6973 v12 = this->uClipX;
Ritor1
parents:
diff changeset
6974 if ( uOutX < (signed int)v12 )
Ritor1
parents:
diff changeset
6975 {
Ritor1
parents:
diff changeset
6976 v24 = &pFontPixels[v12 - uOutX];
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6977 //v11 += v12 - uOutX;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6978 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
6979 v9 = uCharWidth + uOutX - v12;
Ritor1
parents:
diff changeset
6980 }
Ritor1
parents:
diff changeset
6981 v13 = this->uClipY;
Ritor1
parents:
diff changeset
6982 if ( uOutY < v13 )
Ritor1
parents:
diff changeset
6983 {
Ritor1
parents:
diff changeset
6984 v14 = v13 - uOutY;
Ritor1
parents:
diff changeset
6985 v24 += uCharWidth * v14;
Ritor1
parents:
diff changeset
6986 v10 = uCharHeight + uOutY - this->uClipY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6987 //v11 += this->uTargetSurfacePitch * v14;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
6988 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
6989 }
Ritor1
parents:
diff changeset
6990 v15 = this->uClipX;
Ritor1
parents:
diff changeset
6991 if ( v15 < uOutX )
Ritor1
parents:
diff changeset
6992 v15 = uOutX;
Ritor1
parents:
diff changeset
6993 v16 = this->uClipZ;
Ritor1
parents:
diff changeset
6994 if ( (signed int)(v9 + v15) > (signed int)v16 )
Ritor1
parents:
diff changeset
6995 {
Ritor1
parents:
diff changeset
6996 v17 = this->uClipX;
Ritor1
parents:
diff changeset
6997 if ( v17 < uOutX )
Ritor1
parents:
diff changeset
6998 v17 = uOutX;
Ritor1
parents:
diff changeset
6999 v9 = v16 - v17;
Ritor1
parents:
diff changeset
7000 }
Ritor1
parents:
diff changeset
7001 v18 = this->uClipY;
Ritor1
parents:
diff changeset
7002 if ( v18 < uOutY )
Ritor1
parents:
diff changeset
7003 v18 = uOutY;
Ritor1
parents:
diff changeset
7004 v19 = this->uClipW;
Ritor1
parents:
diff changeset
7005 if ( (signed int)(v10 + v18) > (signed int)v19 )
Ritor1
parents:
diff changeset
7006 {
Ritor1
parents:
diff changeset
7007 v20 = this->uClipY;
Ritor1
parents:
diff changeset
7008 if ( v20 < uOutY )
Ritor1
parents:
diff changeset
7009 v20 = uOutY;
Ritor1
parents:
diff changeset
7010 v10 = v19 - v20;
Ritor1
parents:
diff changeset
7011 }
Ritor1
parents:
diff changeset
7012 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7013
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7014 for (int y = 0; y < v10; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7015 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7016 for (int x = 0; x < v9; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7017 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7018 if (*v24)
0
Ritor1
parents:
diff changeset
7019 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7020 v22 = uShadowColor;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7021 if ( *v24 != 1 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7022 v22 = uFaceColor;
2073
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
7023 WritePixel16(clipped_out_x + x, clipped_out_y + y, v22);
0
Ritor1
parents:
diff changeset
7024 }
2073
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
7025 ++v24;
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
7026 }
38bf1c70fc70 some text rendering fix
Gloval
parents: 2069
diff changeset
7027 v24 += uCharWidth - v9;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7028 //v23 = uOutXa-- == 1;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7029 //v11 += this->uTargetSurfacePitch - v9;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7030 }
0
Ritor1
parents:
diff changeset
7031 }
Ritor1
parents:
diff changeset
7032
Ritor1
parents:
diff changeset
7033 //----- (004A6A68) --------------------------------------------------------
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7034 void Render::GetLeather(unsigned int a2, unsigned int a3, Texture *a4, __int16 height)
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7035 {
0
Ritor1
parents:
diff changeset
7036 Texture tex; // [sp+Ch] [bp-48h]@1
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7037
0
Ritor1
parents:
diff changeset
7038 memcpy(&tex, a4, sizeof(tex));
1496
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7039 tex.uTextureHeight = a4->uTextureHeight - height;
ab6bf38b2940 UIGame.cpp cleaning(continue)
Ritor1
parents: 1458
diff changeset
7040 if ( (signed __int16)tex.uTextureHeight > 0 )
0
Ritor1
parents:
diff changeset
7041 DrawTextureIndexed(a2, a3, &tex);
Ritor1
parents:
diff changeset
7042 }
Ritor1
parents:
diff changeset
7043
Ritor1
parents:
diff changeset
7044 //----- (004A6AB1) --------------------------------------------------------
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7045 void Render::DrawTextPalette( int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8 )
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7046 {
0
Ritor1
parents:
diff changeset
7047 int v8; // edi@2
Ritor1
parents:
diff changeset
7048 unsigned int v9; // esi@2
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7049 //unsigned __int16 *v10; // eax@2
0
Ritor1
parents:
diff changeset
7050 unsigned char *v11; // edx@2
Ritor1
parents:
diff changeset
7051 unsigned int v12; // ebx@3
Ritor1
parents:
diff changeset
7052 signed int v13; // edx@5
Ritor1
parents:
diff changeset
7053 int v14; // edx@6
Ritor1
parents:
diff changeset
7054 signed int v15; // ebx@7
Ritor1
parents:
diff changeset
7055 unsigned int v16; // edx@9
Ritor1
parents:
diff changeset
7056 signed int v17; // edi@10
Ritor1
parents:
diff changeset
7057 signed int v18; // ebx@13
Ritor1
parents:
diff changeset
7058 unsigned int v19; // edx@15
Ritor1
parents:
diff changeset
7059 signed int v20; // esi@16
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7060 // int v21; // ebx@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7061 // char v22; // zf@28
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7062 // int v23; // ebx@31
0
Ritor1
parents:
diff changeset
7063 unsigned __int16 v24; // si@35
Ritor1
parents:
diff changeset
7064 int v25; // [sp+Ch] [bp-4h]@2
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7065 // int v26; // [sp+1Ch] [bp+Ch]@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7066 // int v27; // [sp+1Ch] [bp+Ch]@33
0
Ritor1
parents:
diff changeset
7067 unsigned int v28; // [sp+20h] [bp+10h]@30
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7068 // unsigned int v29; // [sp+24h] [bp+14h]@22
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7069 // unsigned int v30; // [sp+24h] [bp+14h]@31
0
Ritor1
parents:
diff changeset
7070
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
7071 int a2 = x;
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
7072 int a3 = y;
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
7073 uint a6 = uFontHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7074 if (!this->uNumSceneBegins)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7075 return;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7076
0
Ritor1
parents:
diff changeset
7077 v8 = a5;
Ritor1
parents:
diff changeset
7078 v9 = a6;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7079 //v10 = &pTargetSurface[x + y * uTargetSurfacePitch];
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7080 v11 = (unsigned char *)font_pixels;
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7081 v25 = (int)font_pixels;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7082 int clipped_out_x = x;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7083 int clipped_out_y = y;
0
Ritor1
parents:
diff changeset
7084 if ( this->bClip )
Ritor1
parents:
diff changeset
7085 {
Ritor1
parents:
diff changeset
7086 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7087 if ( a2 < (signed int)v12 )
Ritor1
parents:
diff changeset
7088 {
1268
2929c4406d2c guiwindow funcs cleanup
Gloval
parents: 1262
diff changeset
7089 v25 = v12 - a2 + (int)font_pixels;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7090 //v10 += v12 - a2;
0
Ritor1
parents:
diff changeset
7091 v8 = a5 + a2 - v12;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7092 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
7093 }
Ritor1
parents:
diff changeset
7094 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7095 if ( a3 < v13 )
Ritor1
parents:
diff changeset
7096 {
Ritor1
parents:
diff changeset
7097 v14 = v13 - a3;
Ritor1
parents:
diff changeset
7098 v25 += a5 * v14;
Ritor1
parents:
diff changeset
7099 v9 = a6 + a3 - this->uClipY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7100 //v10 += this->uTargetSurfacePitch * v14;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7101 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
7102 }
Ritor1
parents:
diff changeset
7103 v15 = this->uClipX;
Ritor1
parents:
diff changeset
7104 if ( v15 < a2 )
Ritor1
parents:
diff changeset
7105 v15 = a2;
Ritor1
parents:
diff changeset
7106 v16 = this->uClipZ;
Ritor1
parents:
diff changeset
7107 if ( v8 + v15 > (signed int)v16 )
Ritor1
parents:
diff changeset
7108 {
Ritor1
parents:
diff changeset
7109 v17 = this->uClipX;
Ritor1
parents:
diff changeset
7110 if ( v17 < a2 )
Ritor1
parents:
diff changeset
7111 v17 = a2;
Ritor1
parents:
diff changeset
7112 v8 = v16 - v17;
Ritor1
parents:
diff changeset
7113 }
Ritor1
parents:
diff changeset
7114 v18 = this->uClipY;
Ritor1
parents:
diff changeset
7115 if ( v18 < a3 )
Ritor1
parents:
diff changeset
7116 v18 = a3;
Ritor1
parents:
diff changeset
7117 v19 = this->uClipW;
Ritor1
parents:
diff changeset
7118 if ( (signed int)(v9 + v18) > (signed int)v19 )
Ritor1
parents:
diff changeset
7119 {
Ritor1
parents:
diff changeset
7120 v20 = this->uClipY;
Ritor1
parents:
diff changeset
7121 if ( v20 < a3 )
Ritor1
parents:
diff changeset
7122 v20 = a3;
Ritor1
parents:
diff changeset
7123 v9 = v19 - v20;
Ritor1
parents:
diff changeset
7124 }
Ritor1
parents:
diff changeset
7125 v11 = (unsigned char *)v25;
Ritor1
parents:
diff changeset
7126 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7127
0
Ritor1
parents:
diff changeset
7128 if ( a8 )
Ritor1
parents:
diff changeset
7129 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7130 v28 = 0x7FF; // 16bit pRenderer->uTargetGMask | pRenderer->uTargetBMask;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7131 for (int dy = 0; dy < v9; ++dy)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7132 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7133 for (int dx = 0; dx < v8; ++dx)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7134 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7135 if ( *v11 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7136 v24 = pPalette[*v11];
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7137 else
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7138 v24 = v28;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7139 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, v24);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7140 //*v10 = v24;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7141 //++v10;
2074
121316212c1c more text fix
Gloval
parents: 2073
diff changeset
7142 ++v11;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7143 //--v27;
2074
121316212c1c more text fix
Gloval
parents: 2073
diff changeset
7144
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7145 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7146 v11 += a5 - v8;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7147 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7148 /*if ( (signed int)v9 > 0 )
0
Ritor1
parents:
diff changeset
7149 {
Ritor1
parents:
diff changeset
7150 v23 = a5;
Ritor1
parents:
diff changeset
7151 v30 = v9;
Ritor1
parents:
diff changeset
7152 do
Ritor1
parents:
diff changeset
7153 {
Ritor1
parents:
diff changeset
7154 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7155 {
Ritor1
parents:
diff changeset
7156 v27 = v8;
Ritor1
parents:
diff changeset
7157 do
Ritor1
parents:
diff changeset
7158 {
Ritor1
parents:
diff changeset
7159 if ( *v11 )
Ritor1
parents:
diff changeset
7160 v24 = pPalette[*v11];
Ritor1
parents:
diff changeset
7161 else
Ritor1
parents:
diff changeset
7162 v24 = v28;
Ritor1
parents:
diff changeset
7163 *v10 = v24;
Ritor1
parents:
diff changeset
7164 ++v10;
Ritor1
parents:
diff changeset
7165 ++v11;
Ritor1
parents:
diff changeset
7166 --v27;
Ritor1
parents:
diff changeset
7167 }
Ritor1
parents:
diff changeset
7168 while ( v27 );
Ritor1
parents:
diff changeset
7169 }
Ritor1
parents:
diff changeset
7170 v11 += v23 - v8;
Ritor1
parents:
diff changeset
7171 v22 = v30-- == 1;
Ritor1
parents:
diff changeset
7172 v10 += this->uTargetSurfacePitch - v8;
Ritor1
parents:
diff changeset
7173 }
Ritor1
parents:
diff changeset
7174 while ( !v22 );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7175 }*/
0
Ritor1
parents:
diff changeset
7176 }
Ritor1
parents:
diff changeset
7177 else
Ritor1
parents:
diff changeset
7178 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7179 for (int dy = 0; dy < v9; ++dy)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7180 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7181 for (int dx = 0; dx < v8; ++dx)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7182 {
2074
121316212c1c more text fix
Gloval
parents: 2073
diff changeset
7183 if ( *v11 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7184 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, pPalette[*v11]);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7185 //*v10 = v24;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7186 //++v10;
2074
121316212c1c more text fix
Gloval
parents: 2073
diff changeset
7187 ++v11;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7188 //--v27;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7189 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7190 v11 += a5 - v8;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7191 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7192
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7193 /*if ( (signed int)v9 > 0 )
0
Ritor1
parents:
diff changeset
7194 {
Ritor1
parents:
diff changeset
7195 v21 = a5;
Ritor1
parents:
diff changeset
7196 v29 = v9;
Ritor1
parents:
diff changeset
7197 do
Ritor1
parents:
diff changeset
7198 {
Ritor1
parents:
diff changeset
7199 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7200 {
Ritor1
parents:
diff changeset
7201 v26 = v8;
Ritor1
parents:
diff changeset
7202 do
Ritor1
parents:
diff changeset
7203 {
Ritor1
parents:
diff changeset
7204 if ( *v11 )
Ritor1
parents:
diff changeset
7205 *v10 = pPalette[*v11];
Ritor1
parents:
diff changeset
7206 ++v10;
Ritor1
parents:
diff changeset
7207 ++v11;
Ritor1
parents:
diff changeset
7208 --v26;
Ritor1
parents:
diff changeset
7209 }
Ritor1
parents:
diff changeset
7210 while ( v26 );
Ritor1
parents:
diff changeset
7211 }
Ritor1
parents:
diff changeset
7212 v11 += v21 - v8;
Ritor1
parents:
diff changeset
7213 v22 = v29-- == 1;
Ritor1
parents:
diff changeset
7214 v10 += this->uTargetSurfacePitch - v8;
Ritor1
parents:
diff changeset
7215 }
Ritor1
parents:
diff changeset
7216 while ( !v22 );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7217 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7218 }
0
Ritor1
parents:
diff changeset
7219 }
Ritor1
parents:
diff changeset
7220
Ritor1
parents:
diff changeset
7221 //----- (004A68EF) --------------------------------------------------------
Ritor1
parents:
diff changeset
7222 void Render::DrawTransparentGreenShade(signed int a2, signed int a3, Texture *pTexture)
Ritor1
parents:
diff changeset
7223 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7224 DrawMasked(a2, a3, pTexture, 0x07E0);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7225 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7226
0
Ritor1
parents:
diff changeset
7227
Ritor1
parents:
diff changeset
7228 //----- (004A6776) --------------------------------------------------------
315
2a09e1d6fc8f Some 0041D895 GameUI_DrawItemInfo overhaul
Nomad
parents: 265
diff changeset
7229 void Render::DrawTransparentRedShade(unsigned int a2, unsigned int a3, Texture *a4)
0
Ritor1
parents:
diff changeset
7230 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7231 DrawMasked(a2, a3, a4, 0xF800);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7232 /*Texture *v4; // edi@2
0
Ritor1
parents:
diff changeset
7233 unsigned int v5; // ebx@4
Ritor1
parents:
diff changeset
7234 unsigned __int16 *v6; // eax@4
Ritor1
parents:
diff changeset
7235 unsigned int v7; // edx@5
Ritor1
parents:
diff changeset
7236 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
7237 unsigned int v9; // edx@7
Ritor1
parents:
diff changeset
7238 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
7239 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
7240 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
7241 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
7242 unsigned int v14; // edx@17
Ritor1
parents:
diff changeset
7243 unsigned int v15; // esi@18
Ritor1
parents:
diff changeset
7244 unsigned __int8 *v16; // ebx@22
Ritor1
parents:
diff changeset
7245 char v17; // zf@28
Ritor1
parents:
diff changeset
7246 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
7247 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7248 int v20; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7249 int a2a; // [sp+28h] [bp+8h]@24
Ritor1
parents:
diff changeset
7250 unsigned int a3a; // [sp+2Ch] [bp+Ch]@22
Ritor1
parents:
diff changeset
7251 unsigned int a4a; // [sp+30h] [bp+10h]@11
Ritor1
parents:
diff changeset
7252
Ritor1
parents:
diff changeset
7253 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7254 {
Ritor1
parents:
diff changeset
7255 v4 = a4;
Ritor1
parents:
diff changeset
7256 if ( a4 )
Ritor1
parents:
diff changeset
7257 {
Ritor1
parents:
diff changeset
7258 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
7259 {
Ritor1
parents:
diff changeset
7260 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7261 v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7262 v19 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7263 v20 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7264 v18 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
7265 if ( this->bClip )
Ritor1
parents:
diff changeset
7266 {
Ritor1
parents:
diff changeset
7267 v7 = this->uClipX;
Ritor1
parents:
diff changeset
7268 if ( (signed int)a2 < (signed int)v7 )
Ritor1
parents:
diff changeset
7269 {
Ritor1
parents:
diff changeset
7270 v8 = v7 - a2;
Ritor1
parents:
diff changeset
7271 v19 += v8;
Ritor1
parents:
diff changeset
7272 v20 += a2 - this->uClipX;
Ritor1
parents:
diff changeset
7273 v6 += v8;
Ritor1
parents:
diff changeset
7274 }
Ritor1
parents:
diff changeset
7275 v9 = this->uClipY;
Ritor1
parents:
diff changeset
7276 v5 = a4->uTextureHeight;
Ritor1
parents:
diff changeset
7277 if ( (signed int)a3 < (signed int)v9 )
Ritor1
parents:
diff changeset
7278 {
Ritor1
parents:
diff changeset
7279 v10 = v9 - a3;
Ritor1
parents:
diff changeset
7280 v19 += v18 * v10;
Ritor1
parents:
diff changeset
7281 v5 = a3 - this->uClipY + a4->uTextureHeight;
Ritor1
parents:
diff changeset
7282 v4 = a4;
Ritor1
parents:
diff changeset
7283 v6 += this->uTargetSurfacePitch * v10;
Ritor1
parents:
diff changeset
7284 }
Ritor1
parents:
diff changeset
7285 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7286 if ( (signed int)v11 < (signed int)a2 )
Ritor1
parents:
diff changeset
7287 v11 = a2;
Ritor1
parents:
diff changeset
7288 a4a = this->uClipZ;
Ritor1
parents:
diff changeset
7289 if ( (signed int)(v11 + v20) > (signed int)a4a )
Ritor1
parents:
diff changeset
7290 {
Ritor1
parents:
diff changeset
7291 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7292 if ( (signed int)v12 < (signed int)a2 )
Ritor1
parents:
diff changeset
7293 v12 = a2;
Ritor1
parents:
diff changeset
7294 v20 = a4a - v12;
Ritor1
parents:
diff changeset
7295 }
Ritor1
parents:
diff changeset
7296 v13 = this->uClipY;
Ritor1
parents:
diff changeset
7297 if ( (signed int)v13 < (signed int)a3 )
Ritor1
parents:
diff changeset
7298 v13 = a3;
Ritor1
parents:
diff changeset
7299 v14 = this->uClipW;
Ritor1
parents:
diff changeset
7300 if ( (signed int)(v5 + v13) > (signed int)v14 )
Ritor1
parents:
diff changeset
7301 {
Ritor1
parents:
diff changeset
7302 v15 = this->uClipY;
Ritor1
parents:
diff changeset
7303 if ( (signed int)v15 < (signed int)a3 )
Ritor1
parents:
diff changeset
7304 v15 = a3;
Ritor1
parents:
diff changeset
7305 v5 = v14 - v15;
Ritor1
parents:
diff changeset
7306 }
Ritor1
parents:
diff changeset
7307 }
Ritor1
parents:
diff changeset
7308 if ( (signed int)v5 > 0 )
Ritor1
parents:
diff changeset
7309 {
Ritor1
parents:
diff changeset
7310 a3a = v5;
Ritor1
parents:
diff changeset
7311 v16 = v19;
Ritor1
parents:
diff changeset
7312 do
Ritor1
parents:
diff changeset
7313 {
Ritor1
parents:
diff changeset
7314 if ( v20 > 0 )
Ritor1
parents:
diff changeset
7315 {
Ritor1
parents:
diff changeset
7316 a2a = v20;
Ritor1
parents:
diff changeset
7317 do
Ritor1
parents:
diff changeset
7318 {
Ritor1
parents:
diff changeset
7319 if ( *v16 )
Ritor1
parents:
diff changeset
7320 *v6 = this->uTargetRMask & v4->pPalette16[*v16];
Ritor1
parents:
diff changeset
7321 ++v6;
Ritor1
parents:
diff changeset
7322 ++v16;
Ritor1
parents:
diff changeset
7323 --a2a;
Ritor1
parents:
diff changeset
7324 }
Ritor1
parents:
diff changeset
7325 while ( a2a );
Ritor1
parents:
diff changeset
7326 }
Ritor1
parents:
diff changeset
7327 v16 += v18 - v20;
Ritor1
parents:
diff changeset
7328 v17 = a3a-- == 1;
Ritor1
parents:
diff changeset
7329 v6 += this->uTargetSurfacePitch - v20;
Ritor1
parents:
diff changeset
7330 }
Ritor1
parents:
diff changeset
7331 while ( !v17 );
Ritor1
parents:
diff changeset
7332 }
Ritor1
parents:
diff changeset
7333 }
Ritor1
parents:
diff changeset
7334 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7335 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7336 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7337
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7338 //----- (004A68EF) --------------------------------------------------------
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7339 void Render::DrawMasked(signed int a2, signed int a3, Texture *pTexture, unsigned __int16 mask)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7340 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7341 unsigned int v5; // ebx@4
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7342 int v10; // edx@8
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7343 signed int v11; // edx@9
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7344 signed int v12; // esi@12
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7345 signed int v13; // esi@15
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7346 signed int v15; // esi@18
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7347 unsigned __int8 *v16; // ebx@22
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7348 // char v17; // zf@28
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7349 int v18; // [sp+10h] [bp-10h]@4
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7350 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7351 int v20; // [sp+1Ch] [bp-4h]@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7352 // int v21; // [sp+28h] [bp+8h]@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7353 // unsigned int v22; // [sp+2Ch] [bp+Ch]@22
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7354
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7355 if (!uNumSceneBegins || !pTexture)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7356 return;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7357
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7358 if ( pTexture->pPalette16 )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7359 {
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7360 v5 = pTexture->uTextureHeight;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7361 //v6 = &this->pTargetSurface[a2 + a3 * this->uTargetSurfacePitch];
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7362 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7363 v20 = pTexture->uTextureWidth;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7364 v18 = pTexture->uTextureWidth;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7365 int clipped_out_x = a2;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7366 int clipped_out_y = a3;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7367 if ( this->bClip )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7368 {
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7369 if ( a2 < this->uClipX )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7370 {
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7371 v19 += this->uClipX - a2;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7372 v20 += a2 - this->uClipX;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7373 clipped_out_x = uClipX;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7374 }
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7375 v5 = pTexture->uTextureHeight;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7376 if ( a3 < this->uClipY )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7377 {
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7378 v10 = this->uClipY - a3;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7379 v19 += v18 * v10;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7380 v5 = a3 - this->uClipY + pTexture->uTextureHeight;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7381 clipped_out_y = uClipY;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7382 }
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7383 v11 = this->uClipX;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7384 if ( this->uClipX < a2 )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7385 v11 = a2;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7386 if ( v11 + v20 > (signed int)this->uClipZ )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7387 {
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7388 v12 = this->uClipX;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7389 if ( v12 < a2 )
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7390 v12 = a2;
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7391 v20 = this->uClipZ - v12;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7392 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7393 v13 = this->uClipY;
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7394 if ( this->uClipY < a3 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7395 v13 = a3;
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7396 if ( (signed int)(v5 + v13) > (signed int)this->uClipW )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7397 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7398 v15 = this->uClipY;
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7399 if ( this->uClipY < a3 )
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7400 v15 = a3;
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7401 v5 = this->uClipW - v15;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7402 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7403 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7404
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7405 v16 = v19;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7406 for (int y = 0; y < v5; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7407 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7408 for (int x = 0; x < v20; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7409 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7410 if ( *v16 )
2325
846e28e41fb4 for bloodsplat
Ritor1
parents: 2322
diff changeset
7411 WritePixel16(clipped_out_x + x, clipped_out_y + y, pTexture->pPalette16[*v16] & mask);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7412 ++v16;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7413 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7414 v16 += v18 - v20;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7415 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7416
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7417 /*if ( (signed int)v5 > 0 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7418 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7419 v22 = v5;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7420 v16 = v19;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7421 do
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7422 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7423 if ( v20 > 0 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7424 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7425 v21 = v20;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7426 do
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7427 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7428 if ( *v16 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7429 *v6 = this->uTargetGMask & v4->pPalette16[*v16];
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7430 ++v6;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7431 ++v16;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7432 --v21;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7433 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7434 while ( v21 );
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7435 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7436 v16 += v18 - v20;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7437 v17 = v22-- == 1;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7438 v6 += this->uTargetSurfacePitch - v20;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7439 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7440 while ( !v17 );
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7441 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7442 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7443 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7444
0
Ritor1
parents:
diff changeset
7445
Ritor1
parents:
diff changeset
7446 //----- (004A65CC) --------------------------------------------------------
Ritor1
parents:
diff changeset
7447 void Render::_4A65CC(unsigned int x, unsigned int y, Texture *a4, Texture *a5, int a6, int a7, int a8)
Ritor1
parents:
diff changeset
7448 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7449 unsigned int uHeight; // edi@6
0
Ritor1
parents:
diff changeset
7450 unsigned int v14; // edx@11
Ritor1
parents:
diff changeset
7451 unsigned int v16; // edx@14
Ritor1
parents:
diff changeset
7452 unsigned int v17; // edx@17
Ritor1
parents:
diff changeset
7453 unsigned int v19; // edx@20
Ritor1
parents:
diff changeset
7454 int v20; // eax@27
Ritor1
parents:
diff changeset
7455 int v21; // edx@29
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7456 // int v23; // [sp+Ch] [bp-Ch]@24
0
Ritor1
parents:
diff changeset
7457 unsigned __int8 *v24; // [sp+14h] [bp-4h]@6
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7458 // int xa; // [sp+20h] [bp+8h]@26
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7459 // unsigned int ya; // [sp+24h] [bp+Ch]@24
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7460 int Width; // [sp+2Ch] [bp+14h]@6
0
Ritor1
parents:
diff changeset
7461
Ritor1
parents:
diff changeset
7462 if ( this->uNumSceneBegins && a4 && a4->pPalette16 && a5 && a5->pPalette16 )
Ritor1
parents:
diff changeset
7463 {
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7464 v24 = a4->pLevelOfDetail0_prolly_alpha_mask;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7465 Width = a4->uTextureWidth;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7466 uHeight = a4->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7467 int clipped_out_x = x;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7468 int clipped_out_y = y;
0
Ritor1
parents:
diff changeset
7469 if ( this->bClip )
Ritor1
parents:
diff changeset
7470 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7471 if ( (signed int)x < (signed int)this->uClipX )
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7472 {
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7473 v24 += this->uClipX - x;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7474 Width += x - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7475 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
7476 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7477 if ( (signed int)y < (signed int)this->uClipY )
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7478 {
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7479 v24 += a4->uTextureWidth * (this->uClipY - y);
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7480 uHeight = y - this->uClipY + a4->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7481 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
7482 }
Ritor1
parents:
diff changeset
7483 v14 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7484 if ( (signed int)this->uClipX < (signed int)x )
0
Ritor1
parents:
diff changeset
7485 v14 = x;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7486 if ( (signed int)(Width + v14) > (signed int)this->uClipZ )
0
Ritor1
parents:
diff changeset
7487 {
Ritor1
parents:
diff changeset
7488 v16 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7489 if ( (signed int)this->uClipX < (signed int)x )
0
Ritor1
parents:
diff changeset
7490 v16 = x;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7491 Width = this->uClipZ - v16;
0
Ritor1
parents:
diff changeset
7492 }
Ritor1
parents:
diff changeset
7493 v17 = this->uClipY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7494 if ( (signed int)this->uClipY < (signed int)y )
0
Ritor1
parents:
diff changeset
7495 v17 = y;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7496 if ( (signed int)(uHeight + v17) > (signed int)this->uClipW )
0
Ritor1
parents:
diff changeset
7497 {
Ritor1
parents:
diff changeset
7498 v19 = this->uClipY;
Ritor1
parents:
diff changeset
7499 if ( (signed int)v19 < (signed int)y )
Ritor1
parents:
diff changeset
7500 v19 = y;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7501 uHeight = this->uClipW - v19;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7502 }
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7503 }
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7504
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7505 for (int dy = 0; dy < uHeight; ++dy)
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7506 {
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7507 for (int dx = 0; dx < Width; ++dx)
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7508 {
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7509 v20 = *v24;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7510 if ( v20 >= a7 && v20 <= a8 )
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7511 {
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7512 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7513 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7514 v21 = 2 * a8 - v21 - a7;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7515 WritePixel16(clipped_out_x + dx, clipped_out_y + dy, a4->pPalette16[v21]);
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7516 }
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7517 ++v24;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7518 }
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7519 v24 += a4->uTextureWidth - Width;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7520 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7521 /*if ( (signed int)v9 > 0 )
0
Ritor1
parents:
diff changeset
7522 {
Ritor1
parents:
diff changeset
7523 ya = v9;
Ritor1
parents:
diff changeset
7524 v23 = v22 - v27;
Ritor1
parents:
diff changeset
7525 do
Ritor1
parents:
diff changeset
7526 {
Ritor1
parents:
diff changeset
7527 if ( v27 > 0 )
Ritor1
parents:
diff changeset
7528 {
Ritor1
parents:
diff changeset
7529 xa = v27;
Ritor1
parents:
diff changeset
7530 do
Ritor1
parents:
diff changeset
7531 {
Ritor1
parents:
diff changeset
7532 v20 = *v24;
Ritor1
parents:
diff changeset
7533 if ( v20 >= a7 && v20 <= a8 )
Ritor1
parents:
diff changeset
7534 {
Ritor1
parents:
diff changeset
7535 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
Ritor1
parents:
diff changeset
7536 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
Ritor1
parents:
diff changeset
7537 v21 = 2 * a8 - v21 - a7;
Ritor1
parents:
diff changeset
7538 *v8 = a4->pPalette16[v21];
Ritor1
parents:
diff changeset
7539 }
Ritor1
parents:
diff changeset
7540 ++v8;
Ritor1
parents:
diff changeset
7541 ++v24;
Ritor1
parents:
diff changeset
7542 --xa;
Ritor1
parents:
diff changeset
7543 }
Ritor1
parents:
diff changeset
7544 while ( xa );
Ritor1
parents:
diff changeset
7545 }
Ritor1
parents:
diff changeset
7546 v8 += this->uTargetSurfacePitch - v27;
Ritor1
parents:
diff changeset
7547 v24 += v23;
Ritor1
parents:
diff changeset
7548 --ya;
Ritor1
parents:
diff changeset
7549 }
Ritor1
parents:
diff changeset
7550 while ( ya );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7551 }*/
0
Ritor1
parents:
diff changeset
7552 }
Ritor1
parents:
diff changeset
7553 }
Ritor1
parents:
diff changeset
7554
Ritor1
parents:
diff changeset
7555 //----- (004A63E6) --------------------------------------------------------
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1445
diff changeset
7556 void Render::DrawAura(unsigned int a2, unsigned int a3, Texture *a4, Texture *a5, int a6, int a7, int a8)
0
Ritor1
parents:
diff changeset
7557 {
Ritor1
parents:
diff changeset
7558 unsigned int v14; // edx@11
Ritor1
parents:
diff changeset
7559 unsigned int v16; // edx@14
Ritor1
parents:
diff changeset
7560 unsigned int v17; // edx@17
Ritor1
parents:
diff changeset
7561 unsigned int v19; // edx@20
Ritor1
parents:
diff changeset
7562 int v20; // eax@27
Ritor1
parents:
diff changeset
7563 int v21; // edx@29
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7564 // int v23; // [sp+Ch] [bp-Ch]@24
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7565 int Height; // [sp+10h] [bp-8h]@6
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7566 int Width; // [sp+14h] [bp-4h]@6
0
Ritor1
parents:
diff changeset
7567 int v27; // [sp+24h] [bp+Ch]@23
Ritor1
parents:
diff changeset
7568 unsigned __int8 *v28; // [sp+28h] [bp+10h]@6
Ritor1
parents:
diff changeset
7569
Ritor1
parents:
diff changeset
7570 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7571 {
Ritor1
parents:
diff changeset
7572 if ( a4 )
Ritor1
parents:
diff changeset
7573 {
Ritor1
parents:
diff changeset
7574 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
7575 {
Ritor1
parents:
diff changeset
7576 if ( a5 )
Ritor1
parents:
diff changeset
7577 {
Ritor1
parents:
diff changeset
7578 if ( a5->pPalette16 )
Ritor1
parents:
diff changeset
7579 {
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7580 v28 = a4->pLevelOfDetail0_prolly_alpha_mask;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7581 Width = a4->uTextureWidth;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7582 Height = a4->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7583 int clipped_out_x = a2;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7584 int clipped_out_y = a3;
0
Ritor1
parents:
diff changeset
7585 if ( this->bClip )
Ritor1
parents:
diff changeset
7586 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7587 if ( (signed int)a2 < (signed int)this->uClipX )
0
Ritor1
parents:
diff changeset
7588 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7589 v28 += this->uClipX - a2;
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7590 Width += a2 - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7591 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
7592 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7593
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7594 if ( (signed int)a3 < (signed int)this->uClipY )
0
Ritor1
parents:
diff changeset
7595 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7596 v28 += a4->uTextureWidth * (this->uClipY - a3);
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7597 Height += a3 - this->uClipY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7598 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
7599 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7600
0
Ritor1
parents:
diff changeset
7601 v14 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7602 if ( (signed int)this->uClipX < (signed int)a2 )
0
Ritor1
parents:
diff changeset
7603 v14 = a2;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7604 if ( (signed int)(Width + v14) > (signed int)this->uClipZ )
0
Ritor1
parents:
diff changeset
7605 {
Ritor1
parents:
diff changeset
7606 v16 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7607 if ( (signed int)this->uClipX < (signed int)a2 )
0
Ritor1
parents:
diff changeset
7608 v16 = a2;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7609 Width = this->uClipZ - v16;
0
Ritor1
parents:
diff changeset
7610 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7611
0
Ritor1
parents:
diff changeset
7612 v17 = this->uClipY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7613 if ( (signed int)this->uClipY < (signed int)a3 )
0
Ritor1
parents:
diff changeset
7614 v17 = a3;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7615 if ( (signed int)(Height + v17) > (signed int)this->uClipW )
0
Ritor1
parents:
diff changeset
7616 {
Ritor1
parents:
diff changeset
7617 v19 = this->uClipY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7618 if ( (signed int)this->uClipY < (signed int)a3 )
0
Ritor1
parents:
diff changeset
7619 v19 = a3;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7620 Height = this->uClipW - v19;
0
Ritor1
parents:
diff changeset
7621 }
Ritor1
parents:
diff changeset
7622 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7623
0
Ritor1
parents:
diff changeset
7624 v27 = 0;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7625 for (int y = 0; y < Height; ++y)
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7626 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7627 for (int x = 0; x < Width; ++x)
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7628 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7629 if ( *v28 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7630 {
2101
ee2724b9ca05 RasterLine2D fix and etc.
Ritor1
parents: 2098
diff changeset
7631 v20 = *(&a5->pLevelOfDetail0_prolly_alpha_mask[x & a5->uWidthMinus1] + a5->uTextureWidth * (v27 & a5->uHeightMinus1));
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7632 if ( v20 >= a7 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7633 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7634 if ( v20 <= a8 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7635 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7636 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7637 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7638 v21 = 2 * a8 - v21 - a7;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7639 //v9 = a5;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7640 //*v10 = a5->pPalette16[v21];
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7641 WritePixel16(clipped_out_x + x, clipped_out_y + y, a5->pPalette16[v21]);
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7642 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7643 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7644 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7645 v28++;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7646 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7647 v28 += a4->uTextureWidth - Width;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7648 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7649
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7650 /*if ( v24 > 0 )
0
Ritor1
parents:
diff changeset
7651 {
Ritor1
parents:
diff changeset
7652 v23 = v22 - v25;
Ritor1
parents:
diff changeset
7653 do
Ritor1
parents:
diff changeset
7654 {
Ritor1
parents:
diff changeset
7655 for ( i = 0; i < v25; ++v28 )
Ritor1
parents:
diff changeset
7656 {
Ritor1
parents:
diff changeset
7657 if ( *v28 )
Ritor1
parents:
diff changeset
7658 {
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7659 v20 = *(&v9->pLevelOfDetail0_prolly_alpha_mask[i & v9->uWidthMinus1] + v9->uTextureWidth * (v27 & v9->uHeightMinus1));
0
Ritor1
parents:
diff changeset
7660 if ( v20 >= a7 )
Ritor1
parents:
diff changeset
7661 {
Ritor1
parents:
diff changeset
7662 if ( v20 <= a8 )
Ritor1
parents:
diff changeset
7663 {
Ritor1
parents:
diff changeset
7664 v21 = a7 + (a6 + v20) % (2 * (a8 - a7));
Ritor1
parents:
diff changeset
7665 if ( (a6 + v20) % (2 * (a8 - a7)) >= a8 - a7 )
Ritor1
parents:
diff changeset
7666 v21 = 2 * a8 - v21 - a7;
Ritor1
parents:
diff changeset
7667 v9 = a5;
Ritor1
parents:
diff changeset
7668 *v10 = a5->pPalette16[v21];
Ritor1
parents:
diff changeset
7669 }
Ritor1
parents:
diff changeset
7670 }
Ritor1
parents:
diff changeset
7671 }
Ritor1
parents:
diff changeset
7672 ++i;
Ritor1
parents:
diff changeset
7673 ++v10;
Ritor1
parents:
diff changeset
7674 }
Ritor1
parents:
diff changeset
7675 ++v27;
Ritor1
parents:
diff changeset
7676 v10 += this->uTargetSurfacePitch - v25;
Ritor1
parents:
diff changeset
7677 v28 += v23;
Ritor1
parents:
diff changeset
7678 }
Ritor1
parents:
diff changeset
7679 while ( v27 < v24 );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7680 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7681
0
Ritor1
parents:
diff changeset
7682 }
Ritor1
parents:
diff changeset
7683 }
Ritor1
parents:
diff changeset
7684 }
Ritor1
parents:
diff changeset
7685 }
Ritor1
parents:
diff changeset
7686 }
Ritor1
parents:
diff changeset
7687 }
Ritor1
parents:
diff changeset
7688
Ritor1
parents:
diff changeset
7689 //----- (004A6274) --------------------------------------------------------
Ritor1
parents:
diff changeset
7690 void Render::DrawTextureTransparent(unsigned int uX, unsigned int uY, Texture *pTexture)
Ritor1
parents:
diff changeset
7691 {
Ritor1
parents:
diff changeset
7692 int uHeight; // ebx@4
Ritor1
parents:
diff changeset
7693 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
7694 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
7695 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
7696 unsigned int v15; // esi@18
Ritor1
parents:
diff changeset
7697 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7698 int uWidth; // [sp+1Ch] [bp-4h]@4
Ritor1
parents:
diff changeset
7699
Ritor1
parents:
diff changeset
7700 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7701 {
Ritor1
parents:
diff changeset
7702 if ( pTexture )
Ritor1
parents:
diff changeset
7703 {
Ritor1
parents:
diff changeset
7704 if ( pTexture->pPalette16 )
Ritor1
parents:
diff changeset
7705 {
Ritor1
parents:
diff changeset
7706 uHeight = pTexture->uTextureHeight;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7707 v19 = pTexture->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7708 uWidth = pTexture->uTextureWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7709
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7710 int clipped_out_x = uX;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7711 int clipped_out_y = uY;
0
Ritor1
parents:
diff changeset
7712 if ( this->bClip )
Ritor1
parents:
diff changeset
7713 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7714 if ( (signed int)uX < (signed int)this->uClipX )
0
Ritor1
parents:
diff changeset
7715 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7716 v19 += this->uClipX - uX;
0
Ritor1
parents:
diff changeset
7717 uWidth += uX - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7718 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
7719 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7720
0
Ritor1
parents:
diff changeset
7721 uHeight = pTexture->uTextureHeight;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7722 if ( (signed int)uY < (signed int)this->uClipY )
0
Ritor1
parents:
diff changeset
7723 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7724 v19 += pTexture->uTextureWidth * (this->uClipY - uY);
0
Ritor1
parents:
diff changeset
7725 uHeight = uY - this->uClipY + pTexture->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7726 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
7727 }
Ritor1
parents:
diff changeset
7728 v11 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7729 if ( (signed int)this->uClipX < (signed int)uX )
0
Ritor1
parents:
diff changeset
7730 v11 = uX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7731
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7732 if ( (signed int)(v11 + uWidth) > (signed int)this->uClipZ )
0
Ritor1
parents:
diff changeset
7733 {
Ritor1
parents:
diff changeset
7734 v12 = this->uClipX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7735 if ( (signed int)this->uClipX < (signed int)uX )
0
Ritor1
parents:
diff changeset
7736 v12 = uX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7737 uWidth = this->uClipZ - v12;
0
Ritor1
parents:
diff changeset
7738 }
Ritor1
parents:
diff changeset
7739 v13 = this->uClipY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7740 if ( (signed int)this->uClipY < (signed int)uY )
0
Ritor1
parents:
diff changeset
7741 v13 = uY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7742
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7743 if ( (signed int)(uHeight + v13) > (signed int)this->uClipW )
0
Ritor1
parents:
diff changeset
7744 {
Ritor1
parents:
diff changeset
7745 v15 = this->uClipY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7746 if ( (signed int)this->uClipY < (signed int)uY )
0
Ritor1
parents:
diff changeset
7747 v15 = uY;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7748 uHeight = this->uClipW - v15;
0
Ritor1
parents:
diff changeset
7749 }
Ritor1
parents:
diff changeset
7750 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7751
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7752 for (int y = 0; y < uHeight; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7753 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7754 for (int x = 0; x < uWidth; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7755 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7756 if ( *v19 )
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7757 WritePixel16(clipped_out_x + x, clipped_out_y + y, pTexture->pPalette16[*v19]);
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7758 ++v19;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7759 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
7760 v19 += pTexture->uTextureWidth - uWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7761 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7762 /*if ( (signed int)uHeight > 0 )
0
Ritor1
parents:
diff changeset
7763 {
Ritor1
parents:
diff changeset
7764 uYa = uHeight;
Ritor1
parents:
diff changeset
7765 v16 = v19;
Ritor1
parents:
diff changeset
7766 do
Ritor1
parents:
diff changeset
7767 {
Ritor1
parents:
diff changeset
7768 if ( uWidth > 0 )
Ritor1
parents:
diff changeset
7769 {
Ritor1
parents:
diff changeset
7770 uXa = uWidth;
Ritor1
parents:
diff changeset
7771 do
Ritor1
parents:
diff changeset
7772 {
Ritor1
parents:
diff changeset
7773 if ( *v16 )
Ritor1
parents:
diff changeset
7774 *v6 = pCurrentTexture->pPalette16[*v16];
Ritor1
parents:
diff changeset
7775 ++v6;
Ritor1
parents:
diff changeset
7776 ++v16;
Ritor1
parents:
diff changeset
7777 }
Ritor1
parents:
diff changeset
7778 while ( uXa-- !=1 );
Ritor1
parents:
diff changeset
7779 }
Ritor1
parents:
diff changeset
7780 v16 += v18 - uWidth;
Ritor1
parents:
diff changeset
7781 uFlag = uYa-- == 1;
Ritor1
parents:
diff changeset
7782 v6 += this->uTargetSurfacePitch - uWidth;
Ritor1
parents:
diff changeset
7783 }
Ritor1
parents:
diff changeset
7784 while ( !uFlag );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7785 }*/
0
Ritor1
parents:
diff changeset
7786 }
Ritor1
parents:
diff changeset
7787 }
Ritor1
parents:
diff changeset
7788 }
Ritor1
parents:
diff changeset
7789 }
Ritor1
parents:
diff changeset
7790
Ritor1
parents:
diff changeset
7791 //----- (004A612A) --------------------------------------------------------
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7792 void Render::DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, Texture *pTexture, int zVal)
0
Ritor1
parents:
diff changeset
7793 {
Ritor1
parents:
diff changeset
7794 Texture *v5; // eax@2
Ritor1
parents:
diff changeset
7795 unsigned int v6; // edx@3
Ritor1
parents:
diff changeset
7796 int v7; // ebx@3
Ritor1
parents:
diff changeset
7797 int v8; // edi@3
Ritor1
parents:
diff changeset
7798 signed int v9; // eax@4
Ritor1
parents:
diff changeset
7799 int v10; // eax@5
Ritor1
parents:
diff changeset
7800 unsigned int v11; // esi@6
Ritor1
parents:
diff changeset
7801 signed int v12; // esi@8
Ritor1
parents:
diff changeset
7802 unsigned int v13; // eax@10
Ritor1
parents:
diff changeset
7803 signed int v14; // esi@11
Ritor1
parents:
diff changeset
7804 unsigned int v15; // esi@14
Ritor1
parents:
diff changeset
7805 unsigned int v16; // eax@16
Ritor1
parents:
diff changeset
7806 unsigned int v17; // ecx@17
Ritor1
parents:
diff changeset
7807 int v18; // edx@23
Ritor1
parents:
diff changeset
7808 int v19; // [sp+Ch] [bp-Ch]@3
Ritor1
parents:
diff changeset
7809 int v20; // [sp+10h] [bp-8h]@3
Ritor1
parents:
diff changeset
7810 int uOutXa; // [sp+20h] [bp+8h]@21
Ritor1
parents:
diff changeset
7811 unsigned __int8 *uOutYa; // [sp+24h] [bp+Ch]@3
Ritor1
parents:
diff changeset
7812 int *pZBuffer; // [sp+28h] [bp+10h]@3
Ritor1
parents:
diff changeset
7813
Ritor1
parents:
diff changeset
7814 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7815 {
Ritor1
parents:
diff changeset
7816 v5 = pTexture;
Ritor1
parents:
diff changeset
7817 if ( pTexture )
Ritor1
parents:
diff changeset
7818 {
Ritor1
parents:
diff changeset
7819 v6 = uOutY;
Ritor1
parents:
diff changeset
7820 v7 = pTexture->uTextureHeight;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
7821 pZBuffer = &this->pActiveZBuffer[uOutX + window->GetWidth() * uOutY];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
7822 uOutYa = v5->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
7823 v8 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
7824 v20 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
7825 v19 = v5->uTextureWidth;
Ritor1
parents:
diff changeset
7826 if ( this->bClip )
Ritor1
parents:
diff changeset
7827 {
Ritor1
parents:
diff changeset
7828 v9 = this->uClipX;
Ritor1
parents:
diff changeset
7829 if ( uOutX < v9 )
Ritor1
parents:
diff changeset
7830 {
Ritor1
parents:
diff changeset
7831 v10 = v9 - uOutX;
Ritor1
parents:
diff changeset
7832 uOutYa += v10;
Ritor1
parents:
diff changeset
7833 v8 += uOutX - this->uClipX;
Ritor1
parents:
diff changeset
7834 v20 = v8;
Ritor1
parents:
diff changeset
7835 pZBuffer += v10;
Ritor1
parents:
diff changeset
7836 }
Ritor1
parents:
diff changeset
7837 v11 = this->uClipY;
Ritor1
parents:
diff changeset
7838 if ( (signed int)v6 < (signed int)v11 )
Ritor1
parents:
diff changeset
7839 {
Ritor1
parents:
diff changeset
7840 uOutYa += v19 * (v11 - v6);
Ritor1
parents:
diff changeset
7841 v7 += v6 - v11;
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
7842 pZBuffer += window->GetWidth() * (v11 - v6);
0
Ritor1
parents:
diff changeset
7843 v8 = v20;
Ritor1
parents:
diff changeset
7844 }
Ritor1
parents:
diff changeset
7845 v12 = this->uClipX;
Ritor1
parents:
diff changeset
7846 if ( v12 < uOutX )
Ritor1
parents:
diff changeset
7847 v12 = uOutX;
Ritor1
parents:
diff changeset
7848 v13 = this->uClipZ;
Ritor1
parents:
diff changeset
7849 if ( v8 + v12 > (signed int)v13 )
Ritor1
parents:
diff changeset
7850 {
Ritor1
parents:
diff changeset
7851 v14 = this->uClipX;
Ritor1
parents:
diff changeset
7852 if ( v14 < uOutX )
Ritor1
parents:
diff changeset
7853 v14 = uOutX;
Ritor1
parents:
diff changeset
7854 v8 = v13 - v14;
Ritor1
parents:
diff changeset
7855 }
Ritor1
parents:
diff changeset
7856 v15 = this->uClipY;
Ritor1
parents:
diff changeset
7857 if ( (signed int)v15 < (signed int)v6 )
Ritor1
parents:
diff changeset
7858 v15 = v6;
Ritor1
parents:
diff changeset
7859 v16 = this->uClipW;
Ritor1
parents:
diff changeset
7860 if ( (signed int)(v7 + v15) > (signed int)v16 )
Ritor1
parents:
diff changeset
7861 {
Ritor1
parents:
diff changeset
7862 v17 = this->uClipY;
Ritor1
parents:
diff changeset
7863 if ( (signed int)v17 >= (signed int)v6 )
Ritor1
parents:
diff changeset
7864 v6 = v17;
Ritor1
parents:
diff changeset
7865 v7 = v16 - v6;
Ritor1
parents:
diff changeset
7866 }
Ritor1
parents:
diff changeset
7867 }
Ritor1
parents:
diff changeset
7868 if ( v7 > 0 )
Ritor1
parents:
diff changeset
7869 {
Ritor1
parents:
diff changeset
7870 uOutXa = v7;
Ritor1
parents:
diff changeset
7871 do
Ritor1
parents:
diff changeset
7872 {
Ritor1
parents:
diff changeset
7873 if ( v8 > 0 )
Ritor1
parents:
diff changeset
7874 {
Ritor1
parents:
diff changeset
7875 v18 = v8;
Ritor1
parents:
diff changeset
7876 do
Ritor1
parents:
diff changeset
7877 {
Ritor1
parents:
diff changeset
7878 if ( *uOutYa )
Ritor1
parents:
diff changeset
7879 *pZBuffer = zVal;
Ritor1
parents:
diff changeset
7880 ++pZBuffer;
Ritor1
parents:
diff changeset
7881 ++uOutYa;
Ritor1
parents:
diff changeset
7882 --v18;
Ritor1
parents:
diff changeset
7883 }
Ritor1
parents:
diff changeset
7884 while ( v18 );
Ritor1
parents:
diff changeset
7885 }
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
7886 pZBuffer += window->GetWidth() - v8;
0
Ritor1
parents:
diff changeset
7887 uOutYa += v19 - v8;
Ritor1
parents:
diff changeset
7888 --uOutXa;
Ritor1
parents:
diff changeset
7889 }
Ritor1
parents:
diff changeset
7890 while ( uOutXa );
Ritor1
parents:
diff changeset
7891 }
Ritor1
parents:
diff changeset
7892 }
Ritor1
parents:
diff changeset
7893 }
Ritor1
parents:
diff changeset
7894 }
Ritor1
parents:
diff changeset
7895
Ritor1
parents:
diff changeset
7896 //----- (004A601E) --------------------------------------------------------
991
c5d8ea1e6ccb CharacterUI cleanings.
Nomad
parents: 973
diff changeset
7897 void Render::ZBuffer_Fill_2(signed int a2, signed int a3, Texture *pTexture, int a5)
0
Ritor1
parents:
diff changeset
7898 {
Ritor1
parents:
diff changeset
7899 signed int v5; // edx@3
Ritor1
parents:
diff changeset
7900 int v6; // ebx@3
Ritor1
parents:
diff changeset
7901 int v7; // esi@3
Ritor1
parents:
diff changeset
7902 void *v8; // esi@3
Ritor1
parents:
diff changeset
7903 unsigned int v9; // eax@4
Ritor1
parents:
diff changeset
7904 unsigned int v10; // eax@6
Ritor1
parents:
diff changeset
7905 signed int v11; // edi@8
Ritor1
parents:
diff changeset
7906 unsigned int v12; // eax@10
Ritor1
parents:
diff changeset
7907 signed int v13; // edi@11
Ritor1
parents:
diff changeset
7908 unsigned int v14; // edi@14
Ritor1
parents:
diff changeset
7909 unsigned int v15; // eax@16
Ritor1
parents:
diff changeset
7910 unsigned int v16; // ecx@17
Ritor1
parents:
diff changeset
7911 int v17; // [sp+18h] [bp+Ch]@3
Ritor1
parents:
diff changeset
7912 unsigned int pTexturea; // [sp+1Ch] [bp+10h]@3
Ritor1
parents:
diff changeset
7913
Ritor1
parents:
diff changeset
7914 if ( this->uNumSceneBegins && pTexture )
Ritor1
parents:
diff changeset
7915 {
Ritor1
parents:
diff changeset
7916 v5 = a3;
Ritor1
parents:
diff changeset
7917 v6 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7918 v7 = 5 * a3;
Ritor1
parents:
diff changeset
7919 v17 = pTexture->uTextureHeight;
Ritor1
parents:
diff changeset
7920 v8 = &this->pActiveZBuffer[a2 + (v7 << 7)];
Ritor1
parents:
diff changeset
7921 pTexturea = pTexture->uTextureWidth;
Ritor1
parents:
diff changeset
7922 if ( this->bClip )
Ritor1
parents:
diff changeset
7923 {
Ritor1
parents:
diff changeset
7924 v9 = this->uClipX;
Ritor1
parents:
diff changeset
7925 if ( a2 < (signed int)v9 )
Ritor1
parents:
diff changeset
7926 {
Ritor1
parents:
diff changeset
7927 pTexturea += a2 - v9;
Ritor1
parents:
diff changeset
7928 v8 = (char *)v8 + 4 * (v9 - a2);
Ritor1
parents:
diff changeset
7929 }
Ritor1
parents:
diff changeset
7930 v10 = this->uClipY;
Ritor1
parents:
diff changeset
7931 if ( v5 < (signed int)v10 )
Ritor1
parents:
diff changeset
7932 {
Ritor1
parents:
diff changeset
7933 v17 += v5 - v10;
Ritor1
parents:
diff changeset
7934 v8 = (char *)v8 + 2560 * (v10 - v5);
Ritor1
parents:
diff changeset
7935 }
Ritor1
parents:
diff changeset
7936 v11 = this->uClipX;
Ritor1
parents:
diff changeset
7937 if ( v11 < a2 )
Ritor1
parents:
diff changeset
7938 v11 = a2;
Ritor1
parents:
diff changeset
7939 v12 = this->uClipZ;
Ritor1
parents:
diff changeset
7940 if ( (signed int)(pTexturea + v11) > (signed int)v12 )
Ritor1
parents:
diff changeset
7941 {
Ritor1
parents:
diff changeset
7942 v13 = this->uClipX;
Ritor1
parents:
diff changeset
7943 if ( v13 < a2 )
Ritor1
parents:
diff changeset
7944 v13 = a2;
Ritor1
parents:
diff changeset
7945 pTexturea = v12 - v13;
Ritor1
parents:
diff changeset
7946 }
Ritor1
parents:
diff changeset
7947 v14 = this->uClipY;
Ritor1
parents:
diff changeset
7948 if ( (signed int)v14 < v5 )
Ritor1
parents:
diff changeset
7949 v14 = v5;
Ritor1
parents:
diff changeset
7950 v6 = v17;
Ritor1
parents:
diff changeset
7951 v15 = this->uClipW;
Ritor1
parents:
diff changeset
7952 if ( (signed int)(v17 + v14) > (signed int)v15 )
Ritor1
parents:
diff changeset
7953 {
Ritor1
parents:
diff changeset
7954 v16 = this->uClipY;
Ritor1
parents:
diff changeset
7955 if ( (signed int)v16 < v5 )
Ritor1
parents:
diff changeset
7956 v16 = v5;
Ritor1
parents:
diff changeset
7957 v6 = v15 - v16;
Ritor1
parents:
diff changeset
7958 }
Ritor1
parents:
diff changeset
7959 }
Ritor1
parents:
diff changeset
7960 if ( v6 > 0 )
Ritor1
parents:
diff changeset
7961 {
Ritor1
parents:
diff changeset
7962 do
Ritor1
parents:
diff changeset
7963 {
Ritor1
parents:
diff changeset
7964 if ( (signed int)pTexturea > 0 )
Ritor1
parents:
diff changeset
7965 {
Ritor1
parents:
diff changeset
7966 memset32(v8, a5, pTexturea);
Ritor1
parents:
diff changeset
7967 v8 = (char *)v8 + 4 * pTexturea;
Ritor1
parents:
diff changeset
7968 }
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2207
diff changeset
7969 v8 = (char *)v8 + 4 * (window->GetWidth() - pTexturea);
0
Ritor1
parents:
diff changeset
7970 --v6;
Ritor1
parents:
diff changeset
7971 }
Ritor1
parents:
diff changeset
7972 while ( v6 );
Ritor1
parents:
diff changeset
7973 }
Ritor1
parents:
diff changeset
7974 }
Ritor1
parents:
diff changeset
7975 }
Ritor1
parents:
diff changeset
7976
Ritor1
parents:
diff changeset
7977 //----- (004A5EB2) --------------------------------------------------------
Ritor1
parents:
diff changeset
7978 void Render::DrawTextureIndexed(unsigned int uX, unsigned int uY, Texture *a4)
Ritor1
parents:
diff changeset
7979 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
7980 int v5; // ebx@4
0
Ritor1
parents:
diff changeset
7981 unsigned int v8; // edx@6
Ritor1
parents:
diff changeset
7982 unsigned int v10; // edx@8
Ritor1
parents:
diff changeset
7983 unsigned int v11; // edx@9
Ritor1
parents:
diff changeset
7984 unsigned int v12; // esi@12
Ritor1
parents:
diff changeset
7985 unsigned int v13; // esi@15
Ritor1
parents:
diff changeset
7986 unsigned int v15; // esi@18
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7987 // char v17; // zf@26
0
Ritor1
parents:
diff changeset
7988 int v18; // [sp+10h] [bp-10h]@4
Ritor1
parents:
diff changeset
7989 unsigned __int8 *v19; // [sp+18h] [bp-8h]@4
Ritor1
parents:
diff changeset
7990 int v20; // [sp+1Ch] [bp-4h]@4
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7991 // int uXa; // [sp+28h] [bp+8h]@24
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
7992 // unsigned int uYa; // [sp+2Ch] [bp+Ch]@22
0
Ritor1
parents:
diff changeset
7993
Ritor1
parents:
diff changeset
7994 if ( this->uNumSceneBegins )
Ritor1
parents:
diff changeset
7995 {
Ritor1
parents:
diff changeset
7996 if ( a4 )
Ritor1
parents:
diff changeset
7997 {
Ritor1
parents:
diff changeset
7998 if ( a4->pPalette16 )
Ritor1
parents:
diff changeset
7999 {
Ritor1
parents:
diff changeset
8000 v5 = a4->uTextureHeight;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8001 //pTarget = &this->pTargetSurface[uX + uY * this->uTargetSurfacePitch];
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 709
diff changeset
8002 v19 = a4->pLevelOfDetail0_prolly_alpha_mask;
0
Ritor1
parents:
diff changeset
8003 v20 = a4->uTextureWidth;
Ritor1
parents:
diff changeset
8004 v18 = a4->uTextureWidth;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8005
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8006 int clipped_out_x = uX;
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8007 int clipped_out_y = uY;
0
Ritor1
parents:
diff changeset
8008 if ( this->bClip )
Ritor1
parents:
diff changeset
8009 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8010 if ( (signed int)uX < (signed int)this->uClipX )
0
Ritor1
parents:
diff changeset
8011 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8012 v8 = this->uClipX - uX;
0
Ritor1
parents:
diff changeset
8013 v19 += v8;
Ritor1
parents:
diff changeset
8014 v20 += uX - this->uClipX;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8015 clipped_out_x = uClipX;
0
Ritor1
parents:
diff changeset
8016 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8017
0
Ritor1
parents:
diff changeset
8018 v5 = a4->uTextureHeight;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8019 if ( (signed int)uY < (signed int)this->uClipY )
0
Ritor1
parents:
diff changeset
8020 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8021 v10 = this->uClipY - uY;
0
Ritor1
parents:
diff changeset
8022 v19 += v18 * v10;
Ritor1
parents:
diff changeset
8023 v5 = uY - this->uClipY + a4->uTextureHeight;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8024 //v4 = a4;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8025 clipped_out_y = uClipY;
0
Ritor1
parents:
diff changeset
8026 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8027
0
Ritor1
parents:
diff changeset
8028 v11 = this->uClipX;
Ritor1
parents:
diff changeset
8029 if ( (signed int)v11 < (signed int)uX )
Ritor1
parents:
diff changeset
8030 v11 = uX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8031
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8032 if ( (signed int)(v11 + v20) > (signed int)this->uClipZ )
0
Ritor1
parents:
diff changeset
8033 {
Ritor1
parents:
diff changeset
8034 v12 = this->uClipX;
Ritor1
parents:
diff changeset
8035 if ( (signed int)v12 < (signed int)uX )
Ritor1
parents:
diff changeset
8036 v12 = uX;
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8037 v20 = this->uClipZ - v12;
0
Ritor1
parents:
diff changeset
8038 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8039
0
Ritor1
parents:
diff changeset
8040 v13 = this->uClipY;
Ritor1
parents:
diff changeset
8041 if ( (signed int)v13 < (signed int)uY )
Ritor1
parents:
diff changeset
8042 v13 = uY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8043
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8044 if ( (signed int)(v5 + v13) > (signed int)uClipW )
0
Ritor1
parents:
diff changeset
8045 {
Ritor1
parents:
diff changeset
8046 v15 = this->uClipY;
Ritor1
parents:
diff changeset
8047 if ( (signed int)v15 < (signed int)uY )
Ritor1
parents:
diff changeset
8048 v15 = uY;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8049 v5 = uClipW - v15;
0
Ritor1
parents:
diff changeset
8050 }
Ritor1
parents:
diff changeset
8051 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8052
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8053 for (int y = 0; y < v5; ++y)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8054 {
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8055 for (int x = 0; x < v20; ++x)
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8056 {
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8057 if ( a4->pPalette16[*v19] != 0x7FF )// 2047
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8058 WritePixel16(clipped_out_x + x, clipped_out_y + y, a4->pPalette16[*v19]);
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8059 ++v19;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8060 }
2198
d9caf2b3d8d5 draw FlyAction and WaterWalk icons
Ritor1
parents: 2194
diff changeset
8061 v19 += v18 - v20;
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8062 }
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8063 /*if ( (signed int)v5 > 0 )
0
Ritor1
parents:
diff changeset
8064 {
Ritor1
parents:
diff changeset
8065 uYa = v5;
Ritor1
parents:
diff changeset
8066 v16 = v19;
Ritor1
parents:
diff changeset
8067 do
Ritor1
parents:
diff changeset
8068 {
Ritor1
parents:
diff changeset
8069 if ( v20 > 0 )
Ritor1
parents:
diff changeset
8070 {
Ritor1
parents:
diff changeset
8071 uXa = v20;
Ritor1
parents:
diff changeset
8072 do
Ritor1
parents:
diff changeset
8073 {
Ritor1
parents:
diff changeset
8074 *pTarget = v4->pPalette16[*v16];
Ritor1
parents:
diff changeset
8075 ++pTarget;
Ritor1
parents:
diff changeset
8076 ++v16;
Ritor1
parents:
diff changeset
8077 --uXa;
Ritor1
parents:
diff changeset
8078 }
Ritor1
parents:
diff changeset
8079 while ( uXa );
Ritor1
parents:
diff changeset
8080 }
Ritor1
parents:
diff changeset
8081 v16 += v18 - v20;
Ritor1
parents:
diff changeset
8082 v17 = uYa-- == 1;
Ritor1
parents:
diff changeset
8083 pTarget += this->uTargetSurfacePitch - v20;
Ritor1
parents:
diff changeset
8084 }
Ritor1
parents:
diff changeset
8085 while ( !v17 );
2069
259df09dfb50 32bits almost there
Nomad
parents: 2061
diff changeset
8086 }*/
0
Ritor1
parents:
diff changeset
8087 }
Ritor1
parents:
diff changeset
8088 }
Ritor1
parents:
diff changeset
8089 }
Ritor1
parents:
diff changeset
8090 }
Ritor1
parents:
diff changeset
8091
Ritor1
parents:
diff changeset
8092 //----- (004667E9) --------------------------------------------------------
Ritor1
parents:
diff changeset
8093 void Render::ChangeBetweenWinFullscreenModes()
Ritor1
parents:
diff changeset
8094 {
Ritor1
parents:
diff changeset
8095 float v0; // ST14_4@17
Ritor1
parents:
diff changeset
8096 int v4; // edx@26
Ritor1
parents:
diff changeset
8097 ObjectDesc *v5; // eax@26
Ritor1
parents:
diff changeset
8098 RGBTexture *v6; // esi@33
Ritor1
parents:
diff changeset
8099 const char *v8; // [sp-4h] [bp-28h]@33
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
8100 // struct tagRECT Rect; // [sp+14h] [bp-10h]@15
0
Ritor1
parents:
diff changeset
8101
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8102 /*if ( !pRenderer->bWindowMode && (dword_6BE364_game_settings_1 & 2) )
0
Ritor1
parents:
diff changeset
8103 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
8104 ModalWindow(pGlobalTXT_LocalizationStrings[62], UIMSG_0);// "Might and Magic VII requires your desktop to be in 16bit (32k or 65k) Color mode in order to operate in a window."
0
Ritor1
parents:
diff changeset
8105 return;
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8106 }*/
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
8107 if ( pRenderer->bWindowMode || pRenderer->pRenderD3D->pAvailableDevices->bIsDeviceCompatible )
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8108 {
0
Ritor1
parents:
diff changeset
8109 if ( pEventTimer->bPaused )
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8110 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0800;
0
Ritor1
parents:
diff changeset
8111 else
Ritor1
parents:
diff changeset
8112 pEventTimer->Pause();
Ritor1
parents:
diff changeset
8113 if ( pMiscTimer->bPaused )
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8114 dword_6BE364_game_settings_1 |= GAME_SETTINGS_1000;
0
Ritor1
parents:
diff changeset
8115 else
Ritor1
parents:
diff changeset
8116 pMiscTimer->Pause();
Ritor1
parents:
diff changeset
8117 pMouse->bActive = 0;
Ritor1
parents:
diff changeset
8118 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
8119 {
Ritor1
parents:
diff changeset
8120 pBitmaps_LOD->ReleaseHardwareTextures();
Ritor1
parents:
diff changeset
8121 pSprites_LOD->ReleaseAll();
Ritor1
parents:
diff changeset
8122 }
Ritor1
parents:
diff changeset
8123 if ( pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
8124 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8125 //SetMenu(hWnd, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8126 //SetWindowLongA(hWnd, -20, 0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8127 //SetWindowLongA(hWnd, -16, 0x10000000u);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8128 window->SetFullscreenMode();
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8129 pRenderer->InitializeFullscreen();
0
Ritor1
parents:
diff changeset
8130 v0 = (double)(signed int)uGammaPos * 0.1 + 0.6;
Ritor1
parents:
diff changeset
8131 pGame->pGammaController->Initialize(v0);
Ritor1
parents:
diff changeset
8132 }
Ritor1
parents:
diff changeset
8133 else
Ritor1
parents:
diff changeset
8134 {
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8135 //ClipCursor(0);
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8136 window->SetWindowedMode(window->GetWidth(), window->GetHeight());
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8137 pRenderer->SwitchToWindow();
0
Ritor1
parents:
diff changeset
8138 }
Ritor1
parents:
diff changeset
8139 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
8140 {
Ritor1
parents:
diff changeset
8141 pBitmaps_LOD->_410423_move_textures_to_device();
Ritor1
parents:
diff changeset
8142 pSprites_LOD->MoveSpritesToVideoMemory();
Ritor1
parents:
diff changeset
8143 }
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8144 if (!( pPaletteManager->uNumTargetBBits == pRenderer->uTargetBBits
0
Ritor1
parents:
diff changeset
8145 && pPaletteManager->uNumTargetGBits == pRenderer->uTargetGBits
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8146 && pPaletteManager->uNumTargetRBits == pRenderer->uTargetRBits ))
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8147 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8148 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8149 pPaletteManager->RecalculateAll();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8150 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8151 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8152 for (int i = 0; i < pObjectList->uNumObjects; i++)
0
Ritor1
parents:
diff changeset
8153 {
Ritor1
parents:
diff changeset
8154 BYTE3(v4) = 0;
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8155 v5 = &pObjectList->pObjects[i];
0
Ritor1
parents:
diff changeset
8156 *(short *)((char *)&v4 + 1) = v5->uParticleTrailColorR;
Ritor1
parents:
diff changeset
8157 LOBYTE(v4) = v5->uParticleTrailColorG;
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1110
diff changeset
8158 v5->uParticleTrailColor = v5->uParticleTrailColorB | (v4 << 8);
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8159 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8160 SetUserInterface(pParty->alignment, true);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8161 if ( pVideoPlayer->pVideoFrame.pPixels )
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8162 pVideoPlayer->pVideoFrame.Load(pVideoPlayer->pVideoFrameTextureFilename, 1);
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8163 if ( sCurrentMenuID != MENU_CREATEPARTY )
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8164 {
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8165 if ( sCurrentMenuID == MENU_CREDITSPROC )
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8166 dword_A74C88 = 1;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8167 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8168 else
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8169 {
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8170 if ( sCurrentMenuID )
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8171 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8172 v6 = &pTexture_PCX;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8173 pTexture_PCX.Release();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8174 v8 = "makeme.pcx";
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8175 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8176 else
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8177 {
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8178 v6 = &pTexture_PCX;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8179 pTexture_PCX.Release();
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8180 v8 = "title.pcx";
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8181 if ( sCurrentMenuID )
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8182 v8 = "lsave640.pcx";
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8183 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8184 v6->Load(v8, 0);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8185 }
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8186 }
0
Ritor1
parents:
diff changeset
8187 viewparams->bRedrawGameUI = 1;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 670
diff changeset
8188 viewparams->InitGrayPalette();
0
Ritor1
parents:
diff changeset
8189 pMouse->SetCurrentCursorBitmap();
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8190 /*if ( pRenderer->bWindowMode )
0
Ritor1
parents:
diff changeset
8191 {
1655
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1644
diff changeset
8192 //MoveWindow(hWnd, uWindowX, uWindowY, uWindowWidth, uWindowHeight, 0);
a7eebb6ee7a2 Window Resize (change arguments to MM7_Initialize)
Nomad
parents: 1644
diff changeset
8193 CenterWindowAndAdjustSize(hWnd, windowed_mode_width, windowed_mode_height);
1586
c24e91e9a108 Replace minor Windows constants.
yoctozepto
parents: 1584
diff changeset
8194 ShowWindow(hWnd, SW_SHOWNORMAL);
1802
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8195 }*/
633f81bb3ae7 HWND -> class OSWindow
Nomad
parents: 1679
diff changeset
8196 pMouse->bActive = true;
0
Ritor1
parents:
diff changeset
8197 if ( pVideoPlayer->AnyMovieLoaded() )
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 872
diff changeset
8198 pVideoPlayer->SelectMovieType();
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8199 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0800)
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8200 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0800;
0
Ritor1
parents:
diff changeset
8201 else
Ritor1
parents:
diff changeset
8202 pEventTimer->Resume();
2061
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8203 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_1000)
b2a434d65344 GAME_SETTINGS_* defines introduced
Nomad
parents: 2044
diff changeset
8204 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_1000;
0
Ritor1
parents:
diff changeset
8205 else
Ritor1
parents:
diff changeset
8206 pMiscTimer->Resume();
Ritor1
parents:
diff changeset
8207 }
Ritor1
parents:
diff changeset
8208 }
Ritor1
parents:
diff changeset
8209
Ritor1
parents:
diff changeset
8210
Ritor1
parents:
diff changeset
8211 //----- (004524D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
8212 HWLTexture *RenderHWLContainer::LoadTexture(const char *pName, int bMipMaps)
Ritor1
parents:
diff changeset
8213 {
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8214 //int v11; // eax@13
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8215 //int v12; // ecx@13
0
Ritor1
parents:
diff changeset
8216 void *v13; // eax@13
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8217 //unsigned __int8 v14; // zf@13
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8218 //unsigned __int8 v15; // sf@13
0
Ritor1
parents:
diff changeset
8219 int v16; // esi@14
Ritor1
parents:
diff changeset
8220 int v17; // ecx@16
Ritor1
parents:
diff changeset
8221 int v18; // esi@16
Ritor1
parents:
diff changeset
8222 unsigned __int16 *v19; // eax@16
Ritor1
parents:
diff changeset
8223 int v20; // edx@16
Ritor1
parents:
diff changeset
8224 int v21; // ecx@16
Ritor1
parents:
diff changeset
8225 int v22; // eax@16
Ritor1
parents:
diff changeset
8226 int v23; // esi@16
Ritor1
parents:
diff changeset
8227 unsigned __int16 *v26; // [sp+24h] [bp-10h]@13
Ritor1
parents:
diff changeset
8228 int v27; // [sp+28h] [bp-Ch]@14
Ritor1
parents:
diff changeset
8229 int v28; // [sp+2Ch] [bp-8h]@13
Ritor1
parents:
diff changeset
8230 int pDestb; // [sp+3Ch] [bp+8h]@15
Ritor1
parents:
diff changeset
8231
Ritor1
parents:
diff changeset
8232 //v3 = this;
Ritor1
parents:
diff changeset
8233 //sprintf(Str1, "%s", pName);
Ritor1
parents:
diff changeset
8234 //v4 = uNumItems;
Ritor1
parents:
diff changeset
8235 if (!uNumItems)
Ritor1
parents:
diff changeset
8236 return nullptr;
Ritor1
parents:
diff changeset
8237
Ritor1
parents:
diff changeset
8238 //{
Ritor1
parents:
diff changeset
8239 //v5 = 0, pDesta = uNumItems;
Ritor1
parents:
diff changeset
8240 uint idx1 = 0,
Ritor1
parents:
diff changeset
8241 idx2 = uNumItems;
Ritor1
parents:
diff changeset
8242 while (true)
Ritor1
parents:
diff changeset
8243 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8244 uint i = idx1 + (idx2 - idx1) / 2;
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8245
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8246 int res = _stricmp(pName, pSpriteNames[i]);
0
Ritor1
parents:
diff changeset
8247 if (!res)
Ritor1
parents:
diff changeset
8248 {
Ritor1
parents:
diff changeset
8249 fseek(pFile, pSpriteOffsets[i], SEEK_SET);
Ritor1
parents:
diff changeset
8250 break;
Ritor1
parents:
diff changeset
8251 }
Ritor1
parents:
diff changeset
8252 else if (res < 0)
Ritor1
parents:
diff changeset
8253 idx2 = idx1 + (idx2 - idx1) / 2;
Ritor1
parents:
diff changeset
8254 else
Ritor1
parents:
diff changeset
8255 idx1 = i + 1;
Ritor1
parents:
diff changeset
8256
Ritor1
parents:
diff changeset
8257 if ( idx1 >= idx2 )
Ritor1
parents:
diff changeset
8258 return false;
Ritor1
parents:
diff changeset
8259 }
Ritor1
parents:
diff changeset
8260
Ritor1
parents:
diff changeset
8261
Ritor1
parents:
diff changeset
8262 uint uCompressedSize = 0;
Ritor1
parents:
diff changeset
8263 fread(&uCompressedSize, 4, 1, pFile);
Ritor1
parents:
diff changeset
8264
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8265 HWLTexture* pTex = new HWLTexture;
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8266 fread(&pTex->uBufferWidth, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8267 fread(&pTex->uBufferHeight, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8268 fread(&pTex->uAreaWidth, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8269 fread(&pTex->uAreaHeigth, 4, 1, pFile);
0
Ritor1
parents:
diff changeset
8270 fread(&pTex->uWidth, 4, 1, pFile);
Ritor1
parents:
diff changeset
8271 fread(&pTex->uHeight, 4, 1, pFile);
670
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8272 fread(&pTex->uAreaX, 4, 1, pFile);
9824e2eeee30 fixed decorations animation
Gloval
parents: 657
diff changeset
8273 fread(&pTex->uAreaY, 4, 1, pFile);
0
Ritor1
parents:
diff changeset
8274
Ritor1
parents:
diff changeset
8275 pTex->pPixels = new unsigned __int16[pTex->uWidth * pTex->uHeight];
Ritor1
parents:
diff changeset
8276 if (uCompressedSize)
Ritor1
parents:
diff changeset
8277 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8278 char* pCompressedData = new char[uCompressedSize];
0
Ritor1
parents:
diff changeset
8279 {
Ritor1
parents:
diff changeset
8280 fread(pCompressedData, 1, uCompressedSize, pFile);
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1937
diff changeset
8281 uint uDecompressedSize = pTex->uWidth * pTex->uHeight * sizeof(short);
0
Ritor1
parents:
diff changeset
8282 zlib::MemUnzip(pTex->pPixels, &uDecompressedSize, pCompressedData, uCompressedSize);
Ritor1
parents:
diff changeset
8283 }
Ritor1
parents:
diff changeset
8284 delete [] pCompressedData;
Ritor1
parents:
diff changeset
8285 }
Ritor1
parents:
diff changeset
8286 else
Ritor1
parents:
diff changeset
8287 fread(pTex->pPixels, 2, pTex->uWidth * pTex->uHeight, pFile);
Ritor1
parents:
diff changeset
8288
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8289 if ( scale_hwls_to_half )
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8290 {
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8291 pTex->uHeight /= 2;
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8292 pTex->uWidth /= 2;
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8293 v13 = new unsigned __int16[pTex->uWidth * pTex->uHeight];
0
Ritor1
parents:
diff changeset
8294 v28 = 0;
Ritor1
parents:
diff changeset
8295 v26 = (unsigned __int16 *)v13;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8296 if ( pTex->uHeight > 0 )
0
Ritor1
parents:
diff changeset
8297 {
Ritor1
parents:
diff changeset
8298 v16 = pTex->uWidth;
Ritor1
parents:
diff changeset
8299 v27 = 1;
Ritor1
parents:
diff changeset
8300 do
Ritor1
parents:
diff changeset
8301 {
Ritor1
parents:
diff changeset
8302 pDestb = 0;
Ritor1
parents:
diff changeset
8303 if ( v16 > 0 )
Ritor1
parents:
diff changeset
8304 {
Ritor1
parents:
diff changeset
8305 do
Ritor1
parents:
diff changeset
8306 {
Ritor1
parents:
diff changeset
8307 v17 = v16 * v27;
Ritor1
parents:
diff changeset
8308 v18 = v28 * v16;
Ritor1
parents:
diff changeset
8309 v19 = pTex->pPixels;
Ritor1
parents:
diff changeset
8310 v20 = pDestb + 2 * v18;
Ritor1
parents:
diff changeset
8311 v21 = (int)&v19[2 * (pDestb + v17)];
Ritor1
parents:
diff changeset
8312 v22 = (int)&v19[2 * v20];
Ritor1
parents:
diff changeset
8313 LOWORD(v20) = *(unsigned short *)(v21 + 2);
Ritor1
parents:
diff changeset
8314 LOWORD(v21) = *(unsigned short *)v21;
Ritor1
parents:
diff changeset
8315 v23 = pDestb++ + v18;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8316 extern unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4);
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8317 v26[v23] = _452442_color_cvt(*(unsigned short *)v22, *(unsigned short *)(v22 + 2), v21, v20);
0
Ritor1
parents:
diff changeset
8318 v16 = pTex->uWidth;
Ritor1
parents:
diff changeset
8319 }
Ritor1
parents:
diff changeset
8320 while (pDestb < pTex->uWidth);
Ritor1
parents:
diff changeset
8321 }
Ritor1
parents:
diff changeset
8322 ++v28;
Ritor1
parents:
diff changeset
8323 v27 += 2;
Ritor1
parents:
diff changeset
8324 }
Ritor1
parents:
diff changeset
8325 while ( v28 < (signed int)pTex->uHeight );
Ritor1
parents:
diff changeset
8326 }
Ritor1
parents:
diff changeset
8327 delete [] pTex->pPixels;
Ritor1
parents:
diff changeset
8328 pTex->pPixels = v26;
Ritor1
parents:
diff changeset
8329 }
Ritor1
parents:
diff changeset
8330 return pTex;
Ritor1
parents:
diff changeset
8331 }
Ritor1
parents:
diff changeset
8332
Ritor1
parents:
diff changeset
8333 //----- (0045271F) --------------------------------------------------------
Ritor1
parents:
diff changeset
8334 bool RenderHWLContainer::Release()
Ritor1
parents:
diff changeset
8335 {
Ritor1
parents:
diff changeset
8336 __int32 v4; // eax@6
Ritor1
parents:
diff changeset
8337 FILE *v5; // ST24_4@6
Ritor1
parents:
diff changeset
8338 FILE *File; // [sp+4h] [bp-4h]@6
Ritor1
parents:
diff changeset
8339
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8340 if ( this->bDumpDebug)
0
Ritor1
parents:
diff changeset
8341 {
Ritor1
parents:
diff changeset
8342 File = fopen("logd3d.txt", "w");
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8343 v4 = ftell(this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8344 v5 = this->pFile;
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8345 this->uDataOffset = v4;
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8346 fwrite(&this->uNumItems, 4u, 1u, v5);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8347 for (int i = 0; i < this->uNumItems; i++)
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8348 {
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8349 fwrite(this->pSpriteNames[i], 1u, 0x14u, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8350 fprintf(File, "D3D texture name: %s\t\toffset: %x\n", this->pSpriteNames[i], *(unsigned int *)(&(this->pSpriteNames[i]) + 200000/sizeof(char*)));
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8351 }
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8352 fwrite(this->pSpriteOffsets, 4u, this->uNumItems, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8353 fseek(this->pFile, 4, 0);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8354 fwrite(&this->uDataOffset, 4u, 1u, this->pFile);
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8355 fclose(this->pFile);
0
Ritor1
parents:
diff changeset
8356 fclose(File);
Ritor1
parents:
diff changeset
8357 }
Ritor1
parents:
diff changeset
8358 else
Ritor1
parents:
diff changeset
8359 {
Ritor1
parents:
diff changeset
8360 fclose(this->pFile);
1162
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8361 for (int i = 0; i < this->uNumItems; i++)
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8362 {
79fd2fb7a3ab RenderHWLContainer::Release cleanup
Grumpy7
parents: 1159
diff changeset
8363 free(this->pSpriteNames[i]);
0
Ritor1
parents:
diff changeset
8364 }
Ritor1
parents:
diff changeset
8365 }
1093
c59ac5ea63f5 * stru154::GetFacePlane mistake fixed
zipi
parents: 1075
diff changeset
8366 return true;
0
Ritor1
parents:
diff changeset
8367 }
Ritor1
parents:
diff changeset
8368
Ritor1
parents:
diff changeset
8369 //----- (00452347) --------------------------------------------------------
Ritor1
parents:
diff changeset
8370 RenderHWLContainer::RenderHWLContainer():
Ritor1
parents:
diff changeset
8371 bDumpDebug(false)
Ritor1
parents:
diff changeset
8372 {
Ritor1
parents:
diff changeset
8373 this->pFile = 0;
Ritor1
parents:
diff changeset
8374 uSignature = 0;
1164
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8375 this->uDataOffset = 0;
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8376 memset(&this->uNumItems, 0, 0x61A84u);
6b911d7e09a5 RenderHWLContainer::RenderHWLContainer, Render::SetPixel, Render::ChangeBetweenWinFullscreenModes cleanup
Grumpy7
parents: 1162
diff changeset
8377 this->uNumItems = 0;
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1574
diff changeset
8378 this->scale_hwls_to_half = false;
0
Ritor1
parents:
diff changeset
8379 }
Ritor1
parents:
diff changeset
8380
Ritor1
parents:
diff changeset
8381 //----- (0045237F) --------------------------------------------------------
Ritor1
parents:
diff changeset
8382 bool RenderHWLContainer::Load(const wchar_t *pFilename)
Ritor1
parents:
diff changeset
8383 {
Ritor1
parents:
diff changeset
8384 pFile = _wfopen(pFilename, L"rb");
Ritor1
parents:
diff changeset
8385 if (!pFile)
Ritor1
parents:
diff changeset
8386 {
Ritor1
parents:
diff changeset
8387 Log::Warning(L"Failed to open file: %s", pFilename);
Ritor1
parents:
diff changeset
8388 return false;
Ritor1
parents:
diff changeset
8389 }
Ritor1
parents:
diff changeset
8390
Ritor1
parents:
diff changeset
8391 fread(&uSignature, 1, 4, pFile);
Ritor1
parents:
diff changeset
8392 if (uSignature != 'TD3D')
Ritor1
parents:
diff changeset
8393 {
Ritor1
parents:
diff changeset
8394 Log::Warning(L"Invalid format: %s", pFilename);
Ritor1
parents:
diff changeset
8395 return false;
Ritor1
parents:
diff changeset
8396 }
Ritor1
parents:
diff changeset
8397
Ritor1
parents:
diff changeset
8398 fread(&uDataOffset, 4, 1, pFile);
Ritor1
parents:
diff changeset
8399 fseek(pFile, uDataOffset, SEEK_SET);
Ritor1
parents:
diff changeset
8400 fread(&uNumItems, 4, 1, pFile);
Ritor1
parents:
diff changeset
8401
Ritor1
parents:
diff changeset
8402 memset(pSpriteNames, 0, 50000 * sizeof(char *));
Ritor1
parents:
diff changeset
8403 for (uint i = 0; i < uNumItems; ++i)
Ritor1
parents:
diff changeset
8404 {
Ritor1
parents:
diff changeset
8405 pSpriteNames[i] = new char[20];
Ritor1
parents:
diff changeset
8406 fread(pSpriteNames[i], 1, 20, pFile);
Ritor1
parents:
diff changeset
8407 }
Ritor1
parents:
diff changeset
8408 fread(pSpriteOffsets, 4, uNumItems, pFile);
Ritor1
parents:
diff changeset
8409
Ritor1
parents:
diff changeset
8410 return true;
Ritor1
parents:
diff changeset
8411 }
Ritor1
parents:
diff changeset
8412
Ritor1
parents:
diff changeset
8413 //----- (004A1C1E) --------------------------------------------------------
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8414 void Render::DoRenderBillboards_D3D()
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8415 {
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8416 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8417 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8418 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8419 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8420
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8421 /*if (pRenderer->uNumBillboardsToDraw)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8422 {
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8423 auto p = &pRenderer->pBillboardRenderListD3D[0];
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8424 for (int i = 0; i < p->uNumVertices; ++i)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8425 {
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8426 p->pQuads[i].pos.z -= p->pQuads[i].pos.z * 0.6;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8427 //p->pQuads[i].rhw = + 0.8 * (1.0f - p->pQuads[i].rhw);
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8428 }
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8429 p->pQuads[0].pos.x = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8430 p->pQuads[0].pos.y = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8431
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8432 p->pQuads[1].pos.x = 10;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8433 p->pQuads[1].pos.y = 200;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8434
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8435 p->pQuads[2].pos.x = 100;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8436 p->pQuads[2].pos.y = 200;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8437
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8438 p->pQuads[3].pos.x = 100;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8439 p->pQuads[3].pos.y = 10;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8440
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8441 if (p->uOpacity != RenderBillboardD3D::NoBlend)
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8442 SetBillboardBlendOptions(p->uOpacity);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8443
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8444 pRenderer->pRenderD3D->pDevice->SetTexture(0, p->pTexture);
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8445 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8446 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1344
diff changeset
8447 p->pQuads, p->uNumVertices,
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8448 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS));
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8449
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8450 }*/
0
Ritor1
parents:
diff changeset
8451
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8452 for (int i = uNumBillboardsToDraw - 1; i >= 0; --i)
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8453 {
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
8454 if (pBillboardRenderListD3D[i].opacity != RenderBillboardD3D::NoBlend)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
8455 SetBillboardBlendOptions(pBillboardRenderListD3D[i].opacity);
2114
68fbaf45ef66 _42FB5C_check_spell cleaned
Ritor1
parents: 2102
diff changeset
8456
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8457 pRenderD3D->pDevice->SetTexture(0, pBillboardRenderListD3D[i].pTexture);
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8458 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8459 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8460 pBillboardRenderListD3D[i].pQuads, pBillboardRenderListD3D[i].uNumVertices,
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8461 D3DDP_DONOTLIGHT | D3DDP_DONOTUPDATEEXTENTS));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8462 }
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8463
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8464 if (bFogEnabled)
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8465 {
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8466 bFogEnabled = false;
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8467 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8468 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8469 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8470 }
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8471 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8472 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8473 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8474 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8475 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8476 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8477 }
Ritor1
parents:
diff changeset
8478
Ritor1
parents:
diff changeset
8479 //----- (004A1DA8) --------------------------------------------------------
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8480 void Render::SetBillboardBlendOptions(RenderBillboardD3D::OpacityType a1)
0
Ritor1
parents:
diff changeset
8481 {
Ritor1
parents:
diff changeset
8482 switch (a1)
Ritor1
parents:
diff changeset
8483 {
Ritor1
parents:
diff changeset
8484 case RenderBillboardD3D::Transparent:
Ritor1
parents:
diff changeset
8485 {
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8486 if (bFogEnabled)
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8487 {
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8488 bFogEnabled = false;
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8489 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8490 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, GetLevelFogColor() & 0xFFFFFF));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8491 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8492 }
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8493
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8494 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8495 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8496 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0
Ritor1
parents:
diff changeset
8497 }
Ritor1
parents:
diff changeset
8498 break;
Ritor1
parents:
diff changeset
8499
Ritor1
parents:
diff changeset
8500 case RenderBillboardD3D::Opaque_1:
Ritor1
parents:
diff changeset
8501 case RenderBillboardD3D::Opaque_2:
Ritor1
parents:
diff changeset
8502 case RenderBillboardD3D::Opaque_3:
Ritor1
parents:
diff changeset
8503 {
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8504 if (bUsingSpecular)
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8505 {
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8506 if (!bFogEnabled)
0
Ritor1
parents:
diff changeset
8507 {
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8508 bFogEnabled = true;
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8509 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8510 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8511 }
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 179
diff changeset
8512
2153
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8513 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8514 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
d28d3c006077 Some Render decoupling.
Nomad
parents: 2152
diff changeset
8515 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0
Ritor1
parents:
diff changeset
8516 }
Ritor1
parents:
diff changeset
8517 break;
Ritor1
parents:
diff changeset
8518
Ritor1
parents:
diff changeset
8519 default:
Ritor1
parents:
diff changeset
8520 Log::Warning(L"SetBillboardBlendOptions: invalid opacity type (%u)", a1);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 143
diff changeset
8521 assert(false);
0
Ritor1
parents:
diff changeset
8522 break;
Ritor1
parents:
diff changeset
8523 }
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8524 }
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8525 //----- (00424CD7) --------------------------------------------------------
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8526 int ODM_NearClip(unsigned int num_vertices)
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8527 {
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8528 bool current_vertices_flag; // edi@1
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8529 bool next_vertices_flag; // [sp+Ch] [bp-24h]@6
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8530 double t; // st6@10
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8531 bool bFound;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8532
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8533 bFound = false;
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8534
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8535 if (!num_vertices)
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8536 return 0;
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8537 for (uint i = 0; i < num_vertices; ++i)// åñòü ëè ïîãðàíè÷íûå âåðøèíû
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8538 {
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8539 if ( array_50AC10[i].vWorldViewPosition.x > 8.0 )
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8540 {
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8541 bFound = true;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8542 break;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8543 }
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8544 }
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8545 if ( !bFound )
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8546 return 0;
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8547
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8548 memcpy(&array_50AC10[num_vertices], &array_50AC10[0], sizeof(array_50AC10[0]));
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8549 current_vertices_flag = false;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8550 next_vertices_flag = false;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8551 if ( array_50AC10[0].vWorldViewPosition.x <= 8.0 )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8552 current_vertices_flag = true;
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8553 //check for near clip plane(ïðîâåðêà ïî áëèæíåé ãðàíèöå)
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8554 //
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8555 // v3.__________________. v0
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8556 // | |
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8557 // | |
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8558 // | |
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8559 // ----------------------- 8.0(near_clip - 8.0)
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8560 // | |
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8561 // .__________________.
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8562 // v2 v1
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8563
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8564 int out_num_vertices = 0;
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8565 for (int i = 0; i < num_vertices; ++i)
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8566 {
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8567 next_vertices_flag = array_50AC10[i + 1].vWorldViewPosition.x <= 8.0;//
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8568 if ( current_vertices_flag ^ next_vertices_flag )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8569 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8570 if ( next_vertices_flag )//ñëåäóþùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8571 {
2191
48a28fe1f32f pInventoryItemList->Reset()
Ritor1
parents: 2182
diff changeset
8572 //t = near_clip - v0.x / v1.x - v0.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ)
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8573 t = (8.0 - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i + 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x);
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8574 array_507D30[out_num_vertices].vWorldViewPosition.x = 8.0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8575 array_507D30[out_num_vertices].vWorldViewPosition.y = array_50AC10[i].vWorldViewPosition.y + (array_50AC10[i + 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8576 array_507D30[out_num_vertices].vWorldViewPosition.z = array_50AC10[i].vWorldViewPosition.z + (array_50AC10[i + 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8577 array_507D30[out_num_vertices].u = array_50AC10[i].u + (array_50AC10[i + 1].u - array_50AC10[i].u) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8578 array_507D30[out_num_vertices].v = array_50AC10[i].v + (array_50AC10[i + 1].v - array_50AC10[i].v) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8579 array_507D30[out_num_vertices]._rhw = 1.0 / 8.0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8580 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8581 else// òåêóùàÿ âåðøèíà çà áëèæíåé ãðàíèöåé
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8582 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8583 t = (8.0 - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i + 1].vWorldViewPosition.x);
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8584 array_507D30[out_num_vertices].vWorldViewPosition.x = 8.0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8585 array_507D30[out_num_vertices].vWorldViewPosition.y = array_50AC10[i].vWorldViewPosition.y + (array_50AC10[i].vWorldViewPosition.y - array_50AC10[i + 1].vWorldViewPosition.y) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8586 array_507D30[out_num_vertices].vWorldViewPosition.z = array_50AC10[i].vWorldViewPosition.z + (array_50AC10[i].vWorldViewPosition.z - array_50AC10[i + 1].vWorldViewPosition.z) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8587 array_507D30[out_num_vertices].u = array_50AC10[i].u + (array_50AC10[i].u - array_50AC10[i + 1].u) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8588 array_507D30[out_num_vertices].v = array_50AC10[i].v + (array_50AC10[i].v - array_50AC10[i + 1].v) * t;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8589 array_507D30[out_num_vertices]._rhw = 1.0 / 8.0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8590 }
1904
Ritor1
parents: 1903
diff changeset
8591 //array_507D30[out_num_vertices]._rhw = 0x3E000000u;
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8592 ++out_num_vertices;
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8593 }
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8594 if ( !next_vertices_flag )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8595 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8596 memcpy(&array_507D30[out_num_vertices], &array_50AC10[i + 1], sizeof(array_50AC10[i + 1]));
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8597 out_num_vertices++;
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8598 }
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8599 current_vertices_flag = next_vertices_flag;
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8600 }
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8601 return out_num_vertices >= 3 ? out_num_vertices : 0;
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8602 }
2321
53c9d34024d6 near_clip error
Ritor1
parents: 2320
diff changeset
8603
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8604 //----- (00424EE0) --------------------------------------------------------
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8605 int ODM_FarClip(unsigned int uNumVertices)
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8606 {
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8607 bool current_vertices_flag; // [sp+Ch] [bp-28h]@6
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8608 bool next_vertices_flag; // edi@1
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8609 double t; // st6@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8610 signed int depth_num_vertices; // [sp+18h] [bp-1Ch]@1
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8611 bool bFound;
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8612 //Äîï èíôî "Ïðîãðàììèðîâàíèå òð¸õìåðíûõ èãð äëÿ windows" Ëàìîò ñòð 910
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8613
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8614 bFound = false;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8615
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8616 memcpy(&array_50AC10[uNumVertices], &array_50AC10[0], sizeof(array_50AC10[uNumVertices]));
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8617 depth_num_vertices = 0;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8618 current_vertices_flag = false;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8619 if ( array_50AC10[0].vWorldViewPosition.x >= pODMRenderParams->shading_dist_mist )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8620 current_vertices_flag = true;//íàñòîÿùàÿ âåðøèíà áîëüøå ãðàíèöû âèäèìîñòè
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8621 if ( (signed int)uNumVertices <= 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8622 return 0;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8623 for (uint i = 0; i < uNumVertices; ++i)// åñòü ëè ïîãðàíè÷íûå âåðøèíû
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8624 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8625 if ( array_50AC10[i].vWorldViewPosition.x < pODMRenderParams->shading_dist_mist )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8626 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8627 bFound = true;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8628 break;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8629 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8630 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8631 if ( !bFound )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8632 return 0;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8633 //check for far clip plane(ïðîâåðêà ïî äàëüíåé ãðàíèöå)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8634 //
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8635 // v3.__________________. v0
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8636 // | |
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8637 // | |
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8638 // | |
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8639 // ----------------------- 8192.0(far_clip - 0x2000)
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8640 // | |
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8641 // .__________________.
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8642 // v2 v1
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8643
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8644 for ( uint i = 0; i < uNumVertices; ++i )
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8645 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8646 next_vertices_flag = array_50AC10[i + 1].vWorldViewPosition.x >= pODMRenderParams->shading_dist_mist;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8647 if ( current_vertices_flag ^ next_vertices_flag )//îäíà èç ãðàíåé çà ãðàíèöåé âèäèìîñòè
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8648 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8649 if ( next_vertices_flag )//ñëåäóþùàÿ âåðøèíà áîëüøå ãðàíèöû âèäèìîñòè(íàñòîÿùàÿ âåðøèíà ìåíüøå ãðàíèöû âèäèìîñòè) - v3
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8650 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8651 //t = far_clip - v2.x / v3.x - v2.x (ôîðìóëà ïîëó÷åíèÿ òî÷êè ïåðåñå÷åíèÿ îòðåçêà ñ ïëîñêîñòüþ)
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8652 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i].vWorldViewPosition.x - array_50AC10[i + 1].vWorldViewPosition.x);
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8653 array_507D30[depth_num_vertices].vWorldViewPosition.x = pODMRenderParams->shading_dist_mist;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8654 //New_y = v2.y + (v3.y - v2.y)*t
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8655 array_507D30[depth_num_vertices].vWorldViewPosition.y = array_50AC10[i].vWorldViewPosition.y + (array_50AC10[i].vWorldViewPosition.y - array_50AC10[i + 1].vWorldViewPosition.y) * t;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8656 //New_z = v2.z + (v3.z - v2.z)*t
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8657 array_507D30[depth_num_vertices].vWorldViewPosition.z = array_50AC10[i].vWorldViewPosition.z + (array_50AC10[i].vWorldViewPosition.z - array_50AC10[i + 1].vWorldViewPosition.z) * t;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8658 array_507D30[depth_num_vertices].u = array_50AC10[i].u + (array_50AC10[i].u - array_50AC10[i + 1].u) * t;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8659 array_507D30[depth_num_vertices].v = array_50AC10[i].v + (array_50AC10[i].v - array_50AC10[i + 1].v) * t;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8660 array_507D30[depth_num_vertices]._rhw = 1.0 / pODMRenderParams->shading_dist_mist;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8661 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8662 else//íàñòîÿùàÿ âåðøèíà áîëüøå ãðàíèöû âèäèìîñòè(ñëåäóþùàÿ âåðøèíà ìåíüøå ãðàíèöû âèäèìîñòè) - v0
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8663 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8664 //t = far_clip - v1.x / v0.x - v1.x
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8665 t = (pODMRenderParams->shading_dist_mist - array_50AC10[i].vWorldViewPosition.x) / (array_50AC10[i + 1].vWorldViewPosition.x - array_50AC10[i].vWorldViewPosition.x);
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8666 array_507D30[depth_num_vertices].vWorldViewPosition.x = pODMRenderParams->shading_dist_mist;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8667 //New_y = (v0.y - v1.y)*t + v1.y
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8668 array_507D30[depth_num_vertices].vWorldViewPosition.y = array_50AC10[i].vWorldViewPosition.y + (array_50AC10[i + 1].vWorldViewPosition.y - array_50AC10[i].vWorldViewPosition.y) * t;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8669 //New_z = (v0.z - v1.z)*t + v1.z
2320
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8670 array_507D30[depth_num_vertices].vWorldViewPosition.z = array_50AC10[i].vWorldViewPosition.z + (array_50AC10[i + 1].vWorldViewPosition.z - array_50AC10[i].vWorldViewPosition.z) * t;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8671 array_507D30[depth_num_vertices].u = array_50AC10[i].u + (array_50AC10[i + 1].u - array_50AC10[i].u) * t;
847aba0b7f82 draw terrain distance
Ritor1
parents: 2318
diff changeset
8672 array_507D30[depth_num_vertices].v = array_50AC10[i].v + (array_50AC10[i + 1].v - array_50AC10[i].v) * t;
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8673 array_507D30[depth_num_vertices]._rhw = 1.0 / pODMRenderParams->shading_dist_mist;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8674 }
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8675 ++depth_num_vertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8676 }
2318
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8677 if ( !next_vertices_flag )//îáà â ãðàíèöå âèäèìîñòè
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8678 {
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8679 memcpy(&array_507D30[depth_num_vertices], &array_50AC10[i + 1], sizeof(array_507D30[depth_num_vertices]));
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8680 depth_num_vertices++;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8681 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8682 current_vertices_flag = next_vertices_flag;
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8683 }
133882370e83 far_clip and near_clip for draw terrain
Ritor1
parents: 2316
diff changeset
8684 return depth_num_vertices >= 3 ? depth_num_vertices : 0;
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8685 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8686
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8687 //----- (0047840D) --------------------------------------------------------
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8688 void Render::DrawBuildingsD3D()
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8689 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8690 int v9; // ecx@8
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8691 Texture *pFaceTexture; // eax@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8692 unsigned int v16; // edi@22
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8693 int v27; // eax@57
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
8694 // int vertex_id; // eax@58
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8695 unsigned int v34; // eax@80
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8696 int v40; // [sp-4h] [bp-5Ch]@2
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8697 int v49; // [sp+2Ch] [bp-2Ch]@10
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8698 int v50; // [sp+30h] [bp-28h]@34
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8699 int v51; // [sp+34h] [bp-24h]@35
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8700 int v52; // [sp+38h] [bp-20h]@36
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8701 int v53; // [sp+3Ch] [bp-1Ch]@8
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8702 int uNumVertices; // [sp+4Ch] [bp-Ch]@34
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8703 int unused; // [sp+50h] [bp-8h]@3
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8704
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8705 if ( !pRenderer->pRenderD3D )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8706 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8707 MessageBoxW(nullptr, L"D3D version of RenderBuildings called in software!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Odbuild.cpp:73", 0);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8708 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8709
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8710 unused = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8711 if ( (signed int)pOutdoor->uNumBModels > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8712 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8713 for ( uint model_id = 0; model_id < pOutdoor->uNumBModels; model_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8714 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8715 if ( IsBModelVisible(model_id, &unused) )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8716 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8717 pOutdoor->pBModels[model_id].field_40 |= 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8718 if ( pOutdoor->pBModels[model_id].uNumFaces > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8719 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8720 for ( int face_id = 0; face_id < pOutdoor->pBModels[model_id].uNumFaces; face_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8721 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8722 if (!pOutdoor->pBModels[model_id].pFaces[face_id].Invisible())
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8723 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8724 v53 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8725 array_77EC08[pODMRenderParams->uNumPolygons].flags = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8726 array_77EC08[pODMRenderParams->uNumPolygons].field_32 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8727 v9 = pOutdoor->pBModels[model_id].pFaces[face_id].uTextureID;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8728 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_TEXTURE_FRAME)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8729 v9 = pTextureFrameTable->GetFrameTexture(v9, pEventTimer->uTotalGameTimeElapsed);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8730 pFaceTexture = pBitmaps_LOD->GetTexture(v9);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8731 array_77EC08[pODMRenderParams->uNumPolygons].pTexture = pFaceTexture;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8732 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_FLUID)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8733 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 2;
1922
e60d9df73428 DrawIndoorPolygonSky
Ritor1
parents: 1913
diff changeset
8734 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_INDOOR_SKY )
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8735 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4;
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
8736 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW8 )
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8737 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 4;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8738 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8739 {
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
8740 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW9 )
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8741 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 8;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8742 }
2166
00bd098f6435 fixpoint_mul in different functions and others
Ritor1
parents: 2155
diff changeset
8743 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_UNKNOW10)
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8744 array_77EC08[pODMRenderParams->uNumPolygons].flags |= 0x2000;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8745 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8746 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8747 if (pOutdoor->pBModels[model_id].pFaces[face_id].uAttributes & FACE_DONT_CACHE_TEXTURE)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8748 HIBYTE(array_77EC08[pODMRenderParams->uNumPolygons].flags) |= 0x10u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8749 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8750 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaU;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8751 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV = pOutdoor->pBModels[model_id].pFaces[face_id].sTextureDeltaV;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8752 v16 = GetTickCount() >> 4;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8753 if ( pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z && abs(pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z) >= 59082 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8754 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8755 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8756 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8757 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8758 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8759 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8760 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8761 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8762 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 4 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8763 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8764 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 8 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8765 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uHeightMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8766 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8767 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x10 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8768 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU -= v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8769 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8770 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8771 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x20 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8772 array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU += v16 & array_77EC08[pODMRenderParams->uNumPolygons].pTexture->uWidthMinus1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8773 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8774 v50 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8775 v49 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8776 uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8777 if ( pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8778 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8779 for ( uint vertex_id = 1; vertex_id <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; vertex_id++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8780 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8781 array_73D150[vertex_id - 1].vWorldPosition.x = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].x;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8782 array_73D150[vertex_id - 1].vWorldPosition.y = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].y;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8783 array_73D150[vertex_id - 1].vWorldPosition.z = pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[vertex_id - 1]].z;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8784 array_73D150[vertex_id - 1].u = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaU + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureUIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureWidth);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8785 array_73D150[vertex_id - 1].v = (array_77EC08[pODMRenderParams->uNumPolygons].sTextureDeltaV + (signed __int16)pOutdoor->pBModels[model_id].pFaces[face_id].pTextureVIDs[vertex_id - 1]) * (1.0 / (double)pFaceTexture->uTextureHeight);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8786 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8787 for ( uint i = 1; i <= pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; i++ )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8788 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8789 if ( pOutdoor->pBModels[model_id].pVertices.pVertices[pOutdoor->pBModels[model_id].pFaces[face_id].pVertexIDs[0]].z == array_73D150[i - 1].vWorldPosition.z )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8790 ++v53;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8791 pGame->pIndoorCameraD3D->ViewTransform(&array_73D150[i - 1], 1);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8792 if ( array_73D150[i - 1].vWorldViewPosition.x < 8.0 || array_73D150[i - 1].vWorldViewPosition.x > pODMRenderParams->shading_dist_mist )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8793 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8794 if ( array_73D150[i - 1].vWorldViewPosition.x >= 8.0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8795 v49 = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8796 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8797 v50 = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8798 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8799 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8800 pGame->pIndoorCameraD3D->Project(&array_73D150[i - 1], 1, 0);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8801 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8802 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8803 if ( v53 == pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8804 LOBYTE(array_77EC08[pODMRenderParams->uNumPolygons].field_32) |= 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8805 array_77EC08[pODMRenderParams->uNumPolygons].pODMFace = &pOutdoor->pBModels[model_id].pFaces[face_id];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8806 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8807 array_77EC08[pODMRenderParams->uNumPolygons].field_59 = 5;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8808 v51 = fixpoint_mul(-pOutdoor->vSunlight.x, pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.x);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8809 v53 = fixpoint_mul(-pOutdoor->vSunlight.y, pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.y);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8810 v52 = fixpoint_mul(-pOutdoor->vSunlight.z, pOutdoor->pBModels[model_id].pFaces[face_id].pFacePlane.vNormal.z);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8811 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 20 - fixpoint_mul(20, v51 + v53 + v52);
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8812 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level < 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8813 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8814 if ( array_77EC08[pODMRenderParams->uNumPolygons].dimming_level > 31 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8815 array_77EC08[pODMRenderParams->uNumPolygons].dimming_level = 31;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8816 if ( pODMRenderParams->uNumPolygons >= 1999 + 5000)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8817 return;
2169
5b27c035a241 small cleaning
Ritor1
parents: 2166
diff changeset
8818 if ( ODMFace::IsBackfaceCulled(array_73D150, &array_77EC08[pODMRenderParams->uNumPolygons]) )
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8819 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8820 pOutdoor->pBModels[model_id].pFaces[face_id].bVisible = 1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8821 array_77EC08[pODMRenderParams->uNumPolygons].uBModelFaceID = face_id;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8822 array_77EC08[pODMRenderParams->uNumPolygons].uBModelID = model_id;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8823 v27 = 8 * (face_id | (model_id << 6));
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8824 LOBYTE(v27) = v27 | 6;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8825 array_77EC08[pODMRenderParams->uNumPolygons].field_50 = v27;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8826 for ( int vertex_id = 0; vertex_id < pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices; ++vertex_id)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8827 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8828 memcpy(&array_50AC10[vertex_id], &array_73D150[vertex_id], sizeof(array_50AC10[vertex_id]));
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8829 array_50AC10[vertex_id]._rhw = 1.0 / (array_73D150[vertex_id].vWorldViewPosition.x + 0.0000001);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8830 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8831 static stru154 static_RenderBuildingsD3D_stru_73C834;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8832 /*static bool __init_flag = false;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8833 if (!__init_flag)
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8834 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8835 __init_flag = true;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8836 static_RenderBuildingsD3D_byte_73C84C_init_flag |= 1u;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8837 stru154::stru154(&static_RenderBuildingsD3D_stru_73C834);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8838 atexit(loc_4789D4);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8839 }*/
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8840
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8841 v40 = (int)&pOutdoor->pBModels[model_id].pFaces[face_id];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8842 pGame->pLightmapBuilder->ApplyLights_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8843 pDecalBuilder->ApplyDecals_OutdoorFace(&pOutdoor->pBModels[model_id].pFaces[face_id]);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8844 pGame->pLightmapBuilder->std__vector_000004_size = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8845 int v31 = 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8846 if ( stru_F8AD28.uNumLightsApplied > 0 || pDecalBuilder->uNumDecals > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8847 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8848 v31 = v50 ? 3 : v49 != 0 ? 5 : 0;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8849 static_RenderBuildingsD3D_stru_73C834.GetFacePlaneAndClassify(&pOutdoor->pBModels[model_id].pFaces[face_id], &pOutdoor->pBModels[model_id].pVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8850 if ( pDecalBuilder->uNumDecals > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8851 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8852 v40 = -1;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8853 pDecalBuilder->ApplyDecals(31 - array_77EC08[pODMRenderParams->uNumPolygons].dimming_level, 2, &static_RenderBuildingsD3D_stru_73C834,
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8854 pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices, array_50AC10, 0, (char)v31, -1);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8855 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8856 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8857 if ( stru_F8AD28.uNumLightsApplied > 0 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8858 pGame->pLightmapBuilder->ApplyLights(&stru_F8AD28, &static_RenderBuildingsD3D_stru_73C834, uNumVertices, array_50AC10, 0, (char)v31);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8859 if ( v50 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8860 {
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8861 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_NearClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices);
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8862 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8863 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8864 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8865 if ( v49 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8866 {
1903
79ac2dbedfb9 ODM_NearClip and ODM_FarClip
Ritor1
parents: 1844
diff changeset
8867 array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices = ODM_FarClip(pOutdoor->pBModels[model_id].pFaces[face_id].uNumVertices);
1787
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8868 uNumVertices = array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices;
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8869 ODM_Project(array_77EC08[pODMRenderParams->uNumPolygons].uNumVertices);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8870 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8871 if ( uNumVertices )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8872 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8873 if ( array_77EC08[pODMRenderParams->uNumPolygons].flags & 2 )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8874 {
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8875 if ( BYTE1(array_77EC08[pODMRenderParams->uNumPolygons].flags) & 0x3C )
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8876 v34 = pRenderer->pHDWaterBitmapIDs[0];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8877 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8878 v34 = pRenderer->pHDWaterBitmapIDs[pRenderer->hd_water_current_frame];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8879 v40 = (int)pBitmaps_LOD->pHardwareTextures[v34];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8880 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8881 else
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8882 v40 = (int)pBitmaps_LOD->pHardwareTextures[v9];
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8883 pRenderer->DrawPolygon(uNumVertices, &array_77EC08[pODMRenderParams->uNumPolygons], &pOutdoor->pBModels[model_id].pFaces[face_id], (IDirect3DTexture2 *)v40);
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8884 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8885 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8886 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8887 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8888 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8889 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8890 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8891 }
0c4d3c6a9d5a DrawBuildingsD3D cleared
Ritor1
parents: 1679
diff changeset
8892 return;
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8893 }
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8894 //----- (00479543) --------------------------------------------------------
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
8895 void Render::DrawOutdoorSkyD3D()
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8896 {
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8897 int v9; // eax@4
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8898 int v10; // ebx@4
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8899 int v13; // edi@6
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8900 int v14; // ecx@6
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8901 int v15; // eax@8
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8902 int v16; // eax@12
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8903 signed __int64 v17; // qtt@13
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8904 signed int v18; // ecx@13
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8905 struct Polygon pSkyPolygon; // [sp+14h] [bp-150h]@1
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8906 int v30; // [sp+134h] [bp-30h]@1
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8907 int v32; // [sp+13Ch] [bp-28h]@6
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8908 int v33; // [sp+140h] [bp-24h]@2
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8909 signed __int64 v34; // [sp+144h] [bp-20h]@1
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8910 int v35; // [sp+148h] [bp-1Ch]@4
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8911 int v36; // [sp+14Ch] [bp-18h]@2
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8912 int v37; // [sp+154h] [bp-10h]@8
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8913 int v38; // [sp+158h] [bp-Ch]@1
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8914 int v39; // [sp+15Ch] [bp-8h]@4
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8915
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8916 v30 = (signed __int64)((double)(pODMRenderParams->int_fov_rad * pGame->pIndoorCameraD3D->vPartyPos.z)
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8917 / ((double)pODMRenderParams->int_fov_rad + 8192.0)
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8918 + (double)(pViewport->uScreenCenterY));
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8919 v34 = cos((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064) * 0x2000;//(double)pODMRenderParams->shading_dist_mist, 8192
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8920 v38 = (signed __int64)((double)(pViewport->uScreenCenterY)
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8921 - (double)pODMRenderParams->int_fov_rad
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8922 / (v34 + 0.0000001)
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8923 * (sin((double)pGame->pIndoorCameraD3D->sRotationX * 0.0030664064)
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8924 * (double)-0x2000//(double)pODMRenderParams->shading_dist_mist
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8925 - (double)pGame->pIndoorCameraD3D->vPartyPos.z));
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8926 pSkyPolygon.Create_48607B(&stru_8019C8);//çàïîëíÿåòñÿ ptr_38
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8927 pSkyPolygon.ptr_38->_48694B_frustum_sky();
2006
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8928 pSkyPolygon.uTileBitmapID = pOutdoor->sSky_TextureID;//179(original 166)
30c2b575d25c signed fixes
zipi
parents: 2002
diff changeset
8929 pSkyPolygon.pTexture = (Texture *)(SLOWORD(pOutdoor->sSky_TextureID) != -1 ? (int)&pBitmaps_LOD->pTextures[SLOWORD(pOutdoor->sSky_TextureID)] : 0);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8930 if ( pSkyPolygon.pTexture )
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8931 {
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8932 pSkyPolygon.dimming_level = 0;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8933 pSkyPolygon.uNumVertices = 4;
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8934 //centering(öåíòðóåì)-----------------------------------------------------------------
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8935 pSkyPolygon.v_18.x = -stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX + 16);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8936 pSkyPolygon.v_18.y = 0;
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8937 pSkyPolygon.v_18.z = -stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX + 16);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8938
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8939 //sky wiew position(ïîëîæåíèå íåáà íà ýêðàíå)------------------------------------------
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8940 // X
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8941 // 0._____________________________.3
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8942 // |8,8 468,8 |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8943 // | |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8944 // | |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8945 // Y| |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8946 // | |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8947 // |8,351 468,351 |
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8948 // 1._____________________________.2
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8949 //
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8950 array_50AC10[0].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X;//8
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8951 array_50AC10[0].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y;//8
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8952
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8953 array_50AC10[1].vWorldViewProjX = (double)(signed int)pViewport->uViewportTL_X;//8
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8954 array_50AC10[1].vWorldViewProjY = (double)v38;//247
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8955
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8956 array_50AC10[2].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X;//468
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8957 array_50AC10[2].vWorldViewProjY = (double)v38;//247
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8958
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8959 array_50AC10[3].vWorldViewProjX = (double)(signed int)pViewport->uViewportBR_X;//468
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8960 array_50AC10[3].vWorldViewProjY = (double)(signed int)pViewport->uViewportTL_Y;//8
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8961
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8962 pSkyPolygon.sTextureDeltaU = 224 * pMiscTimer->uTotalGameTimeElapsed;//7168
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8963 pSkyPolygon.sTextureDeltaV = 224 * pMiscTimer->uTotalGameTimeElapsed;//7168
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8964
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8965 pSkyPolygon.field_24 = 0x2000000u;//maybe attributes
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8966 v33 = 65536 / (signed int)(signed __int64)(((double)(pViewport->uViewportBR_X - pViewport->uViewportTL_X) / 2) / tan(0.6457717418670654) + 0.5);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8967 for ( uint i = 0; i < pSkyPolygon.uNumVertices; ++i )
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8968 {
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8969 //rotate skydome(âðàùåíèå êóïîëà íåáà)--------------------------------------
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8970 //  èãðå ïðèíÿòà ñâîÿ ñèñòåìà èçìåðåíèÿ óãëîâ. Ïîëíûé óãîë (180). Çíà÷åíèþ óãëà 0 ñîîòâåòñòâóåò
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8971 // íàïðàâëåíèå íà ñåâåð è/èëè þã (ëèáî íà âîñòîê è/èëè çàïàä), çíà÷åíèþ 65536 åäåíèöàì(0õ10000) ñîîòâåòñòâóåò óãîë 90.
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8972 // äâå ïåðåìåííûå õðàíÿò äàííûå ïî óãëó îáçîðà. field_14 ïî çàïàäó è âîñòîêó. field_20 ïî þãó è ñåâåðó
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8973 // îò -25080 äî 25080
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8974 v39 = fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_west_east, v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.5)));
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8975 v35 = v39 + pSkyPolygon.ptr_38->angle_from_north;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8976
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8977 v39 = fixpoint_mul(pSkyPolygon.ptr_38->viewing_angle_from_north_south, v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.f)));
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8978 v36 = v39 + pSkyPolygon.ptr_38->angle_from_east;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8979
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
8980 v9 = fixpoint_mul(pSkyPolygon.v_18.z, v33 * (v30 - floor(array_50AC10[i].vWorldViewProjY + 0.5)));
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8981 v10 = pSkyPolygon.v_18.x + v9;
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
8982 if ( v10 > 0 )
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8983 v10 = 0;
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8984 v13 = v33 * (pViewport->uScreenCenterX - (signed __int64)array_50AC10[i].vWorldViewProjX);
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8985 v34 = -pSkyPolygon.field_24;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8986 v32 = (signed __int64)array_50AC10[i].vWorldViewProjY - 1.0;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8987 v14 = v33 * (v30 - v32);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8988 while ( 1 )
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8989 {
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8990 if ( v10 )
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8991 {
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8992 v37 = abs((int)v34 >> 14);
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8993 v15 = abs(v10);
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8994 if ( v37 <= v15 || v32 <= (signed int)pViewport->uViewportTL_Y )
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8995 {
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8996 if ( v10 <= 0 )
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8997 break;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
8998 }
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
8999 }
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9000 v16 = fixpoint_mul(pSkyPolygon.v_18.z, v14);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9001 --v32;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9002 v14 += v33;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9003 v10 = pSkyPolygon.v_18.x + v16;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9004 }
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9005 LODWORD(v17) = LODWORD(v34) << 16;
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9006 HIDWORD(v17) = v34 >> 16;
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9007 v18 = v17 / v10;
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9008 if ( v18 < 0 )
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9009 v18 = pODMRenderParams->shading_dist_mist;
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9010 v37 = v35 + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_west, v13);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9011 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed + ((signed int)fixpoint_mul(v37, v18) >> 3);
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9012 array_50AC10[i].u = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureWidth * 65536.0);
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9013
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9014 v36 = v36 + fixpoint_mul(pSkyPolygon.ptr_38->angle_from_south, v13);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9015 v35 = 224 * pMiscTimer->uTotalGameTimeElapsed + ((signed int)fixpoint_mul(v36, v18) >> 3);
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9016 array_50AC10[i].v = (double)v35 / ((double)pSkyPolygon.pTexture->uTextureHeight * 65536.0);
2119
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
9017
014c672b6d87 sky continue
Ritor1
parents: 2114
diff changeset
9018 array_50AC10[i].vWorldViewPosition.x = (double)0x2000;//pODMRenderParams->shading_dist_mist 8192
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9019 array_50AC10[i]._rhw = 1.0 / (double)(v18 >> 16);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9020 }
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
9021 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9022 array_50AC10[0].vWorldViewProjY = (double)v10;
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9023 array_50AC10[1].vWorldViewProjY = array_50AC10[1].vWorldViewProjY + 30.0;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9024 array_50AC10[2].vWorldViewProjY = array_50AC10[2].vWorldViewProjY + 30.0;
2120
3eab5530cc94 DrawOutdoorSkyD3D fix and cleaned
Ritor1
parents: 2119
diff changeset
9025 array_50AC10[3].vWorldViewProjY = (double)v10;
1923
f92e0bab7c78 rename DrawIndoorPolygonSky
Ritor1
parents: 1922
diff changeset
9026 pRenderer->DrawOutdoorSkyPolygon(pSkyPolygon.uNumVertices, &pSkyPolygon, pBitmaps_LOD->pHardwareTextures[(signed __int16)pSkyPolygon.uTileBitmapID]);
1911
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9027 return;
af38275939cc which_player_to_attack rename and cleaning
Ritor1
parents: 1904
diff changeset
9028 }
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9029 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9030 //----- (004226C2) --------------------------------------------------------
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9031 bool PauseGameDrawing()
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9032 {
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9033 if ( pCurrentScreen != SCREEN_GAME
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9034 && pCurrentScreen != SCREEN_NPC_DIALOGUE
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9035 && pCurrentScreen != SCREEN_CHANGE_LOCATION )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9036 {
2142
ca548138d6aa some code cleaning in video playing, loops play but there is a memory leak
zipi
parents: 2135
diff changeset
9037 if (pCurrentScreen == SCREEN_INPUT_BLV)
2356
08c4f1799ca1 Elements of VideoPlayer structure moved
Ritor1
parents: 2341
diff changeset
9038 return pMovie;//pSmackerMovie != 0;
1913
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9039 if ( pCurrentScreen != SCREEN_BRANCHLESS_NPC_DIALOG )
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9040 return true;
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9041 }
ab1c03cc2219 mm7_1.cpp remove
Ritor1
parents: 1911
diff changeset
9042 return false;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9043 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9044
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9045
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9046 //----- (0045E03A) --------------------------------------------------------
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9047 unsigned short *Render::MakeScreenshot(signed int width, signed int height)
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9048 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9049 unsigned __int16 *v3; // ebx@1
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9050 int v4; // edx@7
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9051 unsigned __int8 v5; // cf@9
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9052 unsigned int v6; // ecx@9
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9053 unsigned __int16 *v7; // edi@9
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9054 int j; // ecx@9
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9055 // unsigned int screen_x; // qax@18
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9056 // HRESULT v14; // eax@21
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9057 // int v15; // edi@29
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9058 // signed __int64 v16; // qax@30
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9059 // signed int v17; // edx@34
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9060 // unsigned __int16 *v18; // edi@36
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9061 // int k; // ecx@36
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9062 DDSURFACEDESC2 Dst; // [sp+4h] [bp-A0h]@6
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9063 unsigned __int16 *pPixels; // [sp+80h] [bp-24h]@1
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9064 float interval_x; // [sp+84h] [bp-20h]@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9065 //unsigned __int16 *_this; // [sp+88h] [bp-1Ch]@21
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9066 float interval_y; // [sp+8Ch] [bp-18h]@1
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9067 // unsigned int screen_y; // [sp+90h] [bp-14h]@17
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9068 // int v28; // [sp+98h] [bp-Ch]@16
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9069 // int v29; // [sp+9Ch] [bp-8h]@15
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9070
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9071 interval_x = game_viewport_width / (double)width;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9072 interval_y = game_viewport_height / (double)height;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9073
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9074 pPixels = (unsigned __int16 *)malloc(2 * height * width);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9075 memset(pPixels, 0 , 2 * height * width);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9076
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9077 v3 = pPixels;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9078
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9079 BeginSceneD3D();
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9080
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9081 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9082 pIndoor->Draw();
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9083 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9084 pOutdoor->Draw();
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9085 DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene();
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9086 memset(&Dst, 0, 0x7C);
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9087 Dst.dwSize = sizeof(Dst);
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9088
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9089 if ( LockSurface_DDraw4(pBackBuffer4, &Dst, DDLOCK_WAIT) )
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9090 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9091 for (uint y = 0; y < height; ++y)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9092 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9093 for (uint x = 0; x < width; ++x)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9094 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9095 //*v3 = pRenderer->ReadPixel16((int)(x* interval_x + 8.0), (int)(y * interval_y + 8.0));//screen_data[screen_y + (int)(x* interval_x + 8.0)];
2207
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9096 /*
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9097 if (ddpfPrimarySuface.dwRGBBitCount == 32)
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9098 {
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9099 auto p = (unsigned __int32 *)pRenderer->pTargetSurface + (int)(x * interval_x + 8.0) + (int)(y * interval_y + 8.0) * pRenderer->uTargetSurfacePitch;
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9100 *v3 = Color16((*p >> 16) & 255, (*p >> 8) & 255, *p & 255);
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9101 }
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9102 else if (ddpfPrimarySuface.dwRGBBitCount == 16)
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9103 {
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9104 auto p = (unsigned __int16 *)pRenderer->pTargetSurface + (int)(x * interval_x + 8.0) + (int)(y * interval_y + 8.0) * pRenderer->uTargetSurfacePitch;
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9105 *v3 = *p;
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9106 }
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9107 */
ff8920a40c21 fixpoint_mul
Ritor1
parents: 2206
diff changeset
9108 pRenderer->pTargetSurface;
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9109 if (Dst.ddpfPixelFormat.dwRGBBitCount == 32)
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9110 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9111 auto p = (unsigned __int32 *)Dst.lpSurface + (int)(x * interval_x + 8.0) + y/* (int)(y * interval_y + 8.0)*/ * Dst.lPitch;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9112 *v3 = Color16((*p >> 16) & 255, (*p >> 8) & 255, *p & 255);
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9113 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9114 else if (Dst.ddpfPixelFormat.dwRGBBitCount == 16)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9115 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9116 auto p = (unsigned __int16 *)Dst.lpSurface + (int)(x * interval_x + 8.0) + y * Dst.lPitch;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9117 *v3 = *p;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9118 }
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9119 else __debugbreak();
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9120 ++v3;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9121 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9122 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9123 ErrD3D(pBackBuffer4->Unlock(0));
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9124 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9125 else
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9126 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9127 __debugbreak(); // unrefactored - black screenshot
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9128 v4 = height;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9129 if ( height > 0 )
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9130 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9131 do
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9132 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9133 if ( width > 0 )
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9134 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9135 v5 = width & 1;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9136 v6 = (unsigned int)width / 2;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9137 memset(v3, 0, 4 * ((unsigned int)width / 2));
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9138 v7 = &v3[2 * v6];
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9139 for ( j = v5; j; --j )
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9140 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9141 *v7 = 0;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9142 ++v7;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9143 }
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9144 v3 += width;
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9145 }
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9146 --v4;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9147 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9148 while ( v4 );
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9149 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9150 }
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9151
2154
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9152 /*if (!pRenderer->pRenderD3D)
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9153 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9154 pRenderer->BeginScene();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9155 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9156 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9157 pIndoor->Draw();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9158 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9159 else
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9160 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9161 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9162 pOutdoor->Draw();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9163 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9164 _this = pRenderer->pTargetSurface;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9165 v26 = pRenderer->uTargetSurfacePitch;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9166 if ( pRenderer->pTargetSurface )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9167 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9168 if ( height > 0 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9169 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9170 for ( v29 = 0; v29 < height; ++v29 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9171 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9172 if ( width > 0 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9173 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9174 v15 = v26 * (unsigned __int64)(signed __int64)((double)v29 * v25 + 8.0);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9175 for ( v28 = 0; v28 < width; v28++ )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9176 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9177 *v3 = _this[v15 + (int)(signed __int64)((double)v28 * v23 + 8.0)];
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9178 ++v3;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9179 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9180 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9181 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9182 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9183 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9184 else
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9185 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9186 if ( height > 0 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9187 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9188 for ( v17 = height; v17; --v17 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9189 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9190 if ( width > 0 )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9191 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9192 memset(v3, 0, 4 * ((unsigned int)width >> 1));
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9193 v18 = &v3[2 * ((unsigned int)width >> 1)];
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9194 for ( k = width & 1; k; --k )
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9195 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9196 *v18 = 0;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9197 ++v18;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9198 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9199 v3 += width;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9200 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9201 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9202 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9203 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9204 pRenderer->EndScene();
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9205 }*/
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9206 return pPixels;
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9207 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9208 //----- (0045E26C) --------------------------------------------------------
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9209 void Render::SaveScreenshot(const char *pFilename, unsigned int width, unsigned int height)
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9210 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9211 auto pixels = pRenderer->MakeScreenshot(width, height);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9212 pRenderer->SavePCXImage(pFilename, pixels, width, height);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9213 free(pixels);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9214 }
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9215
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9216 void Render::PackScreenshot(unsigned int width, unsigned int height, void *data, unsigned int data_size, unsigned int *out_screenshot_size)
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9217 {
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9218 auto pixels = pRenderer->MakeScreenshot(150, 112);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9219 pRenderer->PackPCXpicture(pixels, 150, 112, data, 1000000, out_screenshot_size);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9220 free(pixels);
9bd7522cdbbb Render decoupling.
Nomad
parents: 2153
diff changeset
9221 }
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9222
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9223
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9224 //----- (0046A7C8) --------------------------------------------------------
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9225 int Render::_46À6ÀÑ_GetActorsInViewport(int pDepth)
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9226 {
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9227 unsigned int v3; // eax@2 ïðèìåíÿåòñÿ â çàêëå Æàð ïå÷è äëÿ ïîäñ÷¸òà êîë-âà ìîíñòðîâ âèäèìûõ ãðóïïå è çàïîëíåíèÿ ìàññèâà id âèäèìûõ ìîíñòðîâ
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9228 unsigned int v5; // eax@2
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9229 unsigned int v6; // eax@4
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9230 unsigned int v12; // [sp+10h] [bp-14h]@1
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9231 int mon_num; // [sp+1Ch] [bp-8h]@1
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9232 unsigned int a1a; // [sp+20h] [bp-4h]@1
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9233
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9234 mon_num = 0;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9235 v12 = GetBillboardDrawListSize();
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9236 if ( (signed int)GetBillboardDrawListSize() > 0 )
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9237 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9238 for ( a1a = 0; (signed int)a1a < (signed int)v12; ++a1a )
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9239 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9240 v3 = GetParentBillboardID(a1a);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9241 v5 = (unsigned __int16)pBillboardRenderList[v3].object_pid;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9242 if ( PID_TYPE(v5) == OBJECT_Actor)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9243 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9244 if ( pBillboardRenderList[v3].sZValue <= (unsigned int)(pDepth << 16) )
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9245 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9246 v6 = PID_ID(v5);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9247 if ( pActors[v6].uAIState != Dead && pActors[v6].uAIState != Dying && pActors[v6].uAIState != Removed
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9248 && pActors[v6].uAIState != Disabled && pActors[v6].uAIState != Summoned )
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9249 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9250 if ( pGame->pVisInstance->DoesRayIntersectBillboard((double)pDepth, a1a) )
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9251 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9252 if ( mon_num < 100 )
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9253 {
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9254 _50BF30_actors_in_viewport_ids[mon_num] = v6;
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9255 mon_num++;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9256 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9257 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9258 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9259 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9260 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9261 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9262 }
2182
e1e4a8a20b5f _46Ð6ÐС_GetActorsInViewport
Ritor1
parents: 2180
diff changeset
9263 return mon_num;
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9264 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9265
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9266
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9267
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9268
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9269 void Render::BeginLightmaps()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9270 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9271 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9272
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9273 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9274 pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9275
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9276 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9277 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9278 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("effpar03")));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9279 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9280 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9281 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9282
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9283 void Render::EndLightmaps()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9284 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9285 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9286 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9287 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9288 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9289
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9290 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9291 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9292 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9293 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGCOLOR, uFogColor));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9294 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGTABLEMODE, 0));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9295 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9296 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9297
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9298
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9299 void Render::BeginLightmaps2()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9300 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9301 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9302 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9303
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9304 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9305 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9306 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9307 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9308
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9309 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("effpar03")));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9310
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9311 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9312 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9313 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9314
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9315
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9316 void Render::EndLightmaps2()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9317 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9318 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9319 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9320 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9321 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9322 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9323 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9324
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9325 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9326 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9327 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9328
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9329
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9330
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9331 //----- (00437C96) --------------------------------------------------------
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9332 void Render::do_draw_debug_line_d3d(const RenderVertexD3D3 *pLineBegin, signed int sDiffuseBegin, const RenderVertexD3D3 *pLineEnd, signed int sDiffuseEnd, float z_stuff)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9333 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9334 double v6; // st7@2
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9335 //IDirect3DDevice3 *v7; // eax@2
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9336 // HRESULT v8; // eax@2
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9337 std::string v9; // [sp-18h] [bp-60h]@3
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9338 // const char *v10; // [sp-Ch] [bp-54h]@2
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9339 // const char *v11; // [sp-8h] [bp-50h]@2
ddb803517a48 unused local variables I commented
Ritor1
parents: 2333
diff changeset
9340 // int v12; // [sp-4h] [bp-4Ch]@2
2155
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9341 RenderVertexD3D3 v13[2]; // [sp+8h] [bp-40h]@2
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9342
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9343 //if ( pRenderer->pRenderD3D )
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9344 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9345 v6 = 0.001 - z_stuff;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9346 memcpy(v13, pLineBegin, 0x20u);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9347 memcpy(&v13[1], pLineEnd, sizeof(v13[1]));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9348 v13[0].pos.z = v6;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9349 v13[1].pos.z = v6;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9350 v13[0].diffuse = sDiffuseBegin;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9351 v13[1].diffuse = sDiffuseEnd;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9352 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9353 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9354 D3DPT_LINELIST,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9355 452,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9356 v13,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9357 2,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9358 16));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9359 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9360 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9361
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9362
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9363 void Render::DrawLines(const RenderVertexD3D3 *vertices, unsigned int num_vertices)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9364 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9365 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9366 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_LINELIST,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9367 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9368 (void *)vertices,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9369 num_vertices,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9370 D3DDP_DONOTLIGHT));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9371 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9372
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9373
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9374 void Render::DrawFansTransparent(const RenderVertexD3D3 *vertices, unsigned int num_vertices)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9375 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9376 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, false));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9377 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, false));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9378 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9379 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_SRCALPHA));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9380 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_INVSRCALPHA));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9381
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9382 ErrD3D(pRenderD3D->pDevice->SetTexture(0, nullptr));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9383 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9384 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9385 (void *)vertices,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9386 num_vertices,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9387 28));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9388
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9389 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9390 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9391 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9392 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9393 //ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9394 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9395
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9396
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9397 void Render::BeginDecals()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9398 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9399 // code chunk from 0049C304
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9400 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9401 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9402 ErrD3D(pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, D3DTADDRESS_CLAMP));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9403
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9404 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9405 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9406 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_NONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9407 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9408 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9409 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9410
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9411 ErrD3D(pRenderD3D->pDevice->SetTexture(0, pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("hwsplat04")));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9412 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9413
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9414
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9415 void Render::EndDecals()
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9416 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9417 // code chunk from 0049C304
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9418 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, D3DCULL_CW));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9419 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9420 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9421 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9422 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9423
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9424 if (bUsingSpecular)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9425 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9426 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9427
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9428
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9429
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9430 //----- (0049C095) --------------------------------------------------------
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9431 void Render::DrawDecal(Decal *pDecal, float z_bias)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9432 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9433 signed int v21; // [sp+Ch] [bp-864h]@15
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9434 RenderVertexD3D3 pVerticesD3D[64]; // [sp+20h] [bp-850h]@6
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9435
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9436 if (pDecal->uNumVertices < 3)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9437 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9438 Log::Warning(L"Decal has < 3 vertices");
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9439 return;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9440 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9441
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9442 float color_mult;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9443 if ( pDecal->field_C1C & 1 )
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9444 color_mult = 1.0;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9445 else
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9446 color_mult = pDecal->field_C18->_43B570_get_color_mult_by_time();
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9447
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9448 for (uint i = 0; i < pDecal->uNumVertices; ++i)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9449 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9450 uint uTint = Render::GetActorTintColor(pDecal->pVertices[i].vWorldViewPosition.x, pDecal->field_C14, 0, 0, nullptr);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9451
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9452 uint uTintR = (uTint >> 16) & 0xFF,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9453 uTintG = (uTint >> 8) & 0xFF,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9454 uTintB = uTint & 0xFF;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9455
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9456 uint uDecalColorMultR = (pDecal->uColorMultiplier >> 16) & 0xFF,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9457 uDecalColorMultG = (pDecal->uColorMultiplier >> 8) & 0xFF,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9458 uDecalColorMultB = pDecal->uColorMultiplier & 0xFF;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9459
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9460 uint uFinalR = floorf(uTintR / 255.0 * color_mult * uDecalColorMultR + 0.0f),
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9461 uFinalG = floorf(uTintG / 255.0 * color_mult * uDecalColorMultG + 0.0f),
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9462 uFinalB = floorf(uTintB / 255.0 * color_mult * uDecalColorMultB + 0.0f);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9463
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9464
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9465 float v15;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9466 if (fabs(z_bias) < 1e-5)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9467 v15 = 1.0 - 1.0 / ((1.0f / pGame->pIndoorCameraD3D->GetShadingDistMist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0);
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9468 else
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9469 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9470 v15 = 1.0 - 1.0 / ((1.0f / pGame->pIndoorCameraD3D->GetShadingDistMist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0) - z_bias;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9471 if (v15 < 0.000099999997)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9472 v15 = 0.000099999997;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9473 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9474
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9475 pVerticesD3D[i].pos.z = v15;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9476
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9477 pVerticesD3D[i].pos.x = pDecal->pVertices[i].vWorldViewProjX;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9478 pVerticesD3D[i].pos.y = pDecal->pVertices[i].vWorldViewProjY;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9479 pVerticesD3D[i].texcoord.x = pDecal->pVertices[i].u;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9480 pVerticesD3D[i].texcoord.y = pDecal->pVertices[i].v;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9481 pVerticesD3D[i].diffuse = (uFinalR << 16) | (uFinalG << 8) | uFinalB;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9482 pVerticesD3D[i].specular = 0;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9483 pVerticesD3D[i].rhw = 1.0 / pDecal->pVertices[i].vWorldViewPosition.x;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9484 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9485
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9486 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9487 v21 = D3DDP_DONOTLIGHT | D3DDP_DONOTCLIP | D3DDP_DONOTUPDATEEXTENTS;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9488 else
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9489 v21 = D3DDP_DONOTLIGHT;
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9490
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9491 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9492 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9493 pVerticesD3D,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9494 pDecal->uNumVertices,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9495 v21));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9496 }
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9497
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9498
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9499 void Render::DrawSpecialEffectsQuad(const RenderVertexD3D3 *vertices, IDirect3DTexture2 *texture)
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9500 {
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9501 ErrD3D(pRenderD3D->pDevice->SetTexture(0, texture));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9502 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9503 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9504 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9505 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9506 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9507 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9508 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_ALWAYS));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9509 ErrD3D(pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9510 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9511 (void *)vertices, 4, 28));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9512 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, D3DBLEND_ONE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9513 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, D3DBLEND_ZERO));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9514 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, FALSE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9515 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9516 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, TRUE));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9517 ErrD3D(pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZFUNC, D3DCMP_LESS));
0a1438c16c2b Render decoupling.
Nomad
parents: 2154
diff changeset
9518 }