资源简介
opengl 实现2048小游戏 四乘四
代码片段和文件信息
// Block.cpp: implementation of the Block class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “cg1.h“
#include “Block.h“
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Block::Block()
{
}
Block::Block(int value)
{
this->value=value;
switch(value)
{
case 2:color[0]=1;color[1]=1;color[2]=0.75;break;
case 4:color[0]=1;color[1]=0.75;color[2]=1;break;
case 8:color[0]=0.75;color[1]=1;color[2]=1;break;
case 16:color[0]=0.75;color[1]=1;color[2]=0.75;break;
case 32:color[0]=1;color[1]=0.75;color[2]=0.75;break;
case 64:color[0]=0.75;color[1]=0.75;color[2]=1;break;
case 128:color[0]=0.75;color[1]=0.75;color[2]=0.75;break;
case 256:color[0]=1;color[1]=1;color[2]=0.5;break;
case 512:color[0]=1;color[1]=0.5;color[2]=1;break;
case 1024:color[0]=0.5;color[1]=1;color[2]=1;break;
case 2048:color[0]=0.75;color[1]=0.5;color[2]=0.75;break;
}
combine=false;
}
Block::~Block()
{
}
void Block::SetCombine()
{
combine=true;
}
void Block::ClearCombine()
{
combine=false;
}
bool Block::GetCombine()
{
return combine;
}
int Block::GetValue()
{
return value;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-04-09 22:17 2048\
文件 1 2014-04-09 19:25 2048\a.txt
文件 1444 2014-04-09 18:01 2048\Block.cpp
文件 630 2014-04-09 18:02 2048\Block.h
文件 28280 2014-04-09 18:29 2048\cg1.aps
文件 2263 2014-04-09 22:17 2048\cg1.clw
文件 4155 2008-04-10 13:24 2048\cg1.cpp
文件 4676 2014-04-08 12:07 2048\cg1.dsp
文件 531 2008-04-10 13:24 2048\cg1.dsw
文件 1323 2008-04-10 13:24 2048\cg1.h
文件 197632 2014-04-09 22:17 2048\cg1.ncb
文件 55808 2014-04-09 22:17 2048\cg1.opt
文件 1132 2014-04-09 20:37 2048\cg1.plg
文件 10502 2008-04-10 13:24 2048\cg1.rc
文件 2069 2014-04-09 19:42 2048\cg1Doc.cpp
文件 1532 2014-04-09 19:42 2048\cg1Doc.h
文件 13514 2014-04-09 22:17 2048\cg1View.cpp
文件 1996 2014-04-09 16:52 2048\cg1View.h
目录 0 2014-04-09 20:37 2048\Debug\
文件 7609 2014-04-09 18:02 2048\Debug\Block.obj
文件 1587 2014-04-09 18:02 2048\Debug\Block.sbr
文件 5522432 2014-04-08 12:06 2048\Debug\cg1.bsc
文件 135206 2014-04-09 20:37 2048\Debug\cg1.exe
文件 411388 2014-04-09 20:37 2048\Debug\cg1.ilk
文件 23447 2014-04-08 11:03 2048\Debug\cg1.obj
文件 7054664 2014-04-08 11:03 2048\Debug\cg1.pch
文件 500736 2014-04-09 20:37 2048\Debug\cg1.pdb
文件 7196 2014-04-08 11:03 2048\Debug\cg1.res
文件 0 2014-04-08 11:03 2048\Debug\cg1.sbr
文件 17311 2014-04-09 19:42 2048\Debug\cg1Doc.obj
文件 3319 2014-04-09 19:42 2048\Debug\cg1Doc.sbr
............此处省略32个文件信息
- 上一篇:大数据时代中和英)
- 下一篇:边缘计算产业联盟白皮书
相关资源
- 2048v小游戏 LayaAir 2.0 + JS 编写
- OpenGL程序绘制贝塞尔曲线
- Learning Game Physics with Bullet Physics and
- 交通自动化控制界面 - 智能交通灯演
- OpenGLTexture
- OpenGLPro12
- openGL写的飞机动态射击模型
- 太阳系仿真源代码,opengl模型太阳系
- OpenGL 的 glut glaux
- 计算机图形学课程设计--OpenGL--太阳、
- Windows SDK 环境下 OpenGL实现
- OPenGL实现的虚拟校园环境漫游系统
- OpenGL函数与范例解析手册(中文)带
- Qt Creator中的3D绘图及动画教程(参照
- OpenGL依赖库
- 用VC和opengl开发的模仿cs的小游戏
- 二维/三维图形的几何变换基于OpenGL
- Qt下 用OpenGL 实现的模拟太阳系
- opengl实现的太阳系
- OpenGL 4 Shading Language Cookbook - Second Ed
- OpenGL从盒子飞出的气球
- opengl3D路灯
- 反向运动学演示程序含核心代码
- QtOpenGL以及Graphics-View框架整合的演示
- 基于Qt和GLSL的着色器演示程序+源代码
- OpenGL 4.0 Shading Language Cookbook
- opengl改进的有效边表算法
- 21个天空盒贴图 OPENGL
- 十几个动态MD2文件,可用于OPENGL读取
- 基于OpenGL的机器人虚拟现实
评论
共有 条评论