browner10 2002/03/08 16:32:34 PST
Added files:
lr BMPLoader.cpp BMPLoader.h badguy.cpp
badguy.h glut.h glut32.dll glut32.lib
level.cpp level.h lr.dsp lr.dsw lr.ncb
lr.opt lr.plg player.cpp player.h
simpleGlutApp.cpp textures.cpp textures.h
Log:
Here is the base code for LR, I was experiencing trouble with the level/file
loader so I axed it, I will be adding it back in soon, the AI needs serious
work, which I will hopefully be able to learn about/mess with over spring
break. Also there is very weak commenting so I will be going through and
updating all of that also. This only compiles with VC++ so I appologize to
the linux community out there but I wasn't thinking about cross-platform
when I started.
I included the VC++ project files as well as glut in case you still don't
have it. I did not include gluax.h and the corrisponding dll, if someone
can't get those email me and we can post where to get them on the website
Revision Changes Path
1.1 +674 -0 examples/lr/BMPLoader.cpp (new)
1.1 +59 -0 examples/lr/BMPLoader.h (new)
1.1 +63 -0 examples/lr/badguy.cpp (new)
1.1 +27 -0 examples/lr/badguy.h (new)
1.1 +716 -0 examples/lr/glut.h (new)
1.1 +574 -0 examples/lr/glut32.dll (new)
1.1 +199 -0 examples/lr/glut32.lib (new)
1.1 +261 -0 examples/lr/level.cpp (new)
1.1 +71 -0 examples/lr/level.h (new)
1.1 +134 -0 examples/lr/lr.dsp (new)
1.1 +29 -0 examples/lr/lr.dsw (new)
1.1 +239 -0 examples/lr/lr.ncb (new)
1.1 +205 -0 examples/lr/lr.opt (new)
1.1 +36 -0 examples/lr/lr.plg (new)
1.1 +48 -0 examples/lr/player.cpp (new)
1.1 +59 -0 examples/lr/player.h (new)
1.1 +474 -0 examples/lr/simpleGlutApp.cpp (new)
1.1 +29 -0 examples/lr/textures.cpp (new)
1.1 +19 -0 examples/lr/textures.h (new)
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/BMPLoader.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/BMPLoader.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/badguy.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/badguy.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/glut.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/glut32.dll?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/glut32.lib?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/level.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/level.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/lr.dsp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/lr.dsw?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/lr.ncb?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/lr.opt?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/lr.plg?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/player.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/player.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/simpleGlutApp.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/textures.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/examples/lr/textures.h?rev=1.1&content-type=text/plain
|