-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathStar.cpp
138 lines (109 loc) · 3.33 KB
/
Star.cpp
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
* Star.cpp
* Game
*
* Created by David Reed, Matt Oldfield, Jeremy Sampson, Andrew Daugherty
* and Alex Martishius
* Copyright 2011. All rights reserved.
*
*/
//---------------------------------------------------------
#include "Star.h"
#include <string>
#include <sstream>
using namespace std;
//---------------------------------------------------------
Star::Star()
{
setKillsBottom(false);
setKillsSide(false);
setKillsTop(false);
setPoints(0);
setXVelocity(0.75);
setYVelocity(0.0);
sprite();
}
//---------------------------------------------------------
Star::~Star()
{
}
//---------------------------------------------------------
void Star::draw(bool update)
{
if (update){
//Determine Texture Position
if (texturePos < 3) {
texturePos+=1;
}
else{
texturePos = 0;
}
}
//Set proper blending for alpha
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glEnable( GL_TEXTURE_2D );
glBindTexture( GL_TEXTURE_2D, texture_[texturePos]);
//Draw QUAD
glColor4f(0.7f,0.9f,1.0f,1.0f);
glBegin( GL_QUADS );
glTexCoord2d(0.0,0.0); glVertex2d(left(),bottom());
glTexCoord2d(1.0,0.0); glVertex2d(right(),bottom());
glTexCoord2d(1.0,1.0); glVertex2d(right(),top());
glTexCoord2d(0.0,1.0); glVertex2d(left(),top());
glEnd();
//Disable unwanted gl modes
glDisable(GL_BLEND);
glDisable(GL_TEXTURE_2D);
}
//---------------------------------------------------------
void Star::sprite()
{
texturePos = 0;
// Mac environment variable for home directory
char *cHomeDir = NULL;
cHomeDir = getenv("HOME");
// I think Windows uses HOMEPATH
if (!cHomeDir) {
cHomeDir = getenv("HOMEPATH");
}
string homeDir = cHomeDir;
string iName;
homeDir += "/CS330/sprites/star";
string pos;
stringstream out;
for (int i = 0; i<4; ++i) {
stringstream out;
//Generates Filename
iName = homeDir;
out<<i;
pos = out.str();
iName += pos;
iName += ".tex";
//Read in the texture file
FILE *fp = fopen(iName.c_str(), "r");
unsigned char *texture = new unsigned char[4 * 32* 32];
if (fread(texture, sizeof(unsigned char), 4 * 32 * 32, fp)
!= 4* 32 *32) {
fprintf(stderr, "error reading %s", iName.c_str());
}
fclose(fp);
//Bind Texture to a GLuint
glGenTextures(1, &texture_[i]);
glBindTexture(GL_TEXTURE_2D, texture_[i]);
//Set parameters for how the texture is displayed
glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
GL_LINEAR_MIPMAP_NEAREST );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,
GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,
GL_CLAMP );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,
GL_CLAMP );
//Build Mipmap
gluBuild2DMipmaps(GL_TEXTURE_2D, 4, 32, 32, GL_RGBA,
GL_UNSIGNED_BYTE, texture);
delete [] texture;
}
}