资源简介
(c++源码)中文版的黄金矿工小游戏,让你对每种道具的作用更加了解。操作方法:方向键↓放出钩子。每一关必须达到规定的金额才能进入下一关

代码片段和文件信息
#include “stdafx.h“
#include “bitmaptool.h“
MYBITMAP::~MYBITMAP()
{
Deleteobject(hBm);
}
void MYBITMAP::Init(HINSTANCE hInstanceint iResourceint rowint col)
{
BITMAP bm;
inum=row;
jnum=col;
hBm=LoadBitmap(hInstanceMAKEINTRESOURCE(iResource));
Getobject(hBmsizeof(BITMAP)&bm);
width=bm.bmWidth/inum;
height=bm.bmHeight/jnum;
}
void MYBITMAP::SetDC(HDC hdestHDC hsrc)
{
hdcdest=hdest;
hdcsrc=hsrc;
}
void MYBITMAP::Show(int xint yint iframe)
{
xpos=x;
ypos=y;
Selectobject(hdcsrchBm);
BitBlt(hdcdestxposyposwidthheighthdcsrciframe*width0SRCCOPY);
}
void MYBITMAP::ShowCenter(int yint iframe)
{
xpos=(screenwidth-width)/2;
ypos=y;
Selectobject(hdcsrchBm);
BitBlt(hdcdestxposyposwidthheighthdcsrciframe*width0SRCCOPY);
}
void MYBITMAP::ShowCenter(int y)
{
xpos=(screenwidth-width)/2;
ypos=y;
Selectobject(hdcsrchBm);
BitBlt(hdcdestxposyposwidthheighthdcsrcframenow*width0SRCCOPY);
}
void MYBITMAP::ShowLoop(int leftint topint rightint bottomint iframe)
{
int ij;
Selectobject(hdcsrchBm);
for(j=top;j {
for(i=left;i {
BitBlt(hdcdestijwidthheighthdcsrciframe*width0SRCCOPY);
}
}
}
void MYBITMAP::ShowNoBack(int xint yint iframe)
{
xpos=x;
ypos=y;
Selectobject(hdcsrchBm);
BitBlt(hdcdestxposyposwidthheight/2hdcsrciframe*widthheight/2SRCAND);
BitBlt(hdcdestxposyposwidthheight/2hdcsrciframe*width0SRCPAINT);
}
void MYBITMAP::ShowNoBackLoop(int xint yint iframeint iNum)
{
int i;
xpos=x;
ypos=y;
Selectobject(hdcsrchBm);
for(i=0;i {
BitBlt(hdcdestxpos+i*widthyposwidthheight/2hdcsrciframe*widthheight/2SRCAND);
BitBlt(hdcdestxpos+i*widthyposwidthheight/2hdcsrciframe*width0SRCPAINT);
}
}
int MYBITMAP::MouseOut(int xint y)
{
if(x(xpos+width) || y(ypos+height))
framenow=0;
return 1;
}
int MYBITMAP::MouseOver(int xint y)
{
if(x(xpos+width) || y(ypos+height))
return 0;
framenow=1;
return 1;
}
int MYBITMAP::DetectMouseMove(int xint y)
{
MouseOver(xy);
MouseOut(xy);
return 0;
}
int MYBITMAP::DetectMouseUp(int xint y)
{
if(x(xpos+width) || y(ypos+height))
return 0;
return 1;
}
void MYBITMAP::ShowAni()
{
if(!iStartAni)
return;
Selectobject(hdcsrchBm);
BitBlt(hdcdestxposyposwidthheight/2hdcsrcframenow*widthheight/2SRCAND);
BitBlt(hdcdestxposyposwidthheight/2hdcsrcframenow*width0SRCPAINT);
framenow++;
//播放结束
if(framenow>=inum)
iStartAni=0;
}
void MYBITMAP::SetAni(int xint y)
{
xpos=x;
ypos=y;
framenow=0;
iStartAni=1;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 153718 2008-04-13 20:40 挖金矿\bitmap1.bmp
文件 2804 2008-04-12 17:23 挖金矿\bitmaptool.cpp
文件 1151 2008-04-13 20:22 挖金矿\bitmaptool.h
文件 98358 2008-04-12 17:31 挖金矿\bomb.bmp
文件 2872 2008-04-13 20:22 挖金矿\catch.cpp
文件 621 2008-04-07 17:15 挖金矿\catch.h
文件 16248 2012-07-14 10:30 挖金矿\Debug\bitmaptool.obj
文件 21638 2012-07-14 10:30 挖金矿\Debug\BuildLog.htm
文件 16286 2012-07-14 10:30 挖金矿\Debug\catch.obj
文件 7332 2012-07-14 10:30 挖金矿\Debug\filereport.obj
文件 1085440 2012-07-14 10:30 挖金矿\Debug\gamegold.exe
文件 406 2012-07-14 10:30 挖金矿\Debug\gamegold.exe.em
文件 472 2012-07-14 10:30 挖金矿\Debug\gamegold.exe.em
文件 381 2012-07-14 10:30 挖金矿\Debug\gamegold.exe.intermediate.manifest
文件 49407 2012-07-14 10:30 挖金矿\Debug\gamegold.obj
文件 2550784 2012-07-14 10:30 挖金矿\Debug\gamegold.pdb
文件 647816 2008-04-13 20:40 挖金矿\Debug\gamegold.res
文件 29781 2012-07-14 10:30 挖金矿\Debug\gamemap.obj
文件 297 2008-04-07 10:38 挖金矿\Debug\ini\match.txt
文件 67 2012-07-14 10:30 挖金矿\Debug\mt.dep
文件 10369 2012-07-14 10:30 挖金矿\Debug\mybutton.obj
文件 9678 2012-07-14 10:30 挖金矿\Debug\myequip.obj
文件 110607 2012-07-14 10:30 挖金矿\Debug\StdAfx.obj
文件 184320 2008-04-13 20:39 挖金矿\Debug\vc60.pdb
文件 380928 2012-07-14 10:30 挖金矿\Debug\vc90.pdb
文件 73782 2008-04-07 16:44 挖金矿\equip.bmp
文件 517 2008-03-30 12:05 挖金矿\filereport.cpp
文件 225 2008-03-30 12:06 挖金矿\filereport.h
文件 6198 2008-04-12 16:53 挖金矿\fire.bmp
文件 651632 2008-04-13 20:37 挖金矿\gamegold.aps
............此处省略37个文件信息
相关资源
- 基于MFC的TCP调试助手源码95706
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- 基于mfc的多线程文件传输
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- MFC数字钟(基于VC6.0)
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- C++ mqtt 用法
- ChartCtrl控件库(可在VS2019中使用)
- 商品库存管理系统 C++ MFC
- c++ 多功能计算器
- C++17 In Detail
- 嵌入式QtC++编程课件
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
评论
共有 条评论