-
Notifications
You must be signed in to change notification settings - Fork 9
/
cpu_chipset.h
115 lines (91 loc) · 2.29 KB
/
cpu_chipset.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#ifndef CPU_CHIPSET
#define CPU_CHIPSET
#include "parameter.h"
class cpu_chipset {
point3D move;
bool visible = true;
bool objMove = false;
void motionHandle();
public:void render();
};
void cpu_chipset::motionHandle() {
if (((enterPressed && objIndex == REMOVE_PROCESSOR) || objMove == true) && !assemble)
{
objMove = true;
move.x -= 0.007;
if (move.x < disapphereLimit)
{
objMove = false;
enterPressed = false;
visible = false;
}
}
else if (((enterPressed && objIndex == REMOVE_PROCESSOR-1) || objMove == true) && assemble)
{
objMove = true;
visible = true;
move.x += 0.007;
if (move.x >= 0.)
{
objMove = false;
enterPressed = false;
}
}
}
void cpu_chipset::render() {
motionHandle();
if (!visible) return;
glPushMatrix();
glTranslatef(move.x, move.y, move.z);
glColor3f(1, 1, 1);
glTranslatef(8., 4.77, -4.7);
glRotatef(-90., 0., 1., 0.);
glScalef(0.2, 0.2, 0.2);
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, textures[CHIPSET]);
glColor3f(1, 1, 1);
glBegin(GL_POLYGON);
glTexCoord2f(0., 0.); glVertex3f(0, 0, 0.05);
glTexCoord2f(1., 0); glVertex3f(1, 0, 0.05);
glTexCoord2f(1, 1); glVertex3f(1, 1, 0.05);
glTexCoord2f(0., 1); glVertex3f(0, 1, 0.05);
glEnd();
glDisable(GL_TEXTURE_2D);
glEnable(GL_TEXTURE_2D);
glColor3f(1, 1, 1);
glBindTexture(GL_TEXTURE_2D, textures[CHIPSET_BACK]);
glBegin(GL_POLYGON);
glTexCoord2f(0., 0.); glVertex3f(0, 0, 0);
glTexCoord2f(1., 0); glVertex3f(1, 0, 0);
glTexCoord2f(1, 1); glVertex3f(1, 1, 0.0);
glTexCoord2f(0., 1); glVertex3f(0, 1, 0.0);
glEnd();
glDisable(GL_TEXTURE_2D);
glColor3f(0, .1, 0);
glBegin(GL_POLYGON);
glVertex3f(0, 1, 0.0);
glVertex3f(1, 1, 0.0);
glVertex3f(1, 1, 0.05);
glVertex3f(0, 1, 0.05);
glEnd();
glBegin(GL_POLYGON);
glVertex3f(0, 0, 0.0);
glVertex3f(1, 0, 0.0);
glVertex3f(1, 0, 0.05);
glVertex3f(0, 0, 0.05);
glEnd();
glBegin(GL_POLYGON);
glVertex3f(0, 0, 0.0);
glVertex3f(0, 1, 0.0);
glVertex3f(0, 1, 0.05);
glVertex3f(0, 0, 0.05);
glEnd();
glBegin(GL_POLYGON);
glVertex3f(1, 0, 0.0);
glVertex3f(1, 1, 0.0);
glVertex3f(1, 1, 0.05);
glVertex3f(1, 0, 0.05);
glEnd();
glPopMatrix();
}
#endif CPU_CHIPSET