大二时利用C++编写的点水果小游戏

程序代码总共3个文件,main.cpp Fruit.h Fruit.cpp  代码将在图片下面给出

至于讲解,由于过了一年多的时间,有点忘记了,但我会努力回忆并即时写出来的。

程序的下载地址http://files.cnblogs.com/magicsoar/clickfruit.rar包括了需要的图片素材

游戏的开始界面

游戏中界面

游戏的结束界面

游戏的代码

main.cpp

 
#include <stdio.h>
#include <string>
#include <Windows.h>
#include "atlimage.h"
#include "Fruit.h" #include <vector>
using namespace std;
#define random(x) (rand()%x)
HINSTANCE hInst;
HBITMAP bg,font,start;
HDC hdc,mdc,bufdc;
HWND hWnd;
DWORD tPre,tNow,tNow2,tCheck;
RECT rect;
int score=;
char cScore[]; int numberOfBomb=;
int const fruitLength=;
bool gameOver=false;
bool gameStart=true;
Fruit* (myFruit[])={ new Fruit("apple.png",,,-,),
new Fruit("apple.png",,,,),
new Fruit("apple.png",,,,),
new Fruit("apple.png",,,,-),
new Fruit("banana.png",,,,),
new Fruit("banana.png",,,-,),
new Fruit("banana.png",,,,-),
new Fruit("strawberry.png",,,,),
new Fruit("pineapple.png",,,-,),
new Fruit("pineapple.png",,,,-),
new Fruit("watermelon.png",,,,-)}; Fruit* (Bomb[])={new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),
new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),
new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),
new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),
new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png"),new Fruit("bomb.png")}; ; int AddScore(std::string name);
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE, int);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
void MyPaint(HDC hdc);
void productBomb();
void initFruit();
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
MSG msg; MyRegisterClass(hInstance); if (!InitInstance (hInstance, nCmdShow))
{
return FALSE;
} GetMessage(&msg,NULL,NULL,NULL);
while( msg.message!=WM_QUIT )
{
if( PeekMessage( &msg, NULL, , ,PM_REMOVE) )
{
TranslateMessage( &msg );
DispatchMessage( &msg );
}
else
{ //if(gameStart==false&&gameOver==false)
{
tNow = GetTickCount(); if(tNow-tPre >= )
MyPaint(hdc);
if(gameStart==false&&gameOver==false)
{
tNow2=GetTickCount();
if(tNow-tCheck>=)
productBomb();
} }
}
} return msg.wParam;
} ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = (WNDPROC)WndProc;
wcex.cbClsExtra = ;
wcex.cbWndExtra = ;
wcex.hInstance = hInstance;
wcex.hIcon = NULL;
wcex.hCursor = NULL;
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+);
wcex.lpszMenuName = NULL;
wcex.lpszClassName = "canvas";
wcex.hIconSm = NULL; return RegisterClassEx(&wcex);
} BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
//HBITMAP bmp;
hInst = hInstance; initFruit(); hWnd = CreateWindow("canvas", "Soar" , WS_OVERLAPPEDWINDOW&~WS_THICKFRAME&~WS_MAXIMIZEBOX,
CW_USEDEFAULT, CW_USEDEFAULT, , , , , hInstance, );
if (!hWnd)
{
return FALSE;
}
ShowWindow(hWnd, nCmdShow);
UpdateWindow(hWnd); hdc = GetDC(hWnd);
mdc = CreateCompatibleDC(hdc); bg = (HBITMAP)LoadImage(NULL,"bg.bmp",IMAGE_BITMAP,,,LR_LOADFROMFILE);
font=(HBITMAP)LoadImage(NULL,"bgOver.bmp",IMAGE_BITMAP,,,LR_LOADFROMFILE);
start=(HBITMAP)LoadImage(NULL,"bgStart.bmp",IMAGE_BITMAP,,,LR_LOADFROMFILE);
GetClientRect(hWnd,&rect);
MyPaint(hdc); return TRUE;
} void initFruit()
{ }
void MyPaint(HDC hdc)
{
COLORREF old_fcolor,old_bcolor;
int old_tmode; if(gameOver==false&&gameStart==false)
{
char ss[]="Score:";
SelectObject(mdc,bg);
BitBlt(hdc,,,,,mdc,,,SRCCOPY);
sprintf(cScore, "%d", score);
old_fcolor=SetTextColor(hdc,RGB(,,));
old_bcolor=SetBkColor(hdc,RGB(,,));
old_tmode=SetBkMode(hdc,TRANSPARENT);
strcat(ss,cScore);
TextOut(hdc,,,ss,strlen(ss));
SetTextColor(hdc,old_fcolor);
SetBkColor(hdc,old_bcolor);
SetBkMode(hdc,old_tmode); for(int i=;i<fruitLength;i++)
{
myFruit[i]->Draw(hdc);
myFruit[i]->Move(rect);
}
for(int i=;i<numberOfBomb;i++)
{
Bomb[i]->Draw(hdc);
Bomb[i]->Move(rect);
} tPre = GetTickCount();
}
if(gameOver==true)
{
char ss[]="Your Score is ";
SelectObject(mdc,font);
BitBlt(hdc,,,,,mdc,,,SRCCOPY);
sprintf(cScore, "%d", score);
old_fcolor=SetTextColor(hdc,RGB(,,));
old_bcolor=SetBkColor(hdc,RGB(,,));
old_tmode=SetBkMode(hdc,TRANSPARENT);
strcat(ss,cScore);
TextOut(hdc,,,ss,strlen(ss));
SetTextColor(hdc,old_fcolor);
SetBkColor(hdc,old_bcolor);
SetBkMode(hdc,old_tmode);
}
if(gameStart==true)
{
SelectObject(mdc,start);
BitBlt(hdc,,,,,mdc,,,SRCCOPY);
}
} void productBomb()
{
if(numberOfBomb<)
{
Bomb[numberOfBomb]->changePosition(rect);
numberOfBomb++;
}
tCheck = GetTickCount();
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
WORD mouseX=;
WORD mouseY=; switch (message)
{
case WM_KEYDOWN:
if(wParam==VK_ESCAPE)
PostQuitMessage();
if(gameOver==true)
{
if(wParam==||wParam==)
{
numberOfBomb=;
gameOver=false;
gameStart=true;
}
}
if(gameStart==true)
{
if(wParam==)
{
gameStart=false;
score=;
}
}
break; case WM_DESTROY:
DeleteDC(mdc);
DeleteObject(bg);
DeleteObject(font);
for(int i=;i<fruitLength;i++)
{
myFruit[i]->Destroy();
}
for(int i=;i<;i++)
{
Bomb[i]->Destroy();
}
ReleaseDC(hWnd,hdc);
PostQuitMessage();
break;
case WM_LBUTTONDOWN:
mouseX=LOWORD(lParam);
mouseY=HIWORD(lParam);
for(int i=;i<fruitLength;i++)
{
if(myFruit[i]->checkClick(mouseX,mouseY))
{
myFruit[i]->changePosition(rect);
score+=AddScore(myFruit[i]->GetName());
}
}
for(int i=;i<numberOfBomb;i++)
{
if(Bomb[i]->checkClick(mouseX,mouseY))
{
gameOver=true;
}
}
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return ;
}
int AddScore(std::string name)
{
if(name=="apple.png")
{
return ;
}
if(name=="banana.png")
{
return ;
}
if(name=="strawberry.png")
{
return ;
}
if(name=="pineapple.png")
{
return ;
} if(name=="watermelon.png")
{
return ;
}
return ; }

Fruit.h

#pragma once
#include <string>
#include "atlimage.h"
using namespace std;
class Fruit
{
private:
std::string name;
int positionX;
int positionY;
int speedX;
int speedY;
CImage image;
public:
Fruit(void);
~Fruit(void);
Fruit(CString);
Fruit(CString name,int positionX,int positionY,int speedX,int speedY);
void changePosition(RECT rect);
void Draw(HDC);
int GetX();
int GetY();
string GetName();
void Move(RECT rect);
bool checkClick(WORD mouseX,WORD mouseY);
void Destroy();
};

Fruit.cpp

#include "Fruit.h"
#include <string>
using namespace std;
#define random(x) (rand()%x)
Fruit::Fruit(void)
{
}
Fruit::Fruit(CString name,int positionX,int positionY,int speedX,int speedY)
{
this->name=name;
image.Load(name);
this->positionX=positionX;
this->positionY=positionY;
this->speedX=speedX;
this->speedY=speedY;
}
Fruit::Fruit(CString name)
{
this->name=name;
image.Load(name);
} Fruit::~Fruit(void)
{
}
void Fruit::changePosition(RECT rect)
{
positionX=random(rect.right-image.GetWidth());
positionY=random(rect.bottom-image.GetHeight());
speedX=random()-;
int i=rand()/;
int j=sqrt((double)(-speedX*speedX));
speedY=(i==)?j:-j;
}
void Fruit:: Draw(HDC hdc)
{
image.TransparentBlt (hdc,positionX,positionY,image.GetWidth(),image.GetHeight(),RGB(,,));
}
void Fruit::Move(RECT rect)
{
positionX+=speedX;
positionY+=speedY;
if(positionX <= )
{
positionX = ;
speedX = -speedX;
}
else if(positionX >= rect.right-image.GetWidth())
{
positionX = rect.right - image.GetWidth();
speedX = -speedX;
}
if(positionY<=)
{
positionY = ;
speedY = -speedY;
}
else if(positionY>= rect.bottom-image.GetHeight())
{
positionY = rect.bottom - image.GetHeight();
speedY = -speedY;
}
}
void Fruit::Destroy()
{
image.Destroy();
}
string Fruit::GetName()
{
return name;
}
bool Fruit::checkClick(WORD mouseX,WORD mouseY)
{ if(mouseX>positionX&&mouseX<positionX+image.GetWidth())
{
if(mouseY>positionY&&mouseY<positionY+image.GetHeight())
return true;
}
return false;
}
int Fruit::GetX()
{
return positionX;
}
int Fruit::GetY()
{
return positionY;
}

C++ 游戏之点点水果的更多相关文章

  1. java游戏制作之水果忍者

    水果忍者的原理很简单,主要就是采用随机的方式是画面上面出现水果. package Fruitninja; import java.awt.Dimension; import java.awt.Grap ...

  2. Python开发接水果小游戏

    我研发的Python游戏引擎Pylash已经更新到1.4了.如今我们就来使用它完毕一个极其简单的小游戏:接水果. 下面是游戏截图: 游戏操作说明:点击屏幕左右两边或者使用键盘方向键控制人物移动.使人物 ...

  3. 练手WPF(四)——贪吃蛇小游戏的简易实现(下)

    八.生成新的单节蛇身我们这里先说说游戏小原理好了,游戏运行后,通过计时器事件不断生成新的单节蛇身类SnakeNode,添加到List中的0位置,原来的蛇头变成了第二节.该节新蛇头的坐标通过蛇头前进方向 ...

  4. 纯css3手机页面图标样式代码

    全部图标:http://hovertree.com/texiao/css/19/ 先看效果: 或者点这里:http://hovertree.com/texiao/css/19/hoverkico.ht ...

  5. 使用Visual Studio进行 Android开发的十大理由

    [原文发表地址]Top 10 reasons to use Visual Studio for C++ Android Development! Visual Studio: C++跨平台的移动解决方 ...

  6. 设计模式之十八:桥接模式(Bridge)

    桥接模式: 将抽象部分和它的实现部分相分离开来,以使它们能够单独地变化. UML图: 主要包含: Abstraction:定义了抽象部分的接口.操作一个实现部分对象的引用. RefinedAbstra ...

  7. 少儿编程|Scratch编程教程系列合集,总有一款适合你

    如果觉得资源不错,友情转发,贵在分享!!! 少儿编程Scratch: 少儿编程Scratch第一讲:Scratch完美的初体验少儿编程Scratch第二讲:奇妙的接球小游戏少儿编程Scratch第三讲 ...

  8. 基于HTML5和JS实现的切水果游戏

    切水果游戏曾经是一款风靡手机的休闲游戏,今天要介绍的就是一款网页版的切水果游戏, 由JavaSript和HTML5实现,虽然功能和原版的相差太大,但是基本的功能还是具备了,还是模仿的挺逼真,有一定的J ...

  9. ios水果风暴游戏源码下载

    游戏源码是从那个IOS教程网IOS.662p.com分享给大家的. 这是一款ios水果风暴游戏源码下载,介绍给大家一下,喜欢的朋友可以下载学习一下吧.应用介绍:这是一个以获得高分和挑战更高难度为目的的 ...

随机推荐

  1. [arc081F]Flip and Rectangles-[黑白染色]

    Description 传送门 Solution 有一个神秘的结论..我不知道大佬是怎么场上推出来的. 一个黑白染色图,每次可以任意翻转行或列的颜色,如果每个2*2的子矩阵内黑色格子都是偶数个,则可以 ...

  2. 解决table td里面长串数字或字母不换行的问题

    在html中,经常要用到table标签,一般情况下,table下面的td元素里的东西都是汉字或者说是汉字.字母.数字的混合,在这种情况下,不设置table的宽度,也就是table宽度自适应的时候,浏览 ...

  3. BootStap学习笔记(1)

    移动设备优先:  为了让开发的网站对移动设备友好,确保适当的绘制和触屏缩放,需要在网页的head之中添加viewport meat标签:如下: <metaname="viewport& ...

  4. 阿里云rds 磁盘空间满导致实例锁定

    1.RDS 数据日志已经快满了, 导致数据库不能写入,只读. 2. Binlog日志的保存及清理规则 MySQL实例的空间内默认清理binlog日志的规则如下: 实例空间内默认会保存最近18个小时内的 ...

  5. 做一个树莓派Raspberry Pi拍立得

    用树莓派Raspberry Pi打造一台拍立得,作法如下: 材料:树莓派+数字相机模块+热敏打印机 因为打印机所需电流较高,所以电源供应器的规格需要5V 3A以上. 再找一个稳定的电源以及够大的外壳装 ...

  6. Ubuntu 16.04.4 LTS环境中php7.0使用mysqli失败,数据库无法访问

    环境: Ubuntu 16.04.4 LTS php7.0 输入命令php -m,显示如下,发现没有mysqli模块 输入命令sudo apt install php-mysql,安装mysql模块, ...

  7. 最安全的聊天工具——Cryptocat

    关于Cryptocat Cryptocat 是啥?Cryptocat,俗称 "加密猫",是一款非常注重安全的聊天软件. 美国前中情局员工斯诺登在躲避美国政府追捕过程中,就是使用 C ...

  8. salt-api https连接问题

    在非salt-api的主机上测试api连通性,测试代码如下: #!/usr/bin/env python import pycurl import StringIO import ssl ssl._c ...

  9. SparkRDD编程实战

    通过spark实现点击流日志分析案例 1. 访问的pv package cn.itcast import org.apache.spark.rdd.RDD import org.apache.spar ...

  10. day22 模块-collections,time,random,pickle,shelve等

    一.引入模块的方式: 1. 认识模块 模块可以认为是一个py文件. 模块实际上是我们的py文件运行后的名称空间 导入模块: 1. 判断sys.modules中是否已经导入过该模块 2. 开辟一个内存 ...