annotate IndoorCamera.cpp @ 127:9eac46182d8f

Слияние
author Ritor1
date Sun, 04 Nov 2012 09:37:39 +0600
parents 5159d2e6f559
children
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #include "IndoorCamera.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include "Render.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "Game.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4 #include "Indoor.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5 #include "Math.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7 #include "mm7_data.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 IndoorCamera *pIndoorCamera; // idb
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 //----- (00481CCE) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 float IndoorCamera::ViewTransform(RenderVertexSoft *a1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 float result; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23 double vCamToVertexZ; // st7@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24 double v3; // st6@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 double v4; // st5@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26 double v5; // st4@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27 float v6; // ST04_4@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28 float v7; // [sp+0h] [bp-14h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29 float v8; // [sp+8h] [bp-Ch]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 float vCamToVertexX; // [sp+Ch] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
31 float vCamToVertexY; // [sp+10h] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33 v8 = fRotationXCosine;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 result = fRotationXSine;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35 v7 = fRotationXSine;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36 vCamToVertexX = a1->vWorldPosition.x - (double)pos.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37 vCamToVertexY = a1->vWorldPosition.y - (double)pos.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38 vCamToVertexZ = a1->vWorldPosition.z - (double)pos.z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39 v3 = fRotationYCosine;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40 v4 = fRotationYSine;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 v5 = vCamToVertexY * fRotationYSine + fRotationYCosine * vCamToVertexX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42 if ( sRotationX )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43 {
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
44 v6 = vCamToVertexY * fRotationYSine + fRotationYCosine * vCamToVertexX;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 a1->vWorldViewPosition.x = v5 * fRotationXCosine + fRotationXSine * vCamToVertexZ;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 a1->vWorldViewPosition.y = v3 * vCamToVertexY - v4 * vCamToVertexX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 a1->vWorldViewPosition.z = v8 * vCamToVertexZ - v6 * v7;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 {
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
51 a1->vWorldViewPosition.x = vCamToVertexY * fRotationYSine + fRotationYCosine * vCamToVertexX;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52 a1->vWorldViewPosition.y = v3 * vCamToVertexY - v4 * vCamToVertexX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53 a1->vWorldViewPosition.z = vCamToVertexZ;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 //----- (0042394D) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 void IndoorCamera::Initialize(int degFov, unsigned int uViewportWidth, unsigned int uViewportHeight)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 IndoorCamera *v4; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 double v5; // st7@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66 v4 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67 v5 = (double)(signed int)(signed __int64)((double)(signed int)uViewportWidth
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 * 0.5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 / tan((double)(degFov >> 1) * 0.01745329)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70 + 0.5);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 v4->flt_1C_fov = v5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 v4->flt_20_inv_1C = 65536.0 / v5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
74
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 //----- (004239A7) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
76 void IndoorCamera::Initialize2()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
77 {
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
78 //IndoorCamera *v1; // esi@1
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
79 double v2; // st7@4
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
80 //double v3; // st7@6
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
81 //int v4; // eax@6
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
82 //int v5; // eax@6
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
83 //int v6; // ST04_4@6
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
84 //int v7; // eax@6
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
85 //int v8; // ST04_4@6
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
87 //v1 = this;
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
88 fRotationYSine = sin((3.141592653589793 + 3.141592653589793) * (double)sRotationY * 0.00048828125);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
89 fRotationYCosine = cos((3.141592653589793 + 3.141592653589793) * (double)sRotationY * 0.00048828125);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
90 if ( byte_4D864C && pGame->uFlags & 0x80 || uCurrentlyLoadedLevelType == LEVEL_Indoor)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
91 {
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
92 fRotationXSine = sin((3.141592653589793 + 3.141592653589793) * (double)-sRotationX * 0.00048828125);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
93 v2 = (3.141592653589793 + 3.141592653589793) * (double)-sRotationX;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
94 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
95 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
96 {
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
97 fRotationXSine = sin((3.141592653589793 + 3.141592653589793) * (double)sRotationX * 0.00048828125);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
98 v2 = (3.141592653589793 + 3.141592653589793) * (double)sRotationX;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
99 }
59
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
100 //v3 = cos(v2 * 0.00048828125);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
101 //v4 = sRotationY;
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
102 fRotationXCosine = cos(v2 * 0.00048828125);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
103 //v5 = stru_5C6E00->SinCos(sRotationY - stru_5C6E00->uIntegerHalfPi);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
104 //v6 = sRotationY;
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
105 _int_sine = stru_5C6E00->SinCos(sRotationY - stru_5C6E00->uIntegerHalfPi);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
106 _int_cosine = stru_5C6E00->SinCos(sRotationY);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
107 //v7 = stru_5C6E00->SinCos(sRotationX - stru_5C6E00->uIntegerHalfPi);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
108 //v8 = sRotationX;
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
109 _int_sine_2 = stru_5C6E00->SinCos(sRotationX - stru_5C6E00->uIntegerHalfPi);
5159d2e6f559 BLV render
Nomad
parents: 0
diff changeset
110 _int_cosine_2 = stru_5C6E00->SinCos(sRotationX);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 // 4D864C: using guessed type char byte_4D864C;