annotate Vis.cpp @ 826:1133e34a7560

Слияние
author Ritor1
date Tue, 26 Mar 2013 23:19:12 +0600
parents bd611ae85d27
children 0f56abdcce94
rev   line source
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1 #include <assert.h>
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
2
0
Ritor1
parents:
diff changeset
3 #include "Vis.h"
Ritor1
parents:
diff changeset
4 #include "Outdoor.h"
Ritor1
parents:
diff changeset
5 #include "Game.h"
Ritor1
parents:
diff changeset
6 #include "Actor.h"
Ritor1
parents:
diff changeset
7 #include "IndoorCamera.h"
Ritor1
parents:
diff changeset
8 #include "Viewport.h"
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
9 #include "Log.h"
0
Ritor1
parents:
diff changeset
10
Ritor1
parents:
diff changeset
11 #include "mm7_data.h"
Ritor1
parents:
diff changeset
12 //#include "MM7.h"
Ritor1
parents:
diff changeset
13
Ritor1
parents:
diff changeset
14
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
15 static Vis_SelectionList Vis_static_sub_4C1944_stru_F8BDE8;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
16
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
17 Vis_SelectionFilter vis_sprite_filter_1 = {VisObjectType_Sprite, OBJECT_Decoration, 0, 0, 2}; // 00F93E1C
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
18 Vis_SelectionFilter vis_sprite_filter_2 = {VisObjectType_Sprite, OBJECT_Decoration, 0, 0, 2}; // 00F93E30
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
19 Vis_SelectionFilter vis_face_filter = {VisObjectType_Face, OBJECT_Any, -1, 0, 0}; // 00F93E44
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
20 Vis_SelectionFilter vis_door_filter = {VisObjectType_Face, OBJECT_BLVDoor, -1, 0x100000, 0}; // 00F93E58
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
21 Vis_SelectionFilter vis_sprite_filter_3 = {VisObjectType_Sprite, OBJECT_Decoration, -1, 0, 4}; // 00F93E6C
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
22 Vis_SelectionFilter vis_sprite_filter_4 = {VisObjectType_Any, OBJECT_Item, -1, 0, 0}; // static to sub_44EEA7
0
Ritor1
parents:
diff changeset
23
Ritor1
parents:
diff changeset
24
Ritor1
parents:
diff changeset
25
Ritor1
parents:
diff changeset
26 //----- (004C1026) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
27 Vis_ObjectInfo *Vis::_4C1026(BLVFace *face, unsigned int a3, float pick_depth)
0
Ritor1
parents:
diff changeset
28 {
Ritor1
parents:
diff changeset
29 char *v4; // eax@4
Ritor1
parents:
diff changeset
30 signed int v5; // ecx@4
Ritor1
parents:
diff changeset
31 RenderVertexSoft pRay[2]; // [sp+20h] [bp-70h]@17
Ritor1
parents:
diff changeset
32 int v20; // [sp+84h] [bp-Ch]@10
Ritor1
parents:
diff changeset
33
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
34 static Vis_SelectionList static_sub_4C1026_stru_F8FE00;
0
Ritor1
parents:
diff changeset
35 static_sub_4C1026_stru_F8FE00.uNumPointers = 0;
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37 static bool _init_flag = false;
Ritor1
parents:
diff changeset
38 static RenderVertexSoft static_sub_4C1026_array_F8F200[64];
Ritor1
parents:
diff changeset
39 if (!_init_flag)
Ritor1
parents:
diff changeset
40 {
Ritor1
parents:
diff changeset
41 _init_flag = true;
Ritor1
parents:
diff changeset
42 for (uint i = 0; i < 64; ++i)
Ritor1
parents:
diff changeset
43 static_sub_4C1026_array_F8F200[i].flt_2C = 0.0f;
Ritor1
parents:
diff changeset
44 }
Ritor1
parents:
diff changeset
45
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
46 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
0
Ritor1
parents:
diff changeset
47 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
48 if ( (signed int)face->uNumVertices > 0 )
0
Ritor1
parents:
diff changeset
49 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
50 for ( int i = 0; i < face->uNumVertices; i++)
0
Ritor1
parents:
diff changeset
51 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
52 static_sub_4C1026_array_F8F200[i].vWorldPosition.x = (double)pIndoor->pVertices[face->pVertexIDs[i]].x;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
53 static_sub_4C1026_array_F8F200[i].vWorldPosition.y = (double)pIndoor->pVertices[face->pVertexIDs[i]].y;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
54 static_sub_4C1026_array_F8F200[i].vWorldPosition.z = (double)pIndoor->pVertices[face->pVertexIDs[i]].z;
0
Ritor1
parents:
diff changeset
55 }
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
56 }
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
57 }
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
58 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
59 {
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
60 uint bmodel_id = a3 >> 9;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
61 auto v = (Vec3_int_ *)pOutdoor->pBModels[bmodel_id].pVertices.pVertices;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
62 for (uint i = 0; i < face->uNumVertices; ++i)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
63 {
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
64 static_sub_4C1026_array_F8F200[i].vWorldPosition.x = v[face->pVertexIDs[i]].x;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
65 static_sub_4C1026_array_F8F200[i].vWorldPosition.y = v[face->pVertexIDs[i]].y;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
66 static_sub_4C1026_array_F8F200[i].vWorldPosition.z = v[face->pVertexIDs[i]].z;
0
Ritor1
parents:
diff changeset
67 }
Ritor1
parents:
diff changeset
68 }
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
69 else assert(false);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
70
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
71 pGame->pIndoorCameraD3D->ViewTransform(static_sub_4C1026_array_F8F200, face->uNumVertices);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
72 pGame->pIndoorCameraD3D->Project(static_sub_4C1026_array_F8F200, face->uNumVertices, 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
73
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
74 //v15 = this;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
75 SortVectors_x(static_sub_4C1026_array_F8F200, 0, face->uNumVertices - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
76 if (static_sub_4C1026_array_F8F200[0].vWorldViewPosition.x > pick_depth)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
77 return nullptr;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
78
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
79 float screenspace_center_x,
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
80 screenspace_center_y;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
81 GetPolygonScreenSpaceCenter(static_sub_4C1026_array_F8F200, face->uNumVertices, &screenspace_center_x, &screenspace_center_y);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
82 if (IsPolygonOccludedByBillboard(static_sub_4C1026_array_F8F200, face->uNumVertices, screenspace_center_x, screenspace_center_y))
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
83 return nullptr;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
84
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
85 CastPickRay(pRay, screenspace_center_x, screenspace_center_y, pick_depth);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
86
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
87 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
88 PickOutdoorFaces_Mouse(pick_depth, pRay, &static_sub_4C1026_stru_F8FE00, &vis_face_filter, true);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
89 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
90 PickIndoorFaces_Mouse(pick_depth, pRay, &static_sub_4C1026_stru_F8FE00, &vis_face_filter);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
91 else assert(false);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
92
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
93 static_sub_4C1026_stru_F8FE00.create_object_pointers();
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
94 sort_object_pointers(static_sub_4C1026_stru_F8FE00.object_pointers, 0, static_sub_4C1026_stru_F8FE00.uNumPointers - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
95 if (!static_sub_4C1026_stru_F8FE00.uNumPointers)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
96 return nullptr;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
97
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
98 if (!static_sub_4C1026_stru_F8FE00.sub_4C2551(2, a3))
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
99 return nullptr;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
100
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
101 if (static_sub_4C1026_stru_F8FE00.uNumPointers)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
102 return static_sub_4C1026_stru_F8FE00.object_pointers[0];
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
103 else return nullptr;
0
Ritor1
parents:
diff changeset
104 }
Ritor1
parents:
diff changeset
105 // F91E08: using guessed type char static_sub_4C1026_byte_F91E08__init_flags;
Ritor1
parents:
diff changeset
106
Ritor1
parents:
diff changeset
107 //----- (004C12C3) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
108 bool Vis::IsPolygonOccludedByBillboard(RenderVertexSoft *vertices, int num_vertices, float x, float y)
0
Ritor1
parents:
diff changeset
109 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
110 //signed int v5; // esi@1
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
111 //RenderBillboardD3D *v6; // edi@2
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
112 //double v7; // st7@9
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
113 //int v8; // edx@9
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
114 //RenderVertexSoft *v9; // ecx@10
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
115 //char result; // al@24
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
116 //Vis *thisa; // [sp+10h] [bp-8h]@1
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
117 //float thisb; // [sp+10h] [bp-8h]@9
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
118 //signed int v13; // [sp+14h] [bp-4h]@1
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
119 //float a3a; // [sp+28h] [bp+10h]@9
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
120 //float a4a; // [sp+2Ch] [bp+14h]@9
0
Ritor1
parents:
diff changeset
121
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
122 int v13 = -1;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
123 //v5 = 0;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
124 //thisa = this;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
125
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
126 //v6 = pRenderer->pBillboardRenderListD3D;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
127 for (uint i = 0; i < pRenderer->uNumBillboardsToDraw; ++i)
82
1faa29fd4c2d many type, memory, boundary fixes
zipi
parents: 79
diff changeset
128 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
129 auto billboard = pRenderer->pBillboardRenderListD3D + i;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
130 if (IsPointInsideD3DBillboard(billboard, x, y))
0
Ritor1
parents:
diff changeset
131 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
132 if (v13 == -1)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
133 v13 = i;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
134 else if ((unsigned int)pBillboardRenderList[billboard->uParentBillboardID].sZValue < pBillboardRenderList[pRenderer->pBillboardRenderListD3D[v13].uParentBillboardID].sZValue)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
135 v13 = i;
0
Ritor1
parents:
diff changeset
136 }
Ritor1
parents:
diff changeset
137 }
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
138
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
139 if ( v13 == -1 )
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
140 return false;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
141
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
142 //v8 = num_vertices;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
143 //v7 = 3.4028235e38;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
144 float min_x = FLT_MAX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
145 //a4a = 3.4028235e38;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
146 float min_y = FLT_MAX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
147 //a3a = -3.4028235e38;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
148 float max_x = -FLT_MAX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
149 //thisb = -3.4028235e38;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
150 float max_y = -FLT_MAX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
151 for (uint i = 0; i < num_vertices; ++i)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
152 {
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
153 //v9 = a1;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
154 //do
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
155 //{
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
156 auto v = vertices + i;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
157
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
158 if (v->vWorldViewProjX < min_x)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
159 min_x = v->vWorldViewProjX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
160 if (v->vWorldViewProjX > max_x)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
161 max_x = v->vWorldViewProjX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
162
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
163 if (v->vWorldViewProjY < min_y)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
164 min_y = v->vWorldViewProjY;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
165 if (v->vWorldViewProjY > max_y)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
166 max_y = v->vWorldViewProjY;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
167 //++v9;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
168 //--v8;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
169 //}
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
170 //while ( v8 );
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
171 }
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
172
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
173 if (min_x < pRenderer->pBillboardRenderListD3D[v13].pQuards[0].pos.x || pRenderer->pBillboardRenderListD3D[v13].pQuards[0].pos.y > min_y ||
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
174 pRenderer->pBillboardRenderListD3D[v13].pQuards[3].pos.x < max_x || pRenderer->pBillboardRenderListD3D[v13].pQuards[1].pos.y < max_y)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
175 return false;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
176
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
177 return true;
0
Ritor1
parents:
diff changeset
178 }
Ritor1
parents:
diff changeset
179
Ritor1
parents:
diff changeset
180 //----- (004C1417) --------------------------------------------------------
Ritor1
parents:
diff changeset
181 void Vis::GetPolygonCenter(RenderVertexD3D3 *pVertices, unsigned int uNumVertices, float *pCenterX, float *pCenterY)
Ritor1
parents:
diff changeset
182 {
Ritor1
parents:
diff changeset
183 static RenderVertexD3D3 unk_F8EA00[64];
Ritor1
parents:
diff changeset
184
Ritor1
parents:
diff changeset
185 memcpy(unk_F8EA00, pVertices, 32 * uNumVertices);
Ritor1
parents:
diff changeset
186
Ritor1
parents:
diff changeset
187 SortVerticesByX(unk_F8EA00, 0, uNumVertices - 1);
Ritor1
parents:
diff changeset
188 *pCenterX = (unk_F8EA00[uNumVertices - 1].pos.x - unk_F8EA00[0].pos.x) * 0.5 + unk_F8EA00[0].pos.x;
Ritor1
parents:
diff changeset
189
Ritor1
parents:
diff changeset
190 SortVerticesByY(unk_F8EA00, 0, uNumVertices - 1);
Ritor1
parents:
diff changeset
191 *pCenterY = (unk_F8EA00[uNumVertices - 1].pos.y - unk_F8EA00[0].pos.y) * 0.5 + unk_F8EA00[0].pos.y;
Ritor1
parents:
diff changeset
192 }
Ritor1
parents:
diff changeset
193
Ritor1
parents:
diff changeset
194 //----- (004C1495) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
195 void Vis::GetPolygonScreenSpaceCenter(RenderVertexSoft *vertices, int num_vertices, float *out_center_x, float *out_center_y)
0
Ritor1
parents:
diff changeset
196 {
Ritor1
parents:
diff changeset
197 char *v5; // eax@2
Ritor1
parents:
diff changeset
198 signed int v6; // ecx@2
Ritor1
parents:
diff changeset
199 float *result; // eax@5
Ritor1
parents:
diff changeset
200
Ritor1
parents:
diff changeset
201 static RenderVertexSoft static_sub_4C1495_array_F8DDF8[64];
Ritor1
parents:
diff changeset
202
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
203 memcpy(static_sub_4C1495_array_F8DDF8, vertices, 48 * num_vertices);
0
Ritor1
parents:
diff changeset
204
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
205 SortByScreenSpaceX(static_sub_4C1495_array_F8DDF8, 0, num_vertices - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
206 *out_center_x = (static_sub_4C1495_array_F8DDF8[num_vertices - 1].vWorldViewProjX - static_sub_4C1495_array_F8DDF8[0].vWorldViewProjX) * 0.5 + static_sub_4C1495_array_F8DDF8[0].vWorldViewProjX;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
207
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
208 SortByScreenSpaceY(static_sub_4C1495_array_F8DDF8, 0, num_vertices - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
209 *out_center_y = (static_sub_4C1495_array_F8DDF8[num_vertices - 1].vWorldViewProjY - static_sub_4C1495_array_F8DDF8[0].vWorldViewProjY) * 0.5 + static_sub_4C1495_array_F8DDF8[0].vWorldViewProjY;
0
Ritor1
parents:
diff changeset
210 }
Ritor1
parents:
diff changeset
211
Ritor1
parents:
diff changeset
212 //----- (004C1542) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
213 void Vis::PickBillboards_Mouse(float fPickDepth, float fX, float fY, Vis_SelectionList *list, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
214 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
215 for (uint i = 0; i < pRenderer->uNumBillboardsToDraw; ++i)
0
Ritor1
parents:
diff changeset
216 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
217 auto d3d_billboard = pRenderer->pBillboardRenderListD3D + i;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
218 if (is_part_of_selection((void *)i, filter) && IsPointInsideD3DBillboard(d3d_billboard, fX, fY))
0
Ritor1
parents:
diff changeset
219 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
220 if (DoesRayIntersectBillboard(fPickDepth, i))
0
Ritor1
parents:
diff changeset
221 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
222 auto billboard = &pBillboardRenderList[d3d_billboard->uParentBillboardID];
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
223
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
224 list->AddObject((void *)d3d_billboard->uParentBillboardID, VisObjectType_Sprite, billboard->sZValue);
0
Ritor1
parents:
diff changeset
225 }
Ritor1
parents:
diff changeset
226 }
Ritor1
parents:
diff changeset
227 }
Ritor1
parents:
diff changeset
228 }
Ritor1
parents:
diff changeset
229
Ritor1
parents:
diff changeset
230 //----- (004C1607) --------------------------------------------------------
Ritor1
parents:
diff changeset
231 bool Vis::IsPointInsideD3DBillboard(RenderBillboardD3D *a1, float x, float y)
Ritor1
parents:
diff changeset
232 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
233 //RenderBillboardD3D *result; // eax@1
0
Ritor1
parents:
diff changeset
234 double v5; // st7@2
Ritor1
parents:
diff changeset
235 float v6; // ecx@2
Ritor1
parents:
diff changeset
236 float v7; // ST00_4@3
Ritor1
parents:
diff changeset
237 __int16 v8; // fps@6
Ritor1
parents:
diff changeset
238 double v9; // st6@6
Ritor1
parents:
diff changeset
239 char v10; // c0@6
Ritor1
parents:
diff changeset
240 char v11; // c2@6
Ritor1
parents:
diff changeset
241 char v12; // c3@6
Ritor1
parents:
diff changeset
242 __int16 v13; // fps@7
Ritor1
parents:
diff changeset
243 double v14; // st6@7
Ritor1
parents:
diff changeset
244 unsigned __int8 v15; // c0@7
Ritor1
parents:
diff changeset
245 char v16; // c2@7
Ritor1
parents:
diff changeset
246 unsigned __int8 v17; // c3@7
Ritor1
parents:
diff changeset
247 __int16 v18; // fps@8
Ritor1
parents:
diff changeset
248 double v19; // st6@8
Ritor1
parents:
diff changeset
249 char v20; // c0@8
Ritor1
parents:
diff changeset
250 char v21; // c2@8
Ritor1
parents:
diff changeset
251 char v22; // c3@8
Ritor1
parents:
diff changeset
252 __int16 v23; // fps@9
Ritor1
parents:
diff changeset
253 double v24; // st6@9
Ritor1
parents:
diff changeset
254 unsigned __int8 v25; // c0@9
Ritor1
parents:
diff changeset
255 char v26; // c2@9
Ritor1
parents:
diff changeset
256 unsigned __int8 v27; // c3@9
Ritor1
parents:
diff changeset
257 float v28; // [sp+4h] [bp-8h]@2
Ritor1
parents:
diff changeset
258 float v29; // [sp+8h] [bp-4h]@2
Ritor1
parents:
diff changeset
259 float a1a; // [sp+14h] [bp+8h]@2
Ritor1
parents:
diff changeset
260
Ritor1
parents:
diff changeset
261 if ( a1->uParentBillboardID == -1 )
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
262 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
263
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
264 //result = a1;
0
Ritor1
parents:
diff changeset
265 v5 = a1->pQuards[0].pos.x;
Ritor1
parents:
diff changeset
266 a1a = a1->pQuards[3].pos.x;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
267 v6 = a1->pQuards[0].pos.y;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
268 //result = (RenderBillboardD3D *)LODWORD(result->pQuards[1].pos.y);
0
Ritor1
parents:
diff changeset
269 v29 = v6;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
270 v28 = a1->pQuards[1].pos.y;
0
Ritor1
parents:
diff changeset
271 if ( v5 > a1a )
Ritor1
parents:
diff changeset
272 {
Ritor1
parents:
diff changeset
273 v7 = v5;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
274 //HIWORD(result) = HIWORD(v7);
0
Ritor1
parents:
diff changeset
275 v5 = a1a;
Ritor1
parents:
diff changeset
276 a1a = v7;
Ritor1
parents:
diff changeset
277 }
Ritor1
parents:
diff changeset
278 if ( v6 > (double)v28 )
Ritor1
parents:
diff changeset
279 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
280 //result = (RenderBillboardD3D *)LODWORD(v28);
0
Ritor1
parents:
diff changeset
281 v28 = v6;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
282 v29 = v28;
0
Ritor1
parents:
diff changeset
283 }
Ritor1
parents:
diff changeset
284 v9 = x + 1.0;
Ritor1
parents:
diff changeset
285 //UNDEF(v8);
29
8a6ba554d341 FPU Undefined fixes
zipi
parents: 17
diff changeset
286 //v10 = v9 < v5;
8a6ba554d341 FPU Undefined fixes
zipi
parents: 17
diff changeset
287 //v11 = 0;
8a6ba554d341 FPU Undefined fixes
zipi
parents: 17
diff changeset
288 //v12 = v9 == v5;
8a6ba554d341 FPU Undefined fixes
zipi
parents: 17
diff changeset
289 //BYTE1(result) = HIBYTE(v8);//crash
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
290 if (v9 >= v5 &&
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
291 (v14 = x - 1.0, v14<=a1a) &&///*UNDEF(v13),*/ v15 = v14 < a1a, v16 = 0, v17 = v14 == a1a, BYTE1(result) = HIBYTE(v13), v15 | v17)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
292 (v19 = y + 1.0, v19>=v29) &&///*UNDEF(v18),*/ v20 = v19 < v29, v21 = 0, v22 = v19 == v29, BYTE1(result) = HIBYTE(v18), v19 >= v29)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
293 (v24 = y - 1.0, v24<=v28))///*UNDEF(v23),*/ v25 = v24 < v28, v26 = 0, v27 = v24 == v28, BYTE1(result) = HIBYTE(v23), v25 | v27) )
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
294 return true;
0
Ritor1
parents:
diff changeset
295 else
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
296 return false;
0
Ritor1
parents:
diff changeset
297 }
Ritor1
parents:
diff changeset
298
Ritor1
parents:
diff changeset
299 //----- (004C16B4) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
300 void Vis::PickIndoorFaces_Mouse(float fDepth, RenderVertexSoft *pRay, Vis_SelectionList *list, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
301 {
Ritor1
parents:
diff changeset
302 int v5; // eax@1
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
303 signed int pFaceID; // edi@2
0
Ritor1
parents:
diff changeset
304 int v8; // ecx@7
Ritor1
parents:
diff changeset
305 int v9; // eax@7
Ritor1
parents:
diff changeset
306 unsigned int *pNumPointers; // eax@7
Ritor1
parents:
diff changeset
307 unsigned int v11; // ecx@7
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
308 Vis_ObjectInfo *v12; // edi@7
0
Ritor1
parents:
diff changeset
309 RenderVertexSoft a1; // [sp+Ch] [bp-44h]@1
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
310 BLVFace *pFace; // [sp+3Ch] [bp-14h]@7
0
Ritor1
parents:
diff changeset
311 void *v15; // [sp+40h] [bp-10h]@7
Ritor1
parents:
diff changeset
312 int v17; // [sp+48h] [bp-8h]@1
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
313
0
Ritor1
parents:
diff changeset
314 v5 = 0;
Ritor1
parents:
diff changeset
315 v17 = 0;
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 618
diff changeset
316 for ( a1.flt_2C = 0.0; v17 < (signed int)pBspRenderer->num_faces; ++v17 )
0
Ritor1
parents:
diff changeset
317 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
318 pFaceID = pBspRenderer->faces[v5].uFaceID;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
319 if ( pFaceID >= 0 )
0
Ritor1
parents:
diff changeset
320 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
321 if ( pFaceID < (signed int)pIndoor->uNumFaces )
0
Ritor1
parents:
diff changeset
322 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
323 if ( is_part_of_selection(&pIndoor->pFaces[pFaceID], filter) )
0
Ritor1
parents:
diff changeset
324 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
325 if ( !pGame->pIndoorCameraD3D->IsCulled(&pIndoor->pFaces[pFaceID]) )
0
Ritor1
parents:
diff changeset
326 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
327 if ( Intersect_Ray_Face(pRay, pRay + 1, &fDepth, &a1, &pIndoor->pFaces[pFaceID], 0xFFFFFFFFu) )
0
Ritor1
parents:
diff changeset
328 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
329 pGame->pIndoorCameraD3D->ViewTransform(&a1, 1);
0
Ritor1
parents:
diff changeset
330 v9 = _48B561_mess_with_scaling_along_z(/*v8, */a1.vWorldViewPosition.x);
Ritor1
parents:
diff changeset
331 LOWORD(v9) = 0;
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
332 v15 = (void *)((8 * pFaceID | 6) + v9);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
333 pNumPointers = &list->uNumPointers;
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
334 //v16 = 2;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
335 //v11 = list->uNumPointers;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
336 pFace = &pIndoor->pFaces[pFaceID];
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
337 v12 = &list->object_pool[list->uNumPointers];
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
338 v12->object = &pIndoor->pFaces[pFaceID];
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
339 v12 = (Vis_ObjectInfo *)((char *)v12 + 4);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
340 v12->object = v15;
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
341 v12->sZValue = 2;
0
Ritor1
parents:
diff changeset
342 ++*pNumPointers;
Ritor1
parents:
diff changeset
343 }
Ritor1
parents:
diff changeset
344 }
Ritor1
parents:
diff changeset
345 }
Ritor1
parents:
diff changeset
346 }
Ritor1
parents:
diff changeset
347 }
Ritor1
parents:
diff changeset
348 v5 = v17 + 1;
Ritor1
parents:
diff changeset
349 }
Ritor1
parents:
diff changeset
350 }
Ritor1
parents:
diff changeset
351
Ritor1
parents:
diff changeset
352 //----- (004C17CF) --------------------------------------------------------
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
353 void Vis::PickOutdoorFaces_Mouse(float fDepth, RenderVertexSoft *pRay, Vis_SelectionList *list, Vis_SelectionFilter *filter, bool only_reachable)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
354 {
0
Ritor1
parents:
diff changeset
355 if (!pOutdoor)
Ritor1
parents:
diff changeset
356 return;
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
357
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
358 for (uint i = 0; i < pOutdoor->uNumBModels; ++i)
0
Ritor1
parents:
diff changeset
359 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
360 int reachable;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
361 if (!IsBModelVisible(i, &reachable))
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
362 continue;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
363 if (!reachable && only_reachable)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
364 continue;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
365
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
366 auto bmodel = &pOutdoor->pBModels[i];
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
367 for (uint j = 0; j < bmodel->uNumFaces; ++j)
0
Ritor1
parents:
diff changeset
368 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
369 auto face = bmodel->pFaces + j;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
370 if (is_part_of_selection(face, filter))
0
Ritor1
parents:
diff changeset
371 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
372 BLVFace blv_face;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
373 blv_face.FromODM(face);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
374
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
375 RenderVertexSoft intersection;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
376 if (Intersect_Ray_Face(pRay, pRay + 1, &fDepth, &intersection, &blv_face, i))
0
Ritor1
parents:
diff changeset
377 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
378 pGame->pIndoorCameraD3D->ViewTransform(&intersection, 1u);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
379 int v13 = _48B561_mess_with_scaling_along_z(/*v12, */intersection.vWorldViewPosition.x);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
380 v13 += (8 * (j | (i << 6)) | OBJECT_BModel);
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
381
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
382 list->AddObject(face, VisObjectType_Face, v13);
0
Ritor1
parents:
diff changeset
383 }
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
384
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
385 if (blv_face.uAttributes & 0x80000000)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
386 face->uAttributes |= FACE_OUTLINED;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
387 else
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
388 face->uAttributes &= ~FACE_OUTLINED;
0
Ritor1
parents:
diff changeset
389 }
Ritor1
parents:
diff changeset
390 }
Ritor1
parents:
diff changeset
391 }
Ritor1
parents:
diff changeset
392 }
Ritor1
parents:
diff changeset
393
Ritor1
parents:
diff changeset
394 //----- (004C1930) --------------------------------------------------------
Ritor1
parents:
diff changeset
395 //bool Vis::j_DoesRayIntersectBillboard(float fDepth, unsigned int uD3DBillboardIdx)
Ritor1
parents:
diff changeset
396 //{return DoesRayIntersectBillboard(fDepth, uD3DBillboardIdx);}
Ritor1
parents:
diff changeset
397
Ritor1
parents:
diff changeset
398 //----- (004C1944) --------------------------------------------------------
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
399 int Vis::PickClosestActor(int object_id, unsigned int pick_depth, int a4, int a5, int a6)
0
Ritor1
parents:
diff changeset
400 {
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
401 //float v6; // ST00_4@3
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
402 //int result; // eax@4
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
403 Vis_SelectionFilter v8; // [sp+18h] [bp-20h]@3
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
404 //__int64 v9; // [sp+2Ch] [bp-Ch]@3
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
405 //Vis *v14; // [sp+34h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
406
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
407 //v14 = this;
0
Ritor1
parents:
diff changeset
408
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
409 static Vis_SelectionList Vis_static_sub_4C1944_stru_F8BDE8;
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
410
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
411 v8.object_type = VisObjectType_Sprite;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
412 v8.object_id = object_id;
0
Ritor1
parents:
diff changeset
413 v8.field_8 = a6;
Ritor1
parents:
diff changeset
414 v8.field_C = a5;
Ritor1
parents:
diff changeset
415 v8.field_10 = a4;
Ritor1
parents:
diff changeset
416 Vis_static_sub_4C1944_stru_F8BDE8.uNumPointers = 0;
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
417 PickBillboards_Keyboard(pick_depth, &Vis_static_sub_4C1944_stru_F8BDE8, &v8);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
418 Vis_static_sub_4C1944_stru_F8BDE8.create_object_pointers(Vis_SelectionList::Unique);
0
Ritor1
parents:
diff changeset
419 sort_object_pointers(
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
420 Vis_static_sub_4C1944_stru_F8BDE8.object_pointers,
0
Ritor1
parents:
diff changeset
421 0,
Ritor1
parents:
diff changeset
422 Vis_static_sub_4C1944_stru_F8BDE8.uNumPointers - 1);
295
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
423
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
424 if (!Vis_static_sub_4C1944_stru_F8BDE8.uNumPointers)
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
425 return -1;
640a176c030f sub_42ECB5
Nomad
parents: 227
diff changeset
426 return Vis_static_sub_4C1944_stru_F8BDE8.object_pointers[0]->sZValue;
0
Ritor1
parents:
diff changeset
427 }
Ritor1
parents:
diff changeset
428
Ritor1
parents:
diff changeset
429 //----- (004C1A02) --------------------------------------------------------
Ritor1
parents:
diff changeset
430 void Vis::_4C1A02()
Ritor1
parents:
diff changeset
431 {
Ritor1
parents:
diff changeset
432 RenderVertexSoft v1; // [sp+8h] [bp-C0h]@1
Ritor1
parents:
diff changeset
433 RenderVertexSoft v2; // [sp+38h] [bp-90h]@1
Ritor1
parents:
diff changeset
434 RenderVertexSoft v3; // [sp+68h] [bp-60h]@1
Ritor1
parents:
diff changeset
435 RenderVertexSoft v4; // [sp+98h] [bp-30h]@1
Ritor1
parents:
diff changeset
436
Ritor1
parents:
diff changeset
437 v4.flt_2C = 0.0;
Ritor1
parents:
diff changeset
438 v4.vWorldPosition.x = 0.0;
Ritor1
parents:
diff changeset
439 v4.vWorldPosition.y = 65536.0;
Ritor1
parents:
diff changeset
440 v4.vWorldPosition.z = 0.0;
Ritor1
parents:
diff changeset
441 v3.flt_2C = 0.0;
Ritor1
parents:
diff changeset
442 v3.vWorldPosition.x = 65536.0;
Ritor1
parents:
diff changeset
443 v3.vWorldPosition.y = 0.0;
Ritor1
parents:
diff changeset
444 v3.vWorldPosition.z = 0.0;
Ritor1
parents:
diff changeset
445 memcpy(&v1, &v3, sizeof(v1));
Ritor1
parents:
diff changeset
446 v3.flt_2C = 0.0;
Ritor1
parents:
diff changeset
447 v3.vWorldPosition.x = 0.0;
Ritor1
parents:
diff changeset
448 v3.vWorldPosition.y = 65536.0;
Ritor1
parents:
diff changeset
449 v3.vWorldPosition.z = 0.0;
Ritor1
parents:
diff changeset
450 memcpy(&v2, &v4, sizeof(v2));
Ritor1
parents:
diff changeset
451 v4.flt_2C = 0.0;
Ritor1
parents:
diff changeset
452 v4.vWorldPosition.x = 65536.0;
Ritor1
parents:
diff changeset
453 v4.vWorldPosition.y = 0.0;
Ritor1
parents:
diff changeset
454 v4.vWorldPosition.z = 0.0;
Ritor1
parents:
diff changeset
455 memcpy(&this->stru_200C, &v1, 0x60u);
Ritor1
parents:
diff changeset
456 memcpy(&v1, &v4, sizeof(v1));
Ritor1
parents:
diff changeset
457 memcpy(&v2, &v3, sizeof(v2));
Ritor1
parents:
diff changeset
458 memcpy(&this->stru_206C, &v1, 0x60u);
Ritor1
parents:
diff changeset
459 }
Ritor1
parents:
diff changeset
460
Ritor1
parents:
diff changeset
461 //----- (004C1ABA) --------------------------------------------------------
Ritor1
parents:
diff changeset
462 bool Vis::SortVectors_x(RenderVertexSoft *a2, int a3, int a4)
Ritor1
parents:
diff changeset
463 {
Ritor1
parents:
diff changeset
464 bool result; // eax@1
Ritor1
parents:
diff changeset
465 RenderVertexSoft *v5; // edx@2
Ritor1
parents:
diff changeset
466 int v6; // ebx@2
Ritor1
parents:
diff changeset
467 int i; // ecx@2
Ritor1
parents:
diff changeset
468 int v8; // esi@3
Ritor1
parents:
diff changeset
469 int v9; // esi@5
Ritor1
parents:
diff changeset
470 RenderVertexSoft *v10; // eax@8
Ritor1
parents:
diff changeset
471 RenderVertexSoft v11; // [sp+4h] [bp-6Ch]@8
Ritor1
parents:
diff changeset
472 RenderVertexSoft v12; // [sp+34h] [bp-3Ch]@2
Ritor1
parents:
diff changeset
473 int v13; // [sp+64h] [bp-Ch]@7
Ritor1
parents:
diff changeset
474 Vis *thisa; // [sp+68h] [bp-8h]@1
Ritor1
parents:
diff changeset
475 RenderVertexSoft *v15; // [sp+6Ch] [bp-4h]@2
Ritor1
parents:
diff changeset
476
Ritor1
parents:
diff changeset
477 result = a4;
Ritor1
parents:
diff changeset
478 thisa = this;
Ritor1
parents:
diff changeset
479 if ( a4 > a3 )
Ritor1
parents:
diff changeset
480 {
Ritor1
parents:
diff changeset
481 v5 = a2;
Ritor1
parents:
diff changeset
482 v15 = &a2[a4];
Ritor1
parents:
diff changeset
483 v6 = a3 - 1;
Ritor1
parents:
diff changeset
484 memcpy(&v12, &a2[a4], sizeof(v12));
Ritor1
parents:
diff changeset
485 for ( i = a4; ; i = v13 )
Ritor1
parents:
diff changeset
486 {
Ritor1
parents:
diff changeset
487 v8 = (int)&v5[v6].vWorldViewPosition;
Ritor1
parents:
diff changeset
488 do
Ritor1
parents:
diff changeset
489 {
Ritor1
parents:
diff changeset
490 v8 += 48;
Ritor1
parents:
diff changeset
491 ++v6;
Ritor1
parents:
diff changeset
492 }
Ritor1
parents:
diff changeset
493 while ( *(float *)v8 < (double)v12.vWorldViewPosition.x );
Ritor1
parents:
diff changeset
494 v9 = (int)&v5[i].vWorldViewPosition;
Ritor1
parents:
diff changeset
495 do
Ritor1
parents:
diff changeset
496 {
Ritor1
parents:
diff changeset
497 v9 -= 48;
Ritor1
parents:
diff changeset
498 --i;
Ritor1
parents:
diff changeset
499 }
Ritor1
parents:
diff changeset
500 while ( *(float *)v9 > (double)v12.vWorldViewPosition.x );
Ritor1
parents:
diff changeset
501 v13 = i;
Ritor1
parents:
diff changeset
502 if ( v6 >= i )
Ritor1
parents:
diff changeset
503 break;
Ritor1
parents:
diff changeset
504 v10 = &v5[i];
Ritor1
parents:
diff changeset
505 memcpy(&v11, &a2[v6], sizeof(v11));
Ritor1
parents:
diff changeset
506 v5 = a2;
Ritor1
parents:
diff changeset
507 memcpy(&a2[v6], v10, sizeof(a2[v6]));
Ritor1
parents:
diff changeset
508 memcpy(v10, &v11, 0x30u);
Ritor1
parents:
diff changeset
509 }
Ritor1
parents:
diff changeset
510 memcpy(&v11, &v5[v6], sizeof(v11));
Ritor1
parents:
diff changeset
511 memcpy(&v5[v6], v15, sizeof(v5[v6]));
Ritor1
parents:
diff changeset
512 memcpy(v15, &v11, 0x30u);
Ritor1
parents:
diff changeset
513 SortVectors_x(v5, a3, v6 - 1);
Ritor1
parents:
diff changeset
514 SortVectors_x(a2, v6 + 1, a4);
Ritor1
parents:
diff changeset
515 }
Ritor1
parents:
diff changeset
516 return true;
Ritor1
parents:
diff changeset
517 }
Ritor1
parents:
diff changeset
518
Ritor1
parents:
diff changeset
519 //----- (004C1BAA) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
520 int Vis::get_object_zbuf_val(Vis_ObjectInfo *info)
0
Ritor1
parents:
diff changeset
521 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
522 switch (info->object_type)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
523 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
524 case VisObjectType_Sprite:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
525 case VisObjectType_Face:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
526 return info->sZValue;
0
Ritor1
parents:
diff changeset
527
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
528 default:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
529 MessageBoxW(nullptr, L"Undefined type requested for: CVis::get_object_zbuf_val()", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Vis.cpp:1037", 0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
530 return -1;
0
Ritor1
parents:
diff changeset
531 }
Ritor1
parents:
diff changeset
532 }
Ritor1
parents:
diff changeset
533
Ritor1
parents:
diff changeset
534 //----- (004C1BF1) --------------------------------------------------------
Ritor1
parents:
diff changeset
535 int Vis::get_picked_object_zbuf_val()
Ritor1
parents:
diff changeset
536 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
537 if (!default_list.uNumPointers)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
538 return -1;
0
Ritor1
parents:
diff changeset
539
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
540 return get_object_zbuf_val(default_list.object_pointers[0]);
0
Ritor1
parents:
diff changeset
541 }
Ritor1
parents:
diff changeset
542
Ritor1
parents:
diff changeset
543 //----- (004C1C0C) --------------------------------------------------------
Ritor1
parents:
diff changeset
544 bool Vis::Intersect_Ray_Face(RenderVertexSoft *pRayStart, RenderVertexSoft *pRayEnd, float *pDepth, RenderVertexSoft *a4, BLVFace *a5, unsigned int a6)
Ritor1
parents:
diff changeset
545 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
546 //BLVFace *v7; // ebx@1
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
547 //bool result; // eax@1
0
Ritor1
parents:
diff changeset
548 double v9; // st7@3
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
549 //__int16 v10; // fps@3
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
550 //char v11; // c0@3
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
551 //char v12; // c2@3
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
552 //char v13; // c3@3
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
553 //__int16 v14; // fps@5
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
554 //char v15; // c0@5
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
555 //char v16; // c2@5
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
556 //char v17; // c3@5
0
Ritor1
parents:
diff changeset
557 double v18; // st5@6
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
558 //__int16 v19; // fps@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
559 //char v20; // c0@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
560 //char v21; // c2@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
561 //char v22; // c3@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
562 //unsigned __int8 v23; // c0@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
563 //char v24; // c2@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
564 //unsigned __int8 v25; // c3@6
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
565 //char v26; // zf@6
0
Ritor1
parents:
diff changeset
566 double v27; // st6@10
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
567 //__int16 v28; // fps@10
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
568 //unsigned __int8 v29; // c0@10
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
569 //char v30; // c2@10
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
570 //unsigned __int8 v31; // c3@10
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
571 //double v32; // st7@11
0
Ritor1
parents:
diff changeset
572 Vec2_short_ v33; // ST1E_4@11
Ritor1
parents:
diff changeset
573 Vec3_short_ v34; // ST04_6@11
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
574 //float a5a; // [sp+30h] [bp+18h]@10
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
575 //float a5b; // [sp+30h] [bp+18h]@13
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
576
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 618
diff changeset
577 if (a5->Portal() || a5->Invisible())
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
578 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
579
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
580
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
581 int ray_dir_x = pRayEnd->vWorldPosition.x - pRayStart->vWorldPosition.x,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
582 ray_dir_y = pRayEnd->vWorldPosition.y - pRayStart->vWorldPosition.y,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
583 ray_dir_z = pRayEnd->vWorldPosition.z - pRayStart->vWorldPosition.z;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
584
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
585 v9 = ray_dir_z * a5->pFacePlane.vNormal.z
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
586 + ray_dir_y * a5->pFacePlane.vNormal.y
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
587 + ray_dir_x * a5->pFacePlane.vNormal.x;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
588 if (v9 >= 0) // ray faces face's normal ( > 0) or parallel ( == 0)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
589 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
590
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
591 //ray = t dir + start
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
592 //plane = (p - vertex) normal = -d
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
593 //
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
594 //
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
595 //(t dir + start - vertex) normal = -d
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
596 //
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
597 // -d - (start - vertex) norm
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
598 //t = --------------------
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
599 // dir norm
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
600
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
601
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
602 float dir_mag = sqrtf(ray_dir_x * ray_dir_x + ray_dir_y * ray_dir_y + ray_dir_z * ray_dir_z);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
603 float ndir_x = ray_dir_x / dir_mag,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
604 ndir_y = ray_dir_y / dir_mag,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
605 ndir_z = ray_dir_z / dir_mag;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
606
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
607 int face_center_x = (a5->pBounding.x1 + a5->pBounding.x2) / 2,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
608 face_center_y = (a5->pBounding.y1 + a5->pBounding.y2) / 2,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
609 face_center_z = (a5->pBounding.z1 + a5->pBounding.z2) / 2;
0
Ritor1
parents:
diff changeset
610
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
611 int to_plane_x = pRayStart->vWorldPosition.x - face_center_x,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
612 to_plane_y = pRayStart->vWorldPosition.y - face_center_y,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
613 to_plane_z = pRayStart->vWorldPosition.z - face_center_z;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
614
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
615 float t = /*-a5->pFacePlane.dist*/ - (to_plane_x * a5->pFacePlane.vNormal.x + to_plane_y * a5->pFacePlane.vNormal.y + to_plane_y * a5->pFacePlane.vNormal.z) /
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
616 (ndir_x * a5->pFacePlane.vNormal.x + ndir_y * a5->pFacePlane.vNormal.y + ndir_z * a5->pFacePlane.vNormal.z);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
617 if (t <= *pDepth)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
618 {
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
619 int intersection_x = pRayStart->vWorldPosition.x + ndir_x * t,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
620 intersection_y = pRayStart->vWorldPosition.y + ndir_y * t,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
621 intersection_z = pRayStart->vWorldPosition.z + ndir_z * t;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
622
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
623 if (intersection_x < a5->pBounding.x1 || intersection_x > a5->pBounding.x2 ||
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
624 intersection_y < a5->pBounding.y1 || intersection_y > a5->pBounding.y2 ||
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
625 intersection_z < a5->pBounding.z1 || intersection_z > a5->pBounding.z2)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
626 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
627
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
628 a5->uAttributes |= 0x80000000;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
629 return true;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
630 }
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
631
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
632
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
633 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
634
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
635 // v7 = a5;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
636 //result = a5->uAttributes;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
637 v9 = pRayEnd->vWorldPosition.z * a5->pFacePlane.vNormal.z
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
638 + pRayEnd->vWorldPosition.y * a5->pFacePlane.vNormal.y
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
639 + pRayEnd->vWorldPosition.x * a5->pFacePlane.vNormal.x;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
640 if (v9 >= 0) // ray faces face's normal ( > 0) or parallel ( == 0)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
641 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
642
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
643 a5->uAttributes |= 0x80000000;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
644 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
645
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
646 v18 = -(a5->pFacePlane.vNormal.y * pRayStart->vWorldPosition.y
0
Ritor1
parents:
diff changeset
647 + pRayStart->vWorldPosition.x * a5->pFacePlane.vNormal.x
Ritor1
parents:
diff changeset
648 + pRayStart->vWorldPosition.z * a5->pFacePlane.vNormal.z
Ritor1
parents:
diff changeset
649 + a5->pFacePlane.dist);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
650 if (v18 > 0)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
651 return false;
0
Ritor1
parents:
diff changeset
652 //UNDEF(v19);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
653 //v20 = v9 < 0.0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
654 //v21 = 0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
655 //v22 = v9 == 0.0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
656 //BYTE1(result) = HIBYTE(v19);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
657 /*v23 = v18 < 0.0;
0
Ritor1
parents:
diff changeset
658 v24 = 0;
Ritor1
parents:
diff changeset
659 v25 = v18 == 0.0;
Ritor1
parents:
diff changeset
660 v26 = (BYTE1(result) & 0x41) == 0;
Ritor1
parents:
diff changeset
661 BYTE1(result) = HIBYTE(v19);
Ritor1
parents:
diff changeset
662 if ( v26 )
Ritor1
parents:
diff changeset
663 {
Ritor1
parents:
diff changeset
664 if ( v18 < 0.0 )
Ritor1
parents:
diff changeset
665 goto LABEL_12;
Ritor1
parents:
diff changeset
666 }
Ritor1
parents:
diff changeset
667 else
Ritor1
parents:
diff changeset
668 {
Ritor1
parents:
diff changeset
669 if ( !(v23 | v25) )
Ritor1
parents:
diff changeset
670 {
Ritor1
parents:
diff changeset
671 LABEL_12:
Ritor1
parents:
diff changeset
672 LOBYTE(result) = 0;
Ritor1
parents:
diff changeset
673 return result;
Ritor1
parents:
diff changeset
674 }
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
675 }*/
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
676
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
677 //a5a = v18;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
678 v27 = v18 / v9;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
679 //HIWORD(result) = HIWORD(pDepth);
0
Ritor1
parents:
diff changeset
680 //UNDEF(v28);
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
681 //v29 = v27 < *pDepth;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
682 //v30 = 0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
683 //v31 = v27 == *pDepth;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
684 //BYTE1(result) = HIBYTE(v28);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
685
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
686 if (v27 > *pDepth)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
687 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
688
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
689 a5->uAttributes |= 0x80000000;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
690
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
691 a4->vWorldPosition.x = v27 * pRayEnd->vWorldPosition.x + pRayStart->vWorldPosition.x;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
692 a4->vWorldPosition.y = v27 * pRayEnd->vWorldPosition.y + pRayStart->vWorldPosition.y;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
693 a4->vWorldPosition.z = v27 * pRayEnd->vWorldPosition.z + pRayStart->vWorldPosition.z;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
694 v33.x = (signed __int64)a4->vWorldPosition.x;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
695 v33.y = (signed __int64)a4->vWorldPosition.y;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
696 v34.x = v33.x;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
697 v34.y = 0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
698 v34.z = (signed __int64)a4->vWorldPosition.z;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
699
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
700 if ( _4C1D2B(a5, v34, a6) == 0.0)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
701 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
702
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
703 //a5b = v27;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
704 *pDepth = v27;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
705 return true;
0
Ritor1
parents:
diff changeset
706 }
Ritor1
parents:
diff changeset
707
Ritor1
parents:
diff changeset
708 //----- (004C1D2B) --------------------------------------------------------
Ritor1
parents:
diff changeset
709 int Vis::_4C1D2B(BLVFace *pFace, Vec3_short_ a2, unsigned int uModelID)
Ritor1
parents:
diff changeset
710 {
Ritor1
parents:
diff changeset
711 BLVFace *v4; // esi@1
Ritor1
parents:
diff changeset
712 int v5; // esi@10
Ritor1
parents:
diff changeset
713 bool v6; // edi@10
Ritor1
parents:
diff changeset
714 int v7; // ecx@12
Ritor1
parents:
diff changeset
715 signed int v8; // edx@12
Ritor1
parents:
diff changeset
716 signed int v9; // eax@13
Ritor1
parents:
diff changeset
717 signed int v10; // ebx@14
Ritor1
parents:
diff changeset
718 int v11; // edi@16
Ritor1
parents:
diff changeset
719 signed int v12; // ST28_4@18
Ritor1
parents:
diff changeset
720 signed __int64 v13; // qtt@18
Ritor1
parents:
diff changeset
721 signed int result; // eax@21
Ritor1
parents:
diff changeset
722 int v15; // [sp+10h] [bp-Ch]@10
Ritor1
parents:
diff changeset
723 signed int v16; // [sp+18h] [bp-4h]@10
Ritor1
parents:
diff changeset
724
Ritor1
parents:
diff changeset
725 v4 = pFace;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
726 if (a2.z < pFace->pBounding.z1 || a2.z > pFace->pBounding.z2 ||
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
727 a2.x < pFace->pBounding.x1 || a2.x > pFace->pBounding.x2 ||
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
728 a2.y < pFace->pBounding.y1 || a2.y > pFace->pBounding.y2)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
729 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
730
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
731 if (uModelID != -1)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
732 _4C2186_BLV_IntersectBModel((int *)&pFace, (int *)&uModelID,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
733 word_F8BC48_displaced_face_intersect_plane_coords_a,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
734 word_F8BD18_displaced_face_intersect_plane_coords_b,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
735 &a2, pFace, uModelID);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
736 else
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
737 _4C1EE5_BLV_IntersectBModel_2((int *)&pFace, (int *)&uModelID,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
738 word_F8BC48_displaced_face_intersect_plane_coords_a,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
739 word_F8BD18_displaced_face_intersect_plane_coords_b,
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
740 &a2, pFace);
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
741
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
742 v5 = 2 * v4->uNumVertices;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
743 v16 = 0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
744 word_F8BC48_displaced_face_intersect_plane_coords_a[v5] = word_F8BC48_displaced_face_intersect_plane_coords_a[0];
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
745 word_F8BD18_displaced_face_intersect_plane_coords_b[v5] = word_F8BD18_displaced_face_intersect_plane_coords_b[0];
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
746 v15 = 0;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
747 v6 = word_F8BD18_displaced_face_intersect_plane_coords_b[0] >= (signed int)uModelID;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
748 if (v5 <= 0)
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
749 return false;
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
750
0
Ritor1
parents:
diff changeset
751 do
Ritor1
parents:
diff changeset
752 {
Ritor1
parents:
diff changeset
753 if ( v16 >= 2 )
Ritor1
parents:
diff changeset
754 break;
Ritor1
parents:
diff changeset
755 v7 = 2 * v15;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
756 v8 = word_F8BD18_displaced_face_intersect_plane_coords_b[ + v15 + 1];
0
Ritor1
parents:
diff changeset
757 if ( v6 ^ v8 >= (signed int)uModelID )
Ritor1
parents:
diff changeset
758 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
759 v9 = word_F8BC48_displaced_face_intersect_plane_coords_a[v7/2 + 1];
0
Ritor1
parents:
diff changeset
760 if ( v9 >= (signed int)pFace )
Ritor1
parents:
diff changeset
761 v10 = 0;
Ritor1
parents:
diff changeset
762 else
Ritor1
parents:
diff changeset
763 v10 = 2;
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
764 v11 = v10 | word_F8BC48_displaced_face_intersect_plane_coords_a[v7/2] < (signed int)pFace;
0
Ritor1
parents:
diff changeset
765 if ( v11 != 3 )
Ritor1
parents:
diff changeset
766 {
Ritor1
parents:
diff changeset
767 if ( !v11
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
768 || (v12 = v9 - word_F8BC48_displaced_face_intersect_plane_coords_a[v7/2],
0
Ritor1
parents:
diff changeset
769 LODWORD(v13) = v12 << 16,
Ritor1
parents:
diff changeset
770 HIDWORD(v13) = v12 >> 16,
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
771 word_F8BC48_displaced_face_intersect_plane_coords_a[v7/2]
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
772 + ((signed int)(((unsigned __int64)(v13 / (v8 - word_F8BD18_displaced_face_intersect_plane_coords_b[v7/2])
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
773 * (signed int)((uModelID - word_F8BD18_displaced_face_intersect_plane_coords_b[v7/2]) << 16)) >> 16) + 32768) >> 16) >= (signed int)pFace) )
0
Ritor1
parents:
diff changeset
774 ++v16;
Ritor1
parents:
diff changeset
775 }
Ritor1
parents:
diff changeset
776 }
Ritor1
parents:
diff changeset
777 ++v15;
Ritor1
parents:
diff changeset
778 v6 = v8 >= (signed int)uModelID;
Ritor1
parents:
diff changeset
779 }
Ritor1
parents:
diff changeset
780 while ( v15 < v5 );
Ritor1
parents:
diff changeset
781 result = 1;
Ritor1
parents:
diff changeset
782 if ( v16 != 1 )
Ritor1
parents:
diff changeset
783 LABEL_25:
Ritor1
parents:
diff changeset
784 result = 0;
Ritor1
parents:
diff changeset
785 return result;
Ritor1
parents:
diff changeset
786 }
Ritor1
parents:
diff changeset
787
Ritor1
parents:
diff changeset
788 //----- (004C1EE5) --------------------------------------------------------
Ritor1
parents:
diff changeset
789 bool Vis::_4C1EE5_BLV_IntersectBModel_2(int *a1, int *a2, __int16 *a3, __int16 *a4, Vec3_short_ *a5, BLVFace *pFace)
Ritor1
parents:
diff changeset
790 {
Ritor1
parents:
diff changeset
791 bool result; // eax@1
Ritor1
parents:
diff changeset
792 unsigned int v8; // ecx@1
Ritor1
parents:
diff changeset
793 Vec3_short_ *v9; // ecx@2
Ritor1
parents:
diff changeset
794 __int16 *v10; // edx@3
Ritor1
parents:
diff changeset
795 signed int v11; // ecx@4
Ritor1
parents:
diff changeset
796 char v12; // zf@6
Ritor1
parents:
diff changeset
797 Vec3_short_ *v13; // ecx@6
Ritor1
parents:
diff changeset
798 int v14; // edx@7
Ritor1
parents:
diff changeset
799 __int16 *v15; // edx@8
Ritor1
parents:
diff changeset
800 signed int v16; // ecx@9
Ritor1
parents:
diff changeset
801 int v17; // edx@11
Ritor1
parents:
diff changeset
802 __int16 *v18; // edx@12
Ritor1
parents:
diff changeset
803 signed int v19; // ecx@13
Ritor1
parents:
diff changeset
804 signed int a5a; // [sp+24h] [bp+18h]@2
Ritor1
parents:
diff changeset
805 signed int a5b; // [sp+24h] [bp+18h]@7
Ritor1
parents:
diff changeset
806 signed int a5c; // [sp+24h] [bp+18h]@11
Ritor1
parents:
diff changeset
807
Ritor1
parents:
diff changeset
808 result = (bool)pFace;
Ritor1
parents:
diff changeset
809 v8 = pFace->uAttributes;
Ritor1
parents:
diff changeset
810 if ( BYTE1(v8) & 1 )
Ritor1
parents:
diff changeset
811 {
Ritor1
parents:
diff changeset
812 v9 = a5;
Ritor1
parents:
diff changeset
813 a5a = 0;
Ritor1
parents:
diff changeset
814 *a1 = v9->x;
Ritor1
parents:
diff changeset
815 *a2 = v9->y;
Ritor1
parents:
diff changeset
816 if ( pFace->uNumVertices )
Ritor1
parents:
diff changeset
817 {
Ritor1
parents:
diff changeset
818 v10 = a4 + 1;
Ritor1
parents:
diff changeset
819 do
Ritor1
parents:
diff changeset
820 {
Ritor1
parents:
diff changeset
821 v11 = a5a;
Ritor1
parents:
diff changeset
822 a3[2 * a5a] = pFace->pXInterceptDisplacements[a5a] + pIndoor->pVertices[pFace->pVertexIDs[a5a]].x;
Ritor1
parents:
diff changeset
823 *(v10 - 1) = pFace->pYInterceptDisplacements[v11] + pIndoor->pVertices[pFace->pVertexIDs[v11]].y;
Ritor1
parents:
diff changeset
824 *(__int16 *)((char *)v10 + (int)a3 - (int)a4) = pFace->pXInterceptDisplacements[v11 + 1]
Ritor1
parents:
diff changeset
825 + pIndoor->pVertices[pFace->pVertexIDs[v11 + 1]].x;
Ritor1
parents:
diff changeset
826 ++a5a;
Ritor1
parents:
diff changeset
827 *v10 = pFace->pYInterceptDisplacements[v11 + 1] + pIndoor->pVertices[pFace->pVertexIDs[v11 + 1]].y;
Ritor1
parents:
diff changeset
828 v10 += 2;
Ritor1
parents:
diff changeset
829 }
Ritor1
parents:
diff changeset
830 while ( a5a < pFace->uNumVertices );
Ritor1
parents:
diff changeset
831 }
Ritor1
parents:
diff changeset
832 }
Ritor1
parents:
diff changeset
833 else
Ritor1
parents:
diff changeset
834 {
Ritor1
parents:
diff changeset
835 v12 = (BYTE1(v8) & 2) == 0;
Ritor1
parents:
diff changeset
836 v13 = a5;
Ritor1
parents:
diff changeset
837 if ( v12 )
Ritor1
parents:
diff changeset
838 {
Ritor1
parents:
diff changeset
839 v17 = a5->y;
Ritor1
parents:
diff changeset
840 a5c = 0;
Ritor1
parents:
diff changeset
841 *a1 = v17;
Ritor1
parents:
diff changeset
842 *a2 = v13->z;
Ritor1
parents:
diff changeset
843 if ( pFace->uNumVertices )
Ritor1
parents:
diff changeset
844 {
Ritor1
parents:
diff changeset
845 v18 = a4 + 1;
Ritor1
parents:
diff changeset
846 do
Ritor1
parents:
diff changeset
847 {
Ritor1
parents:
diff changeset
848 v19 = a5c;
Ritor1
parents:
diff changeset
849 a3[2 * a5c] = pFace->pYInterceptDisplacements[a5c] + pIndoor->pVertices[pFace->pVertexIDs[a5c]].y;
Ritor1
parents:
diff changeset
850 *(v18 - 1) = pFace->pZInterceptDisplacements[v19] + pIndoor->pVertices[pFace->pVertexIDs[v19]].z;
Ritor1
parents:
diff changeset
851 *(__int16 *)((char *)v18 + (int)(char *)a3 - (char *)a4) = pFace->pYInterceptDisplacements[v19 + 1]
Ritor1
parents:
diff changeset
852 + pIndoor->pVertices[pFace->pVertexIDs[v19 + 1]].y;
Ritor1
parents:
diff changeset
853 ++a5c;
Ritor1
parents:
diff changeset
854 *v18 = pFace->pZInterceptDisplacements[v19 + 1] + pIndoor->pVertices[pFace->pVertexIDs[v19 + 1]].z;
Ritor1
parents:
diff changeset
855 v18 += 2;
Ritor1
parents:
diff changeset
856 }
Ritor1
parents:
diff changeset
857 while ( a5c < pFace->uNumVertices );
Ritor1
parents:
diff changeset
858 }
Ritor1
parents:
diff changeset
859 }
Ritor1
parents:
diff changeset
860 else
Ritor1
parents:
diff changeset
861 {
Ritor1
parents:
diff changeset
862 v14 = a5->x;
Ritor1
parents:
diff changeset
863 a5b = 0;
Ritor1
parents:
diff changeset
864 *a1 = v14;
Ritor1
parents:
diff changeset
865 *a2 = v13->z;
Ritor1
parents:
diff changeset
866 if ( pFace->uNumVertices )
Ritor1
parents:
diff changeset
867 {
Ritor1
parents:
diff changeset
868 v15 = a4 + 1;
Ritor1
parents:
diff changeset
869 do
Ritor1
parents:
diff changeset
870 {
Ritor1
parents:
diff changeset
871 v16 = a5b;
Ritor1
parents:
diff changeset
872 a3[2 * a5b] = pFace->pXInterceptDisplacements[a5b] + pIndoor->pVertices[pFace->pVertexIDs[a5b]].x;
Ritor1
parents:
diff changeset
873 *(v15 - 1) = pFace->pZInterceptDisplacements[v16] + pIndoor->pVertices[pFace->pVertexIDs[v16]].z;
Ritor1
parents:
diff changeset
874 *(__int16 *)((char *)v15 + (int)a3 - (int)a4) = pFace->pXInterceptDisplacements[v16 + 1]
Ritor1
parents:
diff changeset
875 + pIndoor->pVertices[pFace->pVertexIDs[v16 + 1]].x;
Ritor1
parents:
diff changeset
876 ++a5b;
Ritor1
parents:
diff changeset
877 *v15 = pFace->pZInterceptDisplacements[v16 + 1] + pIndoor->pVertices[pFace->pVertexIDs[v16 + 1]].z;
Ritor1
parents:
diff changeset
878 v15 += 2;
Ritor1
parents:
diff changeset
879 }
Ritor1
parents:
diff changeset
880 while ( a5b < pFace->uNumVertices );
Ritor1
parents:
diff changeset
881 }
Ritor1
parents:
diff changeset
882 }
Ritor1
parents:
diff changeset
883 }
Ritor1
parents:
diff changeset
884 LOBYTE(result) = 1;
Ritor1
parents:
diff changeset
885 return result;
Ritor1
parents:
diff changeset
886 }
Ritor1
parents:
diff changeset
887
Ritor1
parents:
diff changeset
888 //----- (004C2186) --------------------------------------------------------
Ritor1
parents:
diff changeset
889 bool Vis::_4C2186_BLV_IntersectBModel(int *a1, int *a2, __int16 *a3, __int16 *a4, Vec3_short_ *a5, BLVFace *a6, unsigned int uModelID)
Ritor1
parents:
diff changeset
890 {
Ritor1
parents:
diff changeset
891 bool result; // eax@1
Ritor1
parents:
diff changeset
892 int *v9; // esi@1
Ritor1
parents:
diff changeset
893 unsigned int v10; // ecx@1
Ritor1
parents:
diff changeset
894 unsigned int v11; // edx@3
Ritor1
parents:
diff changeset
895 signed int v12; // ecx@4
Ritor1
parents:
diff changeset
896 __int16 v13; // si@4
Ritor1
parents:
diff changeset
897 __int16 *v14; // ecx@4
Ritor1
parents:
diff changeset
898 unsigned int v15; // edx@8
Ritor1
parents:
diff changeset
899 signed int v16; // ecx@9
Ritor1
parents:
diff changeset
900 __int16 v17; // si@9
Ritor1
parents:
diff changeset
901 __int16 *v18; // ecx@9
Ritor1
parents:
diff changeset
902 unsigned int v19; // edx@12
Ritor1
parents:
diff changeset
903 signed int v20; // ecx@13
Ritor1
parents:
diff changeset
904 __int16 v21; // si@13
Ritor1
parents:
diff changeset
905 __int16 *v22; // ecx@13
Ritor1
parents:
diff changeset
906 signed int a1a; // [sp+14h] [bp+8h]@1
Ritor1
parents:
diff changeset
907 __int16 *a5a; // [sp+24h] [bp+18h]@3
Ritor1
parents:
diff changeset
908 __int16 *a5b; // [sp+24h] [bp+18h]@8
Ritor1
parents:
diff changeset
909 __int16 *a5c; // [sp+24h] [bp+18h]@12
Ritor1
parents:
diff changeset
910
Ritor1
parents:
diff changeset
911 result = (bool)a6;
Ritor1
parents:
diff changeset
912 v9 = a1;
Ritor1
parents:
diff changeset
913 v10 = a6->uAttributes;
Ritor1
parents:
diff changeset
914 a1a = 0;
Ritor1
parents:
diff changeset
915 if ( BYTE1(v10) & 1 )
Ritor1
parents:
diff changeset
916 {
Ritor1
parents:
diff changeset
917 *v9 = a5->x;
Ritor1
parents:
diff changeset
918 *a2 = a5->y;
Ritor1
parents:
diff changeset
919 if ( a6->uNumVertices )
Ritor1
parents:
diff changeset
920 {
Ritor1
parents:
diff changeset
921 v11 = 188 * uModelID + 72;
Ritor1
parents:
diff changeset
922 a5a = a4 + 1;
Ritor1
parents:
diff changeset
923 do
Ritor1
parents:
diff changeset
924 {
Ritor1
parents:
diff changeset
925 v12 = a1a;
Ritor1
parents:
diff changeset
926 a3[2 * a1a] = a6->pXInterceptDisplacements[a1a]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
927 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v11] + 12 * a6->pVertexIDs[a1a]);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
928 + pOutdoor->pBModels[v11].pVertices.pVertices[a6->pVertexIDs[a1a]].x;
0
Ritor1
parents:
diff changeset
929 *(a5a - 1) = a6->pYInterceptDisplacements[v12]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
930 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v11] + 12 * a6->pVertexIDs[v12] + 4);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
931 + pOutdoor->pBModels[v11].pVertices.pVertices[a6->pVertexIDs[v12]].y;
0
Ritor1
parents:
diff changeset
932 *(__int16 *)((char *)a5a + (int)(char *)a3 - (char *)a4) = a6->pXInterceptDisplacements[v12 + 1]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
933 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v11]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
934 // + 12 * a6->pVertexIDs[v12 + 1]);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
935 + pOutdoor->pBModels[v11].pVertices.pVertices[a6->pVertexIDs[v12+1]].x;
0
Ritor1
parents:
diff changeset
936 v13 = a6->pYInterceptDisplacements[v12 + 1]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
937 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v11] + 12 * a6->pVertexIDs[v12 + 1] + 4);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
938 + pOutdoor->pBModels[v11].pVertices.pVertices[a6->pVertexIDs[v12 + 1]].y;
0
Ritor1
parents:
diff changeset
939 v14 = a5a;
Ritor1
parents:
diff changeset
940 ++a1a;
Ritor1
parents:
diff changeset
941 a5a += 2;
Ritor1
parents:
diff changeset
942 *v14 = v13;
Ritor1
parents:
diff changeset
943 }
Ritor1
parents:
diff changeset
944 while ( a1a < a6->uNumVertices );
Ritor1
parents:
diff changeset
945 }
Ritor1
parents:
diff changeset
946 }
Ritor1
parents:
diff changeset
947 else
Ritor1
parents:
diff changeset
948 {
Ritor1
parents:
diff changeset
949 if ( BYTE1(v10) & 2 )
Ritor1
parents:
diff changeset
950 {
Ritor1
parents:
diff changeset
951 *v9 = a5->x;
Ritor1
parents:
diff changeset
952 *a2 = a5->z;
Ritor1
parents:
diff changeset
953 if ( a6->uNumVertices )
Ritor1
parents:
diff changeset
954 {
Ritor1
parents:
diff changeset
955 v15 = 188 * uModelID + 72;
Ritor1
parents:
diff changeset
956 a5b = a4 + 1;
Ritor1
parents:
diff changeset
957 do
Ritor1
parents:
diff changeset
958 {
Ritor1
parents:
diff changeset
959 v16 = a1a;
Ritor1
parents:
diff changeset
960 a3[2 * a1a] = a6->pXInterceptDisplacements[a1a]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
961 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v15] + 12 * a6->pVertexIDs[a1a]);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
962 + pOutdoor->pBModels[v15].pVertices.pVertices[a6->pVertexIDs[a1a]].x;
0
Ritor1
parents:
diff changeset
963 *(a5b - 1) = a6->pZInterceptDisplacements[v16]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
964 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v15] + 12 * a6->pVertexIDs[v16] + 8);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
965 + pOutdoor->pBModels[v15].pVertices.pVertices[a6->pVertexIDs[v16]].y;
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
966 *(__int16 *)((char *)a5b + (int)a3 - (int)a4) = a6->pXInterceptDisplacements[v16 + 1]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
967 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v15]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
968 // + 12 * a6->pVertexIDs[v16 + 1]);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
969 + pOutdoor->pBModels[v15].pVertices.pVertices[a6->pVertexIDs[v16+1]].x;
0
Ritor1
parents:
diff changeset
970 v17 = a6->pZInterceptDisplacements[v16 + 1]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
971 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v15] + 12 * a6->pVertexIDs[v16 + 1] + 8);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
972 + pOutdoor->pBModels[v15].pVertices.pVertices[a6->pVertexIDs[v16+1]].z;
0
Ritor1
parents:
diff changeset
973 v18 = a5b;
Ritor1
parents:
diff changeset
974 ++a1a;
Ritor1
parents:
diff changeset
975 a5b += 2;
Ritor1
parents:
diff changeset
976 *v18 = v17;
Ritor1
parents:
diff changeset
977 }
Ritor1
parents:
diff changeset
978 while ( a1a < a6->uNumVertices );
Ritor1
parents:
diff changeset
979 }
Ritor1
parents:
diff changeset
980 }
Ritor1
parents:
diff changeset
981 else
Ritor1
parents:
diff changeset
982 {
Ritor1
parents:
diff changeset
983 *v9 = a5->y;
Ritor1
parents:
diff changeset
984 *a2 = a5->z;
Ritor1
parents:
diff changeset
985 if ( a6->uNumVertices )
Ritor1
parents:
diff changeset
986 {
Ritor1
parents:
diff changeset
987 v19 = 188 * uModelID + 72;
Ritor1
parents:
diff changeset
988 a5c = a4 + 1;
Ritor1
parents:
diff changeset
989 do
Ritor1
parents:
diff changeset
990 {
Ritor1
parents:
diff changeset
991 v20 = a1a;
Ritor1
parents:
diff changeset
992 a3[2 * a1a] = a6->pYInterceptDisplacements[a1a]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
993 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v19] + 12 * a6->pVertexIDs[a1a] + 4);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
994 + pOutdoor->pBModels[v19].pVertices.pVertices[a6->pVertexIDs[a1a]].y;
0
Ritor1
parents:
diff changeset
995 *(a5c - 1) = a6->pZInterceptDisplacements[v20]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
996 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v19] + 12 * a6->pVertexIDs[v20] + 8);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
997 + pOutdoor->pBModels[v19].pVertices.pVertices[a6->pVertexIDs[a1a]].z;
0
Ritor1
parents:
diff changeset
998 *(__int16 *)((char *)a5c + (int)(char *)a3 - (char *)a4) = a6->pYInterceptDisplacements[v20 + 1]
79
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
999 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v19]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1000 // + 12 * a6->pVertexIDs[v20 + 1]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1001 // + 4);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1002 + pOutdoor->pBModels[v19].pVertices.pVertices[a6->pVertexIDs[v20+1]].y;
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1003 v21 = a6->pZInterceptDisplacements[v20 + 1]
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1004 // + *(short *)(*(int *)&pOutdoor->pBModels->pModelName[v19] + 12 * a6->pVertexIDs[v20 + 1] + 8);
6ad816231528 structure fixes, death crash fix
zipi
parents: 65
diff changeset
1005 + pOutdoor->pBModels[v19].pVertices.pVertices[a6->pVertexIDs[v20+1]].z;
0
Ritor1
parents:
diff changeset
1006 v22 = a5c;
Ritor1
parents:
diff changeset
1007 ++a1a;
Ritor1
parents:
diff changeset
1008 a5c += 2;
Ritor1
parents:
diff changeset
1009 *v22 = v21;
Ritor1
parents:
diff changeset
1010 }
Ritor1
parents:
diff changeset
1011 while ( a1a < a6->uNumVertices );
Ritor1
parents:
diff changeset
1012 }
Ritor1
parents:
diff changeset
1013 }
Ritor1
parents:
diff changeset
1014 }
Ritor1
parents:
diff changeset
1015 LOBYTE(result) = 1;
Ritor1
parents:
diff changeset
1016 return result;
Ritor1
parents:
diff changeset
1017 }
Ritor1
parents:
diff changeset
1018
Ritor1
parents:
diff changeset
1019 //----- (004C248E) --------------------------------------------------------
Ritor1
parents:
diff changeset
1020 void Vis::CastPickRay(RenderVertexSoft *pRay, float fMouseX, float fMouseY, float fPickDepth)
Ritor1
parents:
diff changeset
1021 {
Ritor1
parents:
diff changeset
1022 int v5; // ebx@1
Ritor1
parents:
diff changeset
1023 int v6; // edi@1
Ritor1
parents:
diff changeset
1024 int v7; // esi@1
Ritor1
parents:
diff changeset
1025 Vec3_int_ v8; // ST08_12@1
Ritor1
parents:
diff changeset
1026 int v9; // ST04_4@1
Ritor1
parents:
diff changeset
1027 int v10; // eax@1
Ritor1
parents:
diff changeset
1028 RenderVertexSoft v11[2]; // [sp+2Ch] [bp-74h]@1
Ritor1
parents:
diff changeset
1029 int v12; // [sp+8Ch] [bp-14h]@1
Ritor1
parents:
diff changeset
1030 int v13; // [sp+90h] [bp-10h]@1
Ritor1
parents:
diff changeset
1031 int outz; // [sp+94h] [bp-Ch]@1
Ritor1
parents:
diff changeset
1032 int outy; // [sp+98h] [bp-8h]@1
Ritor1
parents:
diff changeset
1033 int v16; // [sp+9Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
1034
Ritor1
parents:
diff changeset
1035 v5 = pIndoorCamera->pos.y;
Ritor1
parents:
diff changeset
1036 v6 = pIndoorCamera->pos.x;
Ritor1
parents:
diff changeset
1037 v13 = pIndoorCamera->pos.x;
Ritor1
parents:
diff changeset
1038 v12 = pIndoorCamera->pos.y;
Ritor1
parents:
diff changeset
1039 v16 = pIndoorCamera->pos.z;
Ritor1
parents:
diff changeset
1040 v7 = pIndoorCamera->sRotationY + UnprojectX((signed __int64)fMouseX);
Ritor1
parents:
diff changeset
1041 v8.z = v16;
Ritor1
parents:
diff changeset
1042 v8.x = v6;
Ritor1
parents:
diff changeset
1043 v8.y = v5;
Ritor1
parents:
diff changeset
1044 v9 = pIndoorCamera->sRotationX + UnprojectY((signed __int64)fMouseY);
Ritor1
parents:
diff changeset
1045 v10 = _48B561_mess_with_scaling_along_z(/*(int)&fMouseX, */fPickDepth);
Ritor1
parents:
diff changeset
1046 Vec3_int_::Rotate(v10, v7, v9, v8, (int *)&fMouseX, &outy, &outz);
Ritor1
parents:
diff changeset
1047 v11[0].flt_2C = 0.0;
Ritor1
parents:
diff changeset
1048 v11[0].vWorldPosition.x = (double)SLODWORD(fMouseX);
Ritor1
parents:
diff changeset
1049 v11[0].vWorldPosition.y = (double)outy;
Ritor1
parents:
diff changeset
1050 v11[0].vWorldPosition.z = (double)outz;
Ritor1
parents:
diff changeset
1051 v11[1].flt_2C = 0.0;
Ritor1
parents:
diff changeset
1052 v11[1].vWorldPosition.x = (double)v13;
Ritor1
parents:
diff changeset
1053 v11[1].vWorldPosition.y = (double)v12;
Ritor1
parents:
diff changeset
1054 v11[1].vWorldPosition.z = (double)v16;
Ritor1
parents:
diff changeset
1055 memcpy(pRay, &v11[1], 0x30u);
Ritor1
parents:
diff changeset
1056 memcpy(&pRay[1], v11, sizeof(pRay[1]));
Ritor1
parents:
diff changeset
1057 }
Ritor1
parents:
diff changeset
1058
Ritor1
parents:
diff changeset
1059 //----- (004C2551) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1060 Vis_ObjectInfo *Vis_SelectionList::sub_4C2551(int a2, int a3)
0
Ritor1
parents:
diff changeset
1061 {
Ritor1
parents:
diff changeset
1062 unsigned int v3; // esi@1
Ritor1
parents:
diff changeset
1063 signed int v4; // edx@1
Ritor1
parents:
diff changeset
1064 char *v5; // eax@2
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1065 Vis_ObjectInfo *result; // eax@6
0
Ritor1
parents:
diff changeset
1066
Ritor1
parents:
diff changeset
1067 v3 = this->uNumPointers;
Ritor1
parents:
diff changeset
1068 v4 = 0;
Ritor1
parents:
diff changeset
1069 if ( (signed int)v3 <= 0 )
Ritor1
parents:
diff changeset
1070 {
Ritor1
parents:
diff changeset
1071 LABEL_6:
Ritor1
parents:
diff changeset
1072 result = 0;
Ritor1
parents:
diff changeset
1073 }
Ritor1
parents:
diff changeset
1074 else
Ritor1
parents:
diff changeset
1075 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1076 v5 = (char *)&this->object_pool[0].sZValue;
0
Ritor1
parents:
diff changeset
1077 while ( *((int *)v5 + 1) != a2 || (*(int *)v5 & 0xFFFF) != a3 )
Ritor1
parents:
diff changeset
1078 {
Ritor1
parents:
diff changeset
1079 ++v4;
Ritor1
parents:
diff changeset
1080 v5 += 12;
Ritor1
parents:
diff changeset
1081 if ( v4 >= (signed int)v3 )
Ritor1
parents:
diff changeset
1082 goto LABEL_6;
Ritor1
parents:
diff changeset
1083 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1084 result = &this->object_pool[v4];
0
Ritor1
parents:
diff changeset
1085 }
Ritor1
parents:
diff changeset
1086 return result;
Ritor1
parents:
diff changeset
1087 }
Ritor1
parents:
diff changeset
1088
Ritor1
parents:
diff changeset
1089 //----- (004C2591) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1090 void Vis_SelectionList::create_object_pointers(PointerCreationType type)
0
Ritor1
parents:
diff changeset
1091 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1092 switch (type)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1093 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1094 case All:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1095 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1096 for (uint i = 0; i < uNumPointers; ++i)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1097 object_pointers[i] = &object_pool[i];
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1098 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1099 break;
0
Ritor1
parents:
diff changeset
1100
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1101 case Unique: // seems quite retarted; the inner if condition will never trigger, since we compare pointers, not values. pointers will always be unique
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1102 { // but it may be decompilation error thou
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1103 bool create = true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1104
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1105 for (uint i = 0; i < uNumPointers; ++i)
0
Ritor1
parents:
diff changeset
1106 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1107 for (uint j = 0; j < i; ++j)
0
Ritor1
parents:
diff changeset
1108 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1109 if (object_pointers[j] == &object_pool[i])
0
Ritor1
parents:
diff changeset
1110 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1111 create = false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1112 break;
0
Ritor1
parents:
diff changeset
1113 }
Ritor1
parents:
diff changeset
1114 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1115
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1116 if (create)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1117 object_pointers[i] = &object_pool[i];
0
Ritor1
parents:
diff changeset
1118 }
Ritor1
parents:
diff changeset
1119 }
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1120 break;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1121
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1122 default:
0
Ritor1
parents:
diff changeset
1123 MessageBoxW(nullptr, L"Unknown pointer creation flag passed to ::create_object_pointers()", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Vis.cpp:1358", 0);
Ritor1
parents:
diff changeset
1124 }
Ritor1
parents:
diff changeset
1125 }
Ritor1
parents:
diff changeset
1126
Ritor1
parents:
diff changeset
1127 //----- (004C264A) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1128 void Vis::sort_object_pointers(Vis_ObjectInfo **pPointers, int left, int right)
0
Ritor1
parents:
diff changeset
1129 {
Ritor1
parents:
diff changeset
1130 int v4; // edx@1
Ritor1
parents:
diff changeset
1131 int v5; // ebx@1
Ritor1
parents:
diff changeset
1132 int v6; // esi@2
Ritor1
parents:
diff changeset
1133 signed int i; // ecx@2
Ritor1
parents:
diff changeset
1134 int v8; // eax@3
Ritor1
parents:
diff changeset
1135 int v9; // ebx@4
Ritor1
parents:
diff changeset
1136 int v10; // ebx@6
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1137 Vis_ObjectInfo *v11; // eax@7
0
Ritor1
parents:
diff changeset
1138 Vis *thisa; // [sp+4h] [bp-4h]@1
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1139 Vis_ObjectInfo *a3a; // [sp+14h] [bp+Ch]@2
0
Ritor1
parents:
diff changeset
1140
Ritor1
parents:
diff changeset
1141 v4 = left;
Ritor1
parents:
diff changeset
1142 v5 = right;
Ritor1
parents:
diff changeset
1143 thisa = this;
Ritor1
parents:
diff changeset
1144 if ( right > left )
Ritor1
parents:
diff changeset
1145 {
Ritor1
parents:
diff changeset
1146 do
Ritor1
parents:
diff changeset
1147 {
Ritor1
parents:
diff changeset
1148 v6 = v4 - 1;
Ritor1
parents:
diff changeset
1149 a3a = pPointers[v5];
Ritor1
parents:
diff changeset
1150 for ( i = v5; ; pPointers[i] = v11 )
Ritor1
parents:
diff changeset
1151 {
Ritor1
parents:
diff changeset
1152 v8 = a3a->sZValue;
Ritor1
parents:
diff changeset
1153 LOWORD(v8) = 0;
Ritor1
parents:
diff changeset
1154 do
Ritor1
parents:
diff changeset
1155 {
Ritor1
parents:
diff changeset
1156 ++v6;
Ritor1
parents:
diff changeset
1157 v9 = pPointers[v6]->sZValue;
Ritor1
parents:
diff changeset
1158 LOWORD(v9) = 0;
Ritor1
parents:
diff changeset
1159 }
Ritor1
parents:
diff changeset
1160 while ( v9 < (unsigned int)v8 );
Ritor1
parents:
diff changeset
1161 do
Ritor1
parents:
diff changeset
1162 {
Ritor1
parents:
diff changeset
1163 if ( i < 1 )
Ritor1
parents:
diff changeset
1164 break;
Ritor1
parents:
diff changeset
1165 --i;
Ritor1
parents:
diff changeset
1166 v10 = pPointers[i]->sZValue;
Ritor1
parents:
diff changeset
1167 LOWORD(v10) = 0;
Ritor1
parents:
diff changeset
1168 }
Ritor1
parents:
diff changeset
1169 while ( v10 > (unsigned int)v8 );
Ritor1
parents:
diff changeset
1170 v11 = pPointers[v6];
Ritor1
parents:
diff changeset
1171 if ( v6 >= i )
Ritor1
parents:
diff changeset
1172 break;
Ritor1
parents:
diff changeset
1173 pPointers[v6] = pPointers[i];
Ritor1
parents:
diff changeset
1174 }
Ritor1
parents:
diff changeset
1175 v5 = right;
Ritor1
parents:
diff changeset
1176 pPointers[v6] = pPointers[right];
Ritor1
parents:
diff changeset
1177 pPointers[right] = v11;
Ritor1
parents:
diff changeset
1178 sort_object_pointers(pPointers, v4, v6 - 1);
Ritor1
parents:
diff changeset
1179 v4 = v6 + 1;
Ritor1
parents:
diff changeset
1180 }
Ritor1
parents:
diff changeset
1181 while ( right > v6 + 1 );
Ritor1
parents:
diff changeset
1182 }
Ritor1
parents:
diff changeset
1183 }
Ritor1
parents:
diff changeset
1184
Ritor1
parents:
diff changeset
1185 //----- (004C26D0) --------------------------------------------------------
Ritor1
parents:
diff changeset
1186 bool Vis::SortVerticesByX(RenderVertexD3D3 *a2, unsigned int uStart, unsigned int uEnd)
Ritor1
parents:
diff changeset
1187 {
Ritor1
parents:
diff changeset
1188 bool result; // eax@1
Ritor1
parents:
diff changeset
1189 RenderVertexD3D3 *v5; // edx@2
Ritor1
parents:
diff changeset
1190 RenderVertexD3D3 *v6; // esi@2
Ritor1
parents:
diff changeset
1191 void *v7; // edi@2
Ritor1
parents:
diff changeset
1192 unsigned int v8; // ebx@2
Ritor1
parents:
diff changeset
1193 RenderVertexD3D3 *v9; // ecx@3
Ritor1
parents:
diff changeset
1194 RenderVertexD3D3 *v10; // ecx@5
Ritor1
parents:
diff changeset
1195 RenderVertexD3D3 *v11; // eax@8
Ritor1
parents:
diff changeset
1196 RenderVertexD3D3 v12; // [sp+4h] [bp-4Ch]@8
Ritor1
parents:
diff changeset
1197 RenderVertexD3D3 v13; // [sp+24h] [bp-2Ch]@2
Ritor1
parents:
diff changeset
1198 Vis *thisa; // [sp+44h] [bp-Ch]@1
Ritor1
parents:
diff changeset
1199 RenderVertexD3D3 *v15; // [sp+48h] [bp-8h]@2
Ritor1
parents:
diff changeset
1200 unsigned int v16; // [sp+4Ch] [bp-4h]@2
Ritor1
parents:
diff changeset
1201
Ritor1
parents:
diff changeset
1202 result = uEnd;
Ritor1
parents:
diff changeset
1203 thisa = this;
Ritor1
parents:
diff changeset
1204 if ( (signed int)uEnd > (signed int)uStart )
Ritor1
parents:
diff changeset
1205 {
Ritor1
parents:
diff changeset
1206 v5 = a2;
Ritor1
parents:
diff changeset
1207 v6 = &a2[uEnd];
Ritor1
parents:
diff changeset
1208 v7 = &v13;
Ritor1
parents:
diff changeset
1209 v15 = &a2[uEnd];
Ritor1
parents:
diff changeset
1210 v8 = uStart - 1;
Ritor1
parents:
diff changeset
1211 v16 = uEnd;
Ritor1
parents:
diff changeset
1212 while ( 1 )
Ritor1
parents:
diff changeset
1213 {
Ritor1
parents:
diff changeset
1214 memcpy(v7, v6, 0x20u);
Ritor1
parents:
diff changeset
1215 v9 = &v5[v8];
Ritor1
parents:
diff changeset
1216 do
Ritor1
parents:
diff changeset
1217 {
Ritor1
parents:
diff changeset
1218 ++v9;
Ritor1
parents:
diff changeset
1219 ++v8;
Ritor1
parents:
diff changeset
1220 }
Ritor1
parents:
diff changeset
1221 while ( v9->pos.x < (double)v13.pos.x );
Ritor1
parents:
diff changeset
1222 v10 = &v5[v16];
Ritor1
parents:
diff changeset
1223 do
Ritor1
parents:
diff changeset
1224 {
Ritor1
parents:
diff changeset
1225 --v10;
Ritor1
parents:
diff changeset
1226 --v16;
Ritor1
parents:
diff changeset
1227 }
Ritor1
parents:
diff changeset
1228 while ( v10->pos.x > (double)v13.pos.x );
Ritor1
parents:
diff changeset
1229 if ( (signed int)v8 >= (signed int)v16 )
Ritor1
parents:
diff changeset
1230 break;
Ritor1
parents:
diff changeset
1231 v11 = &v5[v16];
Ritor1
parents:
diff changeset
1232 memcpy(&v12, &a2[v8], sizeof(v12));
Ritor1
parents:
diff changeset
1233 v5 = a2;
Ritor1
parents:
diff changeset
1234 memcpy(&a2[v8], v11, sizeof(a2[v8]));
Ritor1
parents:
diff changeset
1235 v6 = &v12;
Ritor1
parents:
diff changeset
1236 v7 = v11;
Ritor1
parents:
diff changeset
1237 }
Ritor1
parents:
diff changeset
1238 memcpy(&v12, &v5[v8], sizeof(v12));
Ritor1
parents:
diff changeset
1239 memcpy(&v5[v8], v15, sizeof(v5[v8]));
Ritor1
parents:
diff changeset
1240 memcpy(v15, &v12, 0x20u);
Ritor1
parents:
diff changeset
1241 SortVerticesByX(v5, uStart, v8 - 1);
Ritor1
parents:
diff changeset
1242 SortVerticesByX(a2, v8 + 1, uEnd);
Ritor1
parents:
diff changeset
1243 }
Ritor1
parents:
diff changeset
1244 return true;
Ritor1
parents:
diff changeset
1245 }
Ritor1
parents:
diff changeset
1246
Ritor1
parents:
diff changeset
1247 //----- (004C27AD) --------------------------------------------------------
Ritor1
parents:
diff changeset
1248 bool Vis::SortVerticesByY(RenderVertexD3D3 *a2, unsigned int uStart, unsigned int uEnd)
Ritor1
parents:
diff changeset
1249 {
Ritor1
parents:
diff changeset
1250 bool result; // eax@1
Ritor1
parents:
diff changeset
1251 RenderVertexD3D3 *v5; // edx@2
Ritor1
parents:
diff changeset
1252 RenderVertexD3D3 *v6; // esi@2
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1253 void *v7; // edi@2
0
Ritor1
parents:
diff changeset
1254 unsigned int v8; // ebx@2
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1255 float *v9; // ecx@3
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1256 float *v10; // ecx@5
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1257 RenderVertexD3D3 *v11; // eax@8
0
Ritor1
parents:
diff changeset
1258 RenderVertexD3D3 v12; // [sp+4h] [bp-4Ch]@8
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1259 RenderVertexD3D3 v13; // [sp+24h] [bp-2Ch]@2
0
Ritor1
parents:
diff changeset
1260 Vis *thisa; // [sp+44h] [bp-Ch]@1
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1261 RenderVertexD3D3 *v15; // [sp+48h] [bp-8h]@2
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1262 unsigned int v16; // [sp+4Ch] [bp-4h]@2
0
Ritor1
parents:
diff changeset
1263
Ritor1
parents:
diff changeset
1264 result = uEnd;
Ritor1
parents:
diff changeset
1265 thisa = this;
Ritor1
parents:
diff changeset
1266 if ( (signed int)uEnd > (signed int)uStart )
Ritor1
parents:
diff changeset
1267 {
Ritor1
parents:
diff changeset
1268 v5 = a2;
Ritor1
parents:
diff changeset
1269 v6 = &a2[uEnd];
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1270 v7 = &v13;
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1271 v15 = &a2[uEnd];
0
Ritor1
parents:
diff changeset
1272 v8 = uStart - 1;
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1273 v16 = uEnd;
0
Ritor1
parents:
diff changeset
1274 while ( 1 )
Ritor1
parents:
diff changeset
1275 {
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1276 memcpy(v7, v6, 0x20u);
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1277 v9 = &v5[v8].pos.y;
0
Ritor1
parents:
diff changeset
1278 do
Ritor1
parents:
diff changeset
1279 {
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1280 v9+=8;
0
Ritor1
parents:
diff changeset
1281 ++v8;
Ritor1
parents:
diff changeset
1282 }
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1283 while ( *v9 < (double)v13.pos.y );
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1284 v10 = &v5[v16].pos.y;
0
Ritor1
parents:
diff changeset
1285 do
Ritor1
parents:
diff changeset
1286 {
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1287 v10-=8;
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1288 --v16;
0
Ritor1
parents:
diff changeset
1289 }
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1290 while ( *v10 > (double)v13.pos.y );
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1291 if ( (signed int)v8 >= (signed int)v16 )
0
Ritor1
parents:
diff changeset
1292 break;
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1293 v11 = &v5[v16];
0
Ritor1
parents:
diff changeset
1294 memcpy(&v12, &a2[v8], sizeof(v12));
Ritor1
parents:
diff changeset
1295 v5 = a2;
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1296 memcpy(&a2[v8], v11, sizeof(a2[v8]));
0
Ritor1
parents:
diff changeset
1297 v6 = &v12;
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1298 v7 = v11;
0
Ritor1
parents:
diff changeset
1299 }
Ritor1
parents:
diff changeset
1300 memcpy(&v12, &v5[v8], sizeof(v12));
30
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1301 memcpy(&v5[v8], v15, sizeof(v5[v8]));
8aa7e4a303c9 Vis::SortVerticesByY fixed
zipi
parents: 29
diff changeset
1302 memcpy(v15, &v12, 0x20u);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1303 SortVerticesByY(v5, uStart, v8 - 1);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1304 SortVerticesByY(a2, v8 + 1, uEnd);
0
Ritor1
parents:
diff changeset
1305 }
Ritor1
parents:
diff changeset
1306 return true;
Ritor1
parents:
diff changeset
1307 }
Ritor1
parents:
diff changeset
1308
Ritor1
parents:
diff changeset
1309 //----- (004C288E) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1310 bool Vis::SortByScreenSpaceX(RenderVertexSoft *pArray, int sLeft, int sRight)
0
Ritor1
parents:
diff changeset
1311 {
Ritor1
parents:
diff changeset
1312 bool result; // eax@1
Ritor1
parents:
diff changeset
1313 RenderVertexSoft *v5; // edx@2
Ritor1
parents:
diff changeset
1314 int v6; // ebx@2
Ritor1
parents:
diff changeset
1315 int i; // ecx@2
Ritor1
parents:
diff changeset
1316 int v8; // esi@3
Ritor1
parents:
diff changeset
1317 int v9; // esi@5
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1318 //RenderVertexSoft *v10; // eax@8
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1319 const void *v10;
0
Ritor1
parents:
diff changeset
1320 RenderVertexSoft v11; // [sp+4h] [bp-6Ch]@8
Ritor1
parents:
diff changeset
1321 RenderVertexSoft v12; // [sp+34h] [bp-3Ch]@2
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1322 //float v13; // [sp+4Ch] [bp-24h]@4
0
Ritor1
parents:
diff changeset
1323 int v14; // [sp+64h] [bp-Ch]@7
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1324 //Vis *thisa; // [sp+68h] [bp-8h]@1
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1325 //void *thisa;
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1326 //RenderVertexSoft *v16; // [sp+6Ch] [bp-4h]@2
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1327 const void *v16;
0
Ritor1
parents:
diff changeset
1328
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1329 //thisa = this;
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1330 if (sRight <= sLeft)
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1331 return true;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1332 v5 = pArray;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1333 v16 = &pArray[sRight];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1334 v6 = sLeft - 1;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1335 memcpy(&v12, &pArray[sRight], sizeof(v12));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1336 for ( i = sRight; ; i = v14 )
0
Ritor1
parents:
diff changeset
1337 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1338 v8 = (int)&v5[v6].vWorldViewProjX;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1339 do
0
Ritor1
parents:
diff changeset
1340 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1341 v8 += 48;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1342 ++v6;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1343 }
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1344 while ( *(float *)v8 < v12.vWorldViewProjX);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1345 v9 = (int)&v5[i].vWorldViewProjX;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1346 do
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1347 {
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1348 v9 -= 48;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1349 --i;
0
Ritor1
parents:
diff changeset
1350 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1351 while ( *(float *)v9 > v12.vWorldViewProjX);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1352 v14 = i;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1353 if ( v6 >= i )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1354 break;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1355 v10 = &v5[i];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1356 memcpy(&v11, &pArray[v6], sizeof(v11));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1357 v5 = pArray;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1358 memcpy(&pArray[v6], v10, sizeof(pArray[v6]));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1359 memcpy((void *)v10, &v11, sizeof(0x30u));
0
Ritor1
parents:
diff changeset
1360 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1361 memcpy(&v11, &v5[v6], sizeof(v11));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1362 memcpy(&v5[v6], v16, sizeof(v5[v6]));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1363 memcpy((void *)v16, &v11, sizeof(0x30u));
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1364 SortByScreenSpaceX(v5, sLeft, v6 - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1365 SortByScreenSpaceX(pArray, v6 + 1, sRight);
0
Ritor1
parents:
diff changeset
1366 return true;
Ritor1
parents:
diff changeset
1367 }
Ritor1
parents:
diff changeset
1368
Ritor1
parents:
diff changeset
1369 //----- (004C297E) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1370 bool Vis::SortByScreenSpaceY(RenderVertexSoft *pArray, int sLeft, int sRight)
0
Ritor1
parents:
diff changeset
1371 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1372 //bool result; // eax@1
0
Ritor1
parents:
diff changeset
1373 RenderVertexSoft *v5; // edx@2
Ritor1
parents:
diff changeset
1374 int v6; // ebx@2
Ritor1
parents:
diff changeset
1375 int i; // ecx@2
Ritor1
parents:
diff changeset
1376 int v8; // esi@3
Ritor1
parents:
diff changeset
1377 int v9; // esi@5
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1378 //RenderVertexSoft *v10; // eax@8
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1379 const void *v10;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1380 //char v11; // [sp+4h] [bp-6Ch]@8
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1381 RenderVertexSoft v11;
0
Ritor1
parents:
diff changeset
1382 RenderVertexSoft v12; // [sp+34h] [bp-3Ch]@2
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1383 //float v13; // [sp+50h] [bp-20h]@4
0
Ritor1
parents:
diff changeset
1384 int v14; // [sp+64h] [bp-Ch]@7
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1385 //Vis *thisa; // [sp+68h] [bp-8h]@1
0
Ritor1
parents:
diff changeset
1386 RenderVertexSoft *v16; // [sp+6Ch] [bp-4h]@2
Ritor1
parents:
diff changeset
1387
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1388 if (sRight <= sLeft)
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1389 return true;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1390 v5 = pArray;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1391 v16 = &pArray[sRight];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1392 v6 = sLeft - 1;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1393 memcpy(&v12, &pArray[sRight], sizeof(v12));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1394 for ( i = sRight; ; i = v14 )
0
Ritor1
parents:
diff changeset
1395 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1396 v8 = (int)&v5[v6].vWorldViewProjY;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1397 do
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1398 {
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1399 v8 += 48;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1400 ++v6;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1401 }
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1402 while ( *(float *)v8 < v12.vWorldViewProjY);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1403 v9 = (int)&v5[v6].vWorldViewProjY;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1404 do
0
Ritor1
parents:
diff changeset
1405 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1406 v9 -= 48;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1407 --i;
0
Ritor1
parents:
diff changeset
1408 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1409 while ( *(float *)v9 > v12.vWorldViewProjY);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1410 v14 = i;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1411 if ( v6 >= i )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1412 break;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1413 v10 = &v5[i];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1414 memcpy(&v11, &pArray[v6], sizeof(0x30));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1415 v5 = pArray;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1416 memcpy(&pArray[v6], v10, sizeof(pArray[v6]));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1417 memcpy((void *)v10, &v11, sizeof(0x30));
0
Ritor1
parents:
diff changeset
1418 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1419 memcpy(&v11, &v5[v6], sizeof(0x30));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1420 memcpy(&v5[v6], v16, sizeof(v5[v6]));
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1421 memcpy((void *)v16, &v11, sizeof(0x30));
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1422 SortByScreenSpaceY(v5, sLeft, v6 - 1);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1423 SortByScreenSpaceY(pArray, v6 + 1, sRight);
0
Ritor1
parents:
diff changeset
1424 return true;
Ritor1
parents:
diff changeset
1425 }
Ritor1
parents:
diff changeset
1426
Ritor1
parents:
diff changeset
1427
Ritor1
parents:
diff changeset
1428 //----- (004C04AF) --------------------------------------------------------
Ritor1
parents:
diff changeset
1429 Vis::Vis()
Ritor1
parents:
diff changeset
1430 {
Ritor1
parents:
diff changeset
1431 RenderVertexSoft v3; // [sp+Ch] [bp-60h]@1
Ritor1
parents:
diff changeset
1432 RenderVertexSoft v4; // [sp+3Ch] [bp-30h]@1
Ritor1
parents:
diff changeset
1433
Ritor1
parents:
diff changeset
1434 v3.flt_2C = 0.0;
Ritor1
parents:
diff changeset
1435 v3.vWorldPosition.x = 0.0;
Ritor1
parents:
diff changeset
1436 v3.vWorldPosition.y = 65536.0;
Ritor1
parents:
diff changeset
1437 v3.vWorldPosition.z = 0.0;
Ritor1
parents:
diff changeset
1438 v4.flt_2C = 0.0;
Ritor1
parents:
diff changeset
1439 v4.vWorldPosition.x = 65536.0;
Ritor1
parents:
diff changeset
1440 v4.vWorldPosition.y = 0.0;
Ritor1
parents:
diff changeset
1441 v4.vWorldPosition.z = 0.0;
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1442 memcpy(&stru_200C, &v4, sizeof(stru_200C));
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1443
0
Ritor1
parents:
diff changeset
1444 v4.flt_2C = 0.0;
Ritor1
parents:
diff changeset
1445 v4.vWorldPosition.x = 0.0;
Ritor1
parents:
diff changeset
1446 v4.vWorldPosition.y = 65536.0;
Ritor1
parents:
diff changeset
1447 v4.vWorldPosition.z = 0.0;
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1448 memcpy(&stru_203C, &v3, sizeof(stru_203C));
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1449
0
Ritor1
parents:
diff changeset
1450 v3.flt_2C = 0.0;
Ritor1
parents:
diff changeset
1451 v3.vWorldPosition.x = 65536.0;
Ritor1
parents:
diff changeset
1452 v3.vWorldPosition.y = 0.0;
Ritor1
parents:
diff changeset
1453 v3.vWorldPosition.z = 0.0;
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1454 memcpy(&stru_206C, &v3, sizeof(stru_206C));
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1455 memcpy(&stru_209C, &v4, sizeof(stru_209C));
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1456
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1457 keyboard_pick_depth = 512;
0
Ritor1
parents:
diff changeset
1458 }
Ritor1
parents:
diff changeset
1459
Ritor1
parents:
diff changeset
1460 //----- (004C055C) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1461 Vis_SelectionList::Vis_SelectionList()
0
Ritor1
parents:
diff changeset
1462 {
Ritor1
parents:
diff changeset
1463 for (uint i = 0; i < 512; ++i)
Ritor1
parents:
diff changeset
1464 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1465 object_pool[i].object = nullptr;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1466 object_pool[i].sZValue = -1;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1467 object_pool[i].object_type = VisObjectType_Any;
0
Ritor1
parents:
diff changeset
1468 }
Ritor1
parents:
diff changeset
1469 uNumPointers = 0;
Ritor1
parents:
diff changeset
1470 }
Ritor1
parents:
diff changeset
1471
Ritor1
parents:
diff changeset
1472 //----- (004C05CC) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1473 bool Vis::PickKeyboard(Vis_SelectionList *list, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter)
0
Ritor1
parents:
diff changeset
1474 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1475 if (!list)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1476 list = &default_list;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1477 list->uNumPointers = 0;
0
Ritor1
parents:
diff changeset
1478
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1479 PickBillboards_Keyboard(keyboard_pick_depth, list, sprite_filter);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1480 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1481 PickIndoorFaces_Keyboard(keyboard_pick_depth, list, face_filter);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1482 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1483 PickOutdoorFaces_Keyboard(keyboard_pick_depth, list, face_filter);
0
Ritor1
parents:
diff changeset
1484 else
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1485 assert(false);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1486
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1487 list->create_object_pointers(Vis_SelectionList::Unique);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1488 sort_object_pointers(list->object_pointers, 0, list->uNumPointers - 1);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1489
0
Ritor1
parents:
diff changeset
1490 return true;
Ritor1
parents:
diff changeset
1491 }
Ritor1
parents:
diff changeset
1492
Ritor1
parents:
diff changeset
1493 //----- (004C0646) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1494 bool Vis::PickMouse(float fDepth, float fMouseX, float fMouseY, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter)
0
Ritor1
parents:
diff changeset
1495 {
Ritor1
parents:
diff changeset
1496 RenderVertexSoft pMouseRay[2]; // [sp+1Ch] [bp-60h]@1
Ritor1
parents:
diff changeset
1497
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1498 default_list.uNumPointers = 0;
0
Ritor1
parents:
diff changeset
1499 CastPickRay(pMouseRay, fMouseX, fMouseY, fDepth);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1500 PickBillboards_Mouse(fDepth, fMouseX, fMouseY, &default_list, sprite_filter);
0
Ritor1
parents:
diff changeset
1501 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1502 PickIndoorFaces_Mouse(fDepth, pMouseRay, &default_list, face_filter);
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
1503 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
1504 PickOutdoorFaces_Mouse(fDepth, pMouseRay, &default_list, face_filter, false);
0
Ritor1
parents:
diff changeset
1505 else
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
1506 {
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 295
diff changeset
1507 Log::Warning(L"Picking mouse in undefined level"); // picking in main menu is default (buggy) game behaviour. should've returned false in Game::PickMouse
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
1508 return false;
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 214
diff changeset
1509 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1510 default_list.create_object_pointers(Vis_SelectionList::All);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1511 sort_object_pointers(default_list.object_pointers, 0, default_list.uNumPointers - 1);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1512
0
Ritor1
parents:
diff changeset
1513 return true;
Ritor1
parents:
diff changeset
1514 }
Ritor1
parents:
diff changeset
1515
Ritor1
parents:
diff changeset
1516 //----- (004C06F8) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1517 void Vis::PickBillboards_Keyboard(float pick_depth, Vis_SelectionList *list, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
1518 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1519 for (int i = 0; i < pRenderer->uNumBillboardsToDraw; ++i)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1520 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1521 auto d3d_billboard = &pRenderer->pBillboardRenderListD3D[i];
0
Ritor1
parents:
diff changeset
1522
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1523 if (is_part_of_selection((void *)i, filter))
0
Ritor1
parents:
diff changeset
1524 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1525 if (DoesRayIntersectBillboard(pick_depth, i))
0
Ritor1
parents:
diff changeset
1526 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1527 auto billboard = &pBillboardRenderList[d3d_billboard->uParentBillboardID];
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1528
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1529 list->AddObject((void *)d3d_billboard->uParentBillboardID, VisObjectType_Sprite, billboard->sZValue);
0
Ritor1
parents:
diff changeset
1530 }
Ritor1
parents:
diff changeset
1531 }
Ritor1
parents:
diff changeset
1532 }
Ritor1
parents:
diff changeset
1533 }
Ritor1
parents:
diff changeset
1534
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1535
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1536 // tests the object against selection filter to determine whether it can be picked or not
0
Ritor1
parents:
diff changeset
1537 //----- (004C0791) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1538 bool Vis::is_part_of_selection(void *uD3DBillboardIdx_or_pBLVFace_or_pODMFace, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
1539 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1540 //stru157 *v3; // esi@1
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1541 //int result; // eax@1
0
Ritor1
parents:
diff changeset
1542 int v5; // edx@2
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1543 //int v6; // ecx@2
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1544 //char v7; // zf@3
0
Ritor1
parents:
diff changeset
1545 int v8; // esi@5
Ritor1
parents:
diff changeset
1546 std::string *v9; // ecx@7
Ritor1
parents:
diff changeset
1547 Actor *v10; // edi@18
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1548 //const char *v12; // [sp-20h] [bp-2Ch]@7
0
Ritor1
parents:
diff changeset
1549 int v13; // [sp-1Ch] [bp-28h]@7
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1550 //std::string v14; // [sp-18h] [bp-24h]@7
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1551 //const char *v15; // [sp-8h] [bp-14h]@7
0
Ritor1
parents:
diff changeset
1552 int v16; // [sp-4h] [bp-10h]@7
Ritor1
parents:
diff changeset
1553
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1554 switch (filter->object_type)
0
Ritor1
parents:
diff changeset
1555 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1556 case VisObjectType_Any:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1557 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1558
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1559 case VisObjectType_Sprite:
0
Ritor1
parents:
diff changeset
1560 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1561 v5 = filter->field_10;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1562 int object_idx = (pBillboardRenderList[pRenderer->pBillboardRenderListD3D[(int)uD3DBillboardIdx_or_pBLVFace_or_pODMFace].uParentBillboardID].object_pid & 0xFFFF) >> 3;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1563 int object_type = pBillboardRenderList[pRenderer->pBillboardRenderListD3D[(int)uD3DBillboardIdx_or_pBLVFace_or_pODMFace].uParentBillboardID].object_pid & 7;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1564 if ( v5 & 2 )
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1565 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1566 if (object_type == filter->object_id)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1567 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1568 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1569 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1570 if ( v5 & 4 )
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1571 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1572 v8 = filter->object_id;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1573 if ( object_type != filter->object_id)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1574 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1575 if (v8 != OBJECT_Decoration)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1576 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1577 MessageBoxA(nullptr, "Unsupported \"exclusion if no event\" type in CVis::is_part_of_selection", "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Vis.cpp:207", 0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1578 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1579 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1580 if (pLevelDecorations[object_idx].uCog || pLevelDecorations[object_idx].field_16_event_id)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1581 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1582 return pLevelDecorations[object_idx].IsInteractive();
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1583 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1584 if (object_type == filter->object_id)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1585 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1586 if (object_type != OBJECT_Actor)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1587 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1588 MessageBoxA(nullptr, "Default case reached in VIS", "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Vis.cpp:245", 0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1589 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1590 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1591
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1592 v10 = &pActors[object_idx];
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1593 int result = 1 << LOBYTE(v10->uAIState);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1594 if ( result & filter->field_C
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1595 || !(result & filter->field_8)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1596 || v5 & 8 && (result = MonsterStats::BelongsToSupertype(v10->pMonsterInfo.uID, MONSTER_SUPERTYPE_UNDEAD)) == 0 )
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1597 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1598 if ( !(filter->field_10 & 1) )
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1599 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1600
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1601 result = v10->GetActorsRelation(nullptr);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1602 if (result == 0)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1603 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1604 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1605 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1606 return false;
0
Ritor1
parents:
diff changeset
1607 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1608
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1609 case VisObjectType_Face:
0
Ritor1
parents:
diff changeset
1610 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1611 uint face_attrib = 0;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1612 bool no_event = true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1613 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1614 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1615 auto face = (ODMFace *)uD3DBillboardIdx_or_pBLVFace_or_pODMFace;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1616 no_event = face->sCogTriggeredID == 0;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1617 face_attrib = face->uAttributes;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1618 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1619 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1620 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1621 auto face = (BLVFace *)uD3DBillboardIdx_or_pBLVFace_or_pODMFace;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1622 no_event = pIndoor->pFaceExtras[face->uFaceExtraID].uEventID == 0;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1623 face_attrib = face->uAttributes;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1624 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1625 else
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1626 assert(false);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1627
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1628 if (filter->object_id != OBJECT_BLVDoor)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1629 return true;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1630 if (no_event || face_attrib & filter->field_C)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1631 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1632 return (face_attrib & filter->field_8) != 0;
0
Ritor1
parents:
diff changeset
1633 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1634
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1635 default:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1636 assert(false);
0
Ritor1
parents:
diff changeset
1637 }
Ritor1
parents:
diff changeset
1638 }
Ritor1
parents:
diff changeset
1639
Ritor1
parents:
diff changeset
1640 //----- (004C091D) --------------------------------------------------------
Ritor1
parents:
diff changeset
1641 bool Vis::DoesRayIntersectBillboard(float fDepth, unsigned int uD3DBillboardIdx)
Ritor1
parents:
diff changeset
1642 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1643 int v3; // eax@3
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1644 //signed int v5; // ecx@4
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1645 //float v6; // ST04_4@6
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1646 //float v7; // ST00_4@7
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1647 //int v8; // eax@10
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1648 //unsigned int v9; // eax@12
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1649 int v10; // eax@17
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1650 double v11; // st6@18
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1651 double v12; // st7@18
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1652 double v13; // st4@18
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1653 float v14; // ST0C_4@22
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1654 float v15; // ST08_4@22
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1655 //float v16; // ST04_4@23
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1656 //float v17; // ST00_4@24
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1657 //signed int v18; // eax@27
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1658 //unsigned int v19; // eax@29
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1659 double v20; // st6@32
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1660 double v21; // st7@32
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1661 int v22; // eax@32
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1662 double v23; // st7@36
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1663 //void *v24; // esi@40
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1664 float v25; // ST08_4@40
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1665 //float v26; // ST04_4@41
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1666 //float v27; // ST00_4@42
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1667 int v28; // eax@45
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1668 unsigned int v29; // eax@47
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1669 char result; // al@48
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1670 struct RenderVertexSoft pPickingRay[2];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1671 //int v31; // [sp+20h] [bp-DCh]@5
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1672 struct RenderVertexSoft local_80[2];
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1673 //int v32; // [sp+80h] [bp-7Ch]@22
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1674 float v33; // [sp+E0h] [bp-1Ch]@33
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1675 float v34; // [sp+E4h] [bp-18h]@32
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1676 int v35; // [sp+E8h] [bp-14h]@5
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1677 int v36; // [sp+ECh] [bp-10h]@5
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1678 int v37; // [sp+F0h] [bp-Ch]@5
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1679 float v38; // [sp+F4h] [bp-8h]@17
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1680 //void *v39; // [sp+F8h] [bp-4h]@1
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1681 signed int v40; // [sp+108h] [bp+Ch]@17
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1682 float v41; // [sp+108h] [bp+Ch]@32
0
Ritor1
parents:
diff changeset
1683
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1684 static Vis_SelectionList Vis_static_stru_F91E10;
0
Ritor1
parents:
diff changeset
1685 Vis_static_stru_F91E10.uNumPointers = 0;
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1686 v3 = pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].uParentBillboardID;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1687 if (v3 == -1)
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1688 return false;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1689 if (pBillboardRenderList[v3].GetFloatZ() > fDepth)
0
Ritor1
parents:
diff changeset
1690 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1691 LABEL_49:
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1692 return false;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1693 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1694
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1695 v37 = pBillboardRenderList[v3].sZValue & 0xFFFF0000;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1696 GetPolygonCenter(pRenderer->pBillboardRenderListD3D[v3].pQuards, 4, (float *)&v35, (float *)&v36);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1697 CastPickRay(pPickingRay, *(float *)&v35, *(float *)&v36, fDepth);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1698 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1699 PickIndoorFaces_Mouse(fDepth, pPickingRay, &Vis_static_stru_F91E10, &vis_face_filter);
0
Ritor1
parents:
diff changeset
1700 else
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1701 PickOutdoorFaces_Mouse(fDepth, pPickingRay, &Vis_static_stru_F91E10, &vis_face_filter, false);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1702 Vis_static_stru_F91E10.create_object_pointers();
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1703 sort_object_pointers(Vis_static_stru_F91E10.object_pointers, 0, Vis_static_stru_F91E10.uNumPointers - 1);
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1704 if (Vis_static_stru_F91E10.uNumPointers)
0
Ritor1
parents:
diff changeset
1705 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1706 if (Vis_static_stru_F91E10.object_pointers[0]->actual_z > pBillboardRenderList[v3].actual_z)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1707 return 1;
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1708 }
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1709 else if ((double)(pViewport->uScreen_TL_X) <= *(float *)&v35 &&
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1710 (double)pViewport->uScreen_BR_X >= *(float *)&v35 &&
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1711 (double)pViewport->uScreen_TL_Y <= *(float *)&v36 &&
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1712 (double)pViewport->uScreen_BR_Y >= *(float *)&v36)
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1713 return 1;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1714 v40 = 0;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1715 v10 = (int)&pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[0].pos.y;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1716 LODWORD(v38) = (int)&pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[0].pos.y;
0
Ritor1
parents:
diff changeset
1717 while ( 1 )
Ritor1
parents:
diff changeset
1718 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1719 v12 = *(float *)(v10 - 4);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1720 v11 = *(float *)v10;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1721 v13 = *(float *)(v10 - 4);
0
Ritor1
parents:
diff changeset
1722 Vis_static_stru_F91E10.uNumPointers = 0;
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1723 if ( v13 >= (double)(pViewport->uScreen_TL_X))
0
Ritor1
parents:
diff changeset
1724 {
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1725 if ( v12 <= (double)pViewport->uScreen_BR_X )
0
Ritor1
parents:
diff changeset
1726 {
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1727 if ( v11 >= (double)pViewport->uScreen_TL_Y )
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1728 {
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1729 if ( v11 <= (double)pViewport->uScreen_BR_Y )
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1730 {
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1731 v14 = v11;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1732 v15 = v12;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1733 CastPickRay(local_80, SLODWORD(v15), v14, fDepth);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1734 if ( uCurrentlyLoadedLevelType == 1 )
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1735 PickIndoorFaces_Mouse(fDepth, local_80, &Vis_static_stru_F91E10, &vis_face_filter);
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1736 else
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1737 PickOutdoorFaces_Mouse(fDepth, local_80, &Vis_static_stru_F91E10, &vis_face_filter, false);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1738 Vis_static_stru_F91E10.create_object_pointers();
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1739 sort_object_pointers(Vis_static_stru_F91E10.object_pointers, 0, Vis_static_stru_F91E10.uNumPointers - 1);
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1740 if ( !Vis_static_stru_F91E10.uNumPointers )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1741 break;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1742 else
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1743 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1744 //v18 = Vis_static_stru_F91E10.uNumPointers <= 0 ? 0 : (int);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1745 //v19 = *(_DWORD *)(v18 + 4);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1746 //LOWORD(v19) = 0;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1747 if (Vis_static_stru_F91E10.object_pointers[0]->actual_z > pBillboardRenderList[v3].actual_z)
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1748 break;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1749 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1750 }
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1751 }
0
Ritor1
parents:
diff changeset
1752 }
Ritor1
parents:
diff changeset
1753 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1754 ++v40;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1755 v10 = LODWORD(v38) + 32;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1756 LODWORD(v38) += 32;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1757 if ( v40 >= 4 )
0
Ritor1
parents:
diff changeset
1758 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1759 if ( uCurrentlyLoadedLevelType != 2 )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1760 return false;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1761 v21 = pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[0].pos.x;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1762 v20 = pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[3].pos.x;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1763 v22 = *(int *)(&pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[0].pos.y);
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1764 v34 = pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[3].pos.x;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1765 LODWORD(v38) = v22;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1766 v41 = pRenderer->pBillboardRenderListD3D[uD3DBillboardIdx].pQuards[1].pos.y;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1767 if ( v21 > v20 )
0
Ritor1
parents:
diff changeset
1768 {
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1769 v33 = v21;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1770 v21 = v34;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1771 v20 = v33;
0
Ritor1
parents:
diff changeset
1772 }
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1773 if ( v38 > (double)v41 )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1774 v41 = v38;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1775 Vis_static_stru_F91E10.uNumPointers = 0;
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1776 v23 = (v20 - v21) * 0.5;
692
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1777 if ( v23 < (double)(pViewport->uScreen_TL_X)
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1778 || v23 > (double)pViewport->uScreen_BR_X
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1779 || (double)pViewport->uScreen_TL_Y > v41
066e2b29b30f viewport.cpp added
Gloval
parents: 676
diff changeset
1780 || (double)pViewport->uScreen_BR_Y < v41
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1781 || ((v25 = v23, CastPickRay(local_80, SLODWORD(v25), v41, fDepth), uCurrentlyLoadedLevelType != 1) ?
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1782 (PickOutdoorFaces_Mouse(fDepth, local_80, &Vis_static_stru_F91E10, &vis_face_filter, false)) :
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1783 (PickIndoorFaces_Mouse(fDepth, local_80, &Vis_static_stru_F91E10, &vis_face_filter)),
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1784 (Vis_static_stru_F91E10.create_object_pointers(),
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1785 sort_object_pointers(Vis_static_stru_F91E10.object_pointers, 0, Vis_static_stru_F91E10.uNumPointers - 1),
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1786 Vis_static_stru_F91E10.uNumPointers)
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1787 && (Vis_static_stru_F91E10.uNumPointers <= 0 ? (v28 = 0) : (v28 = (int)Vis_static_stru_F91E10.object_pointers),
159
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1788 v29 = *(_DWORD *)(v28 + 4),
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1789 LOWORD(v29) = 0,
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1790 v29 <= v37)) )
3235bc4cf78e NPCDialogue
Ritor1
parents: 156
diff changeset
1791 return false;
0
Ritor1
parents:
diff changeset
1792 break;
Ritor1
parents:
diff changeset
1793 }
Ritor1
parents:
diff changeset
1794 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1795 return true;
0
Ritor1
parents:
diff changeset
1796 }
Ritor1
parents:
diff changeset
1797 // F93E18: using guessed type char static_byte_F93E18_init;
Ritor1
parents:
diff changeset
1798
Ritor1
parents:
diff changeset
1799 //----- (004C0D32) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1800 void Vis::PickIndoorFaces_Keyboard(float pick_depth, Vis_SelectionList *list, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
1801 {
Ritor1
parents:
diff changeset
1802 int result; // eax@1
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1803 signed int pFaceID; // esi@2
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1804 BLVFace *pFace; // edi@4
0
Ritor1
parents:
diff changeset
1805 unsigned int v7; // eax@6
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1806 Vis_ObjectInfo *v8; // eax@6
0
Ritor1
parents:
diff changeset
1807 signed int i; // [sp+18h] [bp-8h]@1
Ritor1
parents:
diff changeset
1808
Ritor1
parents:
diff changeset
1809 result = 0;
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 618
diff changeset
1810 for ( i = 0; i < (signed int)pBspRenderer->num_faces; ++i )
0
Ritor1
parents:
diff changeset
1811 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1812 pFaceID = pBspRenderer->faces[result].uFaceID;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1813 if ( pFaceID >= 0 )
0
Ritor1
parents:
diff changeset
1814 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1815 if ( pFaceID < (signed int)pIndoor->uNumFaces )
0
Ritor1
parents:
diff changeset
1816 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1817 pFace = &pIndoor->pFaces[pFaceID];
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1818 if ( !pGame->pIndoorCameraD3D->IsCulled(&pIndoor->pFaces[pFaceID]) )
0
Ritor1
parents:
diff changeset
1819 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1820 if ( is_part_of_selection(pFace, filter) )
0
Ritor1
parents:
diff changeset
1821 {
742
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1822 v7 = 8 * pFaceID;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1823 LOBYTE(v7) = 8 * pFaceID | OBJECT_BModel;
bd611ae85d27 PickItemInBlv
Ritor1
parents: 692
diff changeset
1824 v8 = _4C1026(pFace, v7, pick_depth);
0
Ritor1
parents:
diff changeset
1825 if ( v8 )
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 181
diff changeset
1826 list->AddObject(v8->object, v8->object_type, v8->sZValue);
0
Ritor1
parents:
diff changeset
1827 }
Ritor1
parents:
diff changeset
1828 }
Ritor1
parents:
diff changeset
1829 }
Ritor1
parents:
diff changeset
1830 }
Ritor1
parents:
diff changeset
1831 result = i + 1;
Ritor1
parents:
diff changeset
1832 }
Ritor1
parents:
diff changeset
1833 }
Ritor1
parents:
diff changeset
1834
Ritor1
parents:
diff changeset
1835 //----- (004C0DEA) --------------------------------------------------------
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1836 void Vis::PickOutdoorFaces_Keyboard(float pick_depth, Vis_SelectionList *list, Vis_SelectionFilter *filter)
0
Ritor1
parents:
diff changeset
1837 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1838 for (uint i = 0; i < pOutdoor->uNumBModels; ++i)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1839 {
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1840 int v17;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1841 if (!IsBModelVisible(i, &v17))
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1842 continue;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1843 if (!v17)
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1844 continue;
0
Ritor1
parents:
diff changeset
1845
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1846 auto bmodel = pOutdoor->pBModels + i;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1847 for (uint j = 0; j < bmodel->uNumFaces; ++j)
0
Ritor1
parents:
diff changeset
1848 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1849 auto face = bmodel->pFaces + j;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1850
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1851 if (is_part_of_selection(face, filter) )
0
Ritor1
parents:
diff changeset
1852 {
196
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1853 BLVFace blv_face;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1854 blv_face.FromODM(face);
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1855
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1856 int pid = 8 * (j | (i << 6)) | OBJECT_BModel;
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1857 if (auto object_info = _4C1026(&blv_face, pid, pick_depth))
982c1ec5a983 More picking stuff
Nomad
parents: 194
diff changeset
1858 list->AddObject(object_info->object, object_info->object_type, object_info->sZValue);
0
Ritor1
parents:
diff changeset
1859 }
Ritor1
parents:
diff changeset
1860 }
Ritor1
parents:
diff changeset
1861 }
Ritor1
parents:
diff changeset
1862 }