亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? outofmouth.cpp

?? 考驗你的觀察力和判斷力的時候到了
?? CPP
?? 第 1 頁 / 共 4 頁
字號:
// outofmouth demo 8-bit blitting

// INCLUDES ///////////////////////////////////////////////

#define WIN32_LEAN_AND_MEAN  // 無 MFC

#define INITGUID

#include <windows.h>   // include important windows stuff
#include <windowsx.h> 
#include <mmsystem.h>
#include <iostream> // include important C/C++ stuff
#include <conio.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h> 
#include <math.h>
#include <io.h>
#include <fcntl.h>

#include <ddraw.h> // include directdraw

// DEFINES ////////////////////////////////////////////////

// defines for windows 
#define WINDOW_CLASS_NAME "WINCLASS1"

// default screen size
#define SCREEN_WIDTH    1024  // size of screen
#define SCREEN_HEIGHT   768
#define SCREEN_BPP      8    // bits per pixel

#define BITMAP_ID            0x4D42 // universal id for a bitmap
#define MAX_COLORS_PALETTE   256

///defines for game 
#define BOW_WIDTH         42       //爆炸寬
#define BOW_HEIGHT        36       ///爆炸高
#define ALL_BOW           14

#define BOW2_WIDTH        86       //爆炸寬
#define BOW2_HEIGHT       74       ///爆炸高
#define ALL_BOW2          14

#define TOOTH_WIDTH       50       //牙齒寬
#define TOOTH_HEIGHT      150      //牙齒高

#define SMALLONE_WIDTH    50       //小東西寬
#define SMALLONE_HEIGHT   30       //小東西高

#define INIT_BOTTOM_X     300      //底部第一個牙齒X坐標
#define INIT_BOTTOM_y     450      //底部第一個牙齒Y坐標

#define DISTANCE          200      //底部牙齒與上部的距離

#define TOOTH_NUM         7        //一排牙齒的數目

#define SHAPE_NUM         5        //單排牙齒形狀數
#define ALL_SHAPE_NUM     10       //上下牙齒形狀數

#define INIT_SPEED        1        //游戲速度,牙齒速度,33pixel/sec

#define SMALLONE_INIT_y   560
#define SMALLONE_SPEC     110 

#define DELAY             8        //操作延遲時間 N frame

#define FRAME_PER_SEC     30       //frame per sec = 1sec/N(30)=33.3fps

#define DEATH_DELAY       30

// TYPES //////////////////////////////////////////////////////

// basic unsigned types
typedef unsigned short USHORT;
typedef unsigned short WORD;
typedef unsigned char  UCHAR;
typedef unsigned char  BYTE;

// container structure for bitmaps .BMP file
typedef struct BITMAP_FILE_TAG
        {
        BITMAPFILEHEADER bitmapfileheader;  // this contains the bitmapfile header
        BITMAPINFOHEADER bitmapinfoheader;  // this is all the info including the palette
        PALETTEENTRY     palette[256];      // we will store the palette here
        UCHAR            *buffer;           // this is a pointer to the data

        } BITMAP_FILE, *BITMAP_FILE_PTR;

// this will hold our little alien
typedef struct ALIEN_OBJ_TYP
        {
        LPDIRECTDRAWSURFACE7 frames[14]; // 3 frames of animation for complete walk cycle
        int x,y;                        // position of alien
        int velocity;                   // x-velocity
        int current_frame;              // current frame of animation
        int counter;                    // used to time animation
		int position;
 
        } ALIEN_OBJ, *ALIEN_OBJ_PTR;

//牙齒的關卡地圖結構
typedef struct MAP_SET_TYP
{
	ALIEN_OBJ BottomSet[TOOTH_NUM];       //下排牙齒的數地圖
	ALIEN_OBJ TopSet[TOOTH_NUM];          //下排牙齒的數地圖
	int iKey;                             //缺牙地址
} MAP_SET, *MAP_SET_PTR;

// PROTOTYPES  //////////////////////////////////////////////

int Build_Map();

int Flip_Bitmap(UCHAR *image, int bytes_per_line, int height);

int Load_Bitmap_File(BITMAP_FILE_PTR bitmap, char *filename);

int Unload_Bitmap_File(BITMAP_FILE_PTR bitmap);

int DDraw_Fill_Surface(LPDIRECTDRAWSURFACE7 lpdds,int color);

int Scan_Image_Bitmap(BITMAP_FILE_PTR bitmap, LPDIRECTDRAWSURFACE7 lpdds, int cx,int cy);

LPDIRECTDRAWSURFACE7 DDraw_Create_Surface(int width, int height, int mem_flags, int color_key);

int DDraw_Draw_Surface(LPDIRECTDRAWSURFACE7 source, int x, int y, 
                      int width, int height, LPDIRECTDRAWSURFACE7 dest, 
                      int transparent);    

LPDIRECTDRAWCLIPPER DDraw_Attach_Clipper(LPDIRECTDRAWSURFACE7 lpdds,
                                         int num_rects,
                                         LPRECT clip_list);

int Draw_Text_GDI(char *text, int x,int y,COLORREF color, LPDIRECTDRAWSURFACE7 lpdds);

// MACROS /////////////////////////////////////////////////

// tests if a key is up or down
#define KEYDOWN(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)
#define KEYUP(vk_code)   ((GetAsyncKeyState(vk_code) & 0x8000) ? 0 : 1)

// initializes a direct draw struct
#define DDRAW_INIT_STRUCT(ddstruct) { memset(&ddstruct,0,sizeof(ddstruct)); ddstruct.dwSize=sizeof(ddstruct); }

// GLOBALS ////////////////////////////////////////////////

HWND      main_window_handle = NULL; // globally track main window
int       window_closed      = 0;    // tracks if window is closed
HINSTANCE hinstance_app      = NULL; // globally track hinstance

// directdraw stuff

LPDIRECTDRAW7         lpdd         = NULL;   // dd4 object
LPDIRECTDRAWSURFACE7  lpddsprimary = NULL;   // dd primary surface
LPDIRECTDRAWSURFACE7  lpddsback    = NULL;   // dd back surface
LPDIRECTDRAWPALETTE   lpddpal      = NULL;   // a pointer to the created dd palette
LPDIRECTDRAWCLIPPER   lpddclipper  = NULL;   // dd clipper
PALETTEENTRY          palette[256];          // color palette
PALETTEENTRY          save_palette[256];     // used to save palettes
DDSURFACEDESC2        ddsd;                  // a direct draw surface description struct
DDBLTFX               ddbltfx;               // used to fill
DDSCAPS2              ddscaps;               // a direct draw surface capabilities struct
HRESULT               ddrval;                // result back from dd calls
DWORD                 start_clock_count = 0; // used for timing
//全局結構體變量
BITMAP_FILE           bitmap;                // holds the bitmap

ALIEN_OBJ             aliens[3];             // 3 aliens, one on each level
ALIEN_OBJ             tooth[ALL_SHAPE_NUM];
ALIEN_OBJ             smallone;
ALIEN_OBJ             bow;
ALIEN_OBJ             bow2;

MAP_SET               map;                    //地圖


LPDIRECTDRAWSURFACE7  lpddsbackground = NULL;// this will hold the background image

char buffer[600];                             // general printing buffer

int gwidth  = -1;
int gheight = -1;

//mine////////////////////////////////全局變量
int turnflag=0;
char *text=NULL;
char num[80];

int iFrame=0;

int iLevelNum=0;                  //過關數目

int iScore=0;                     //游戲分數
int iLevel=0;

int iSpeed=INIT_SPEED;            //游戲速度,牙齒速度,50pixel/sec

int iTimeCounter=0;               //操作延遲計數器
int delayflag=0;				  //操作延遲標志

int iCounterBow=0;                //爆炸精靈計數器
int iBowFlag=0;					
int iCounterBow2=0;
int iBowFlag2=0;

//game state
int iDistance=DISTANCE;		      //上下排牙齒距離
int iDeathFlag=0;				  //死亡標志

int iDeathTimeCounter=0;		  //死亡延遲
int iDeathDelayFlag=0;

int iGameMode=0;           //游戲模式0:記分模式,1:闖關模式,2:連續模式,3:極限模式


// FUNCTIONS ////////////////////////////////////////////////

int Build_Map()
{
	//生成地圖
	srand(GetTickCount());
	map.iKey=rand()%(TOOTH_NUM);  //隨機缺牙位置
	smallone.position=rand()%(TOOTH_NUM);//隨機小東西位置
	srand(GetTickCount());
	for(int index=0; index<TOOTH_NUM; index++)
	{
		//分配下上部分地圖
		if(index==map.iKey)
		{
			//缺牙
			map.BottomSet[index].current_frame=rand()%(SHAPE_NUM-1); //current_frame為該位置的位圖編號
			map.TopSet[index].current_frame=((ALL_SHAPE_NUM - 2) - map.BottomSet[index].current_frame);
			//分配下部坐標
			map.BottomSet[index].x        = INIT_BOTTOM_X + index * TOOTH_WIDTH;
			map.BottomSet[index].y        = INIT_BOTTOM_y;
			map.BottomSet[index].velocity = iSpeed;
			map.BottomSet[index].counter  = 0;
			//分配上部坐標
			map.TopSet[index].x        = INIT_BOTTOM_X + index * TOOTH_WIDTH;
			map.TopSet[index].y        = INIT_BOTTOM_y - DISTANCE;
			map.TopSet[index].velocity = iSpeed;
			map.TopSet[index].counter  = 0;
		}
		else
		{
			//平牙
			map.BottomSet[index].current_frame=rand()%SHAPE_NUM; //current_frame為該位置的位圖編號
			map.TopSet[index].current_frame=((ALL_SHAPE_NUM - 1) - map.BottomSet[index].current_frame);
			//分配下部坐標
			map.BottomSet[index].x        = INIT_BOTTOM_X + index * TOOTH_WIDTH;
			map.BottomSet[index].y        = INIT_BOTTOM_y;
			map.BottomSet[index].velocity = iSpeed;
			map.BottomSet[index].counter  = 0;
			//分配上部坐標
			map.TopSet[index].x        = INIT_BOTTOM_X + index * TOOTH_WIDTH;
			map.TopSet[index].y        = INIT_BOTTOM_y - DISTANCE;
			map.TopSet[index].velocity = iSpeed;
			map.TopSet[index].counter  = 0;
		}
	}
	for(index=1; index<TOOTH_NUM; index++)
	{
		//對齊
		map.BottomSet[index].x-=index;
		map.TopSet[index].x-=index;
	}
	//init smallone
	smallone.x              = ( INIT_BOTTOM_X + smallone.position * TOOTH_WIDTH );
    smallone.y              = SMALLONE_INIT_y - map.BottomSet[smallone.position].current_frame * 30;               
    smallone.velocity       = iSpeed;
    smallone.current_frame  = 0;             
    smallone.counter        = 0; 

	return(1);
}

int Load_Bitmap_File(BITMAP_FILE_PTR bitmap, char *filename)
{
// this function opens a bitmap file and loads the data into bitmap

int file_handle,  // the file handle
    index;        // looping index

UCHAR   *temp_buffer = NULL; // used to convert 24 bit images to 16 bit
OFSTRUCT file_data;          // the file data information

// open the file if it exists
if ((file_handle = OpenFile(filename,&file_data,OF_READ))==-1)
   return(0);

// now load the bitmap file header
_lread(file_handle, &bitmap->bitmapfileheader,sizeof(BITMAPFILEHEADER));

// test if this is a bitmap file
if (bitmap->bitmapfileheader.bfType!=BITMAP_ID)
   {
   // close the file
   _lclose(file_handle);

   // return error
   return(0);
   } // end if

// now we know this is a bitmap, so read in all the sections

// first the bitmap infoheader

// now load the bitmap file header
_lread(file_handle, &bitmap->bitmapinfoheader,sizeof(BITMAPINFOHEADER));

// now load the color palette if there is one
if (bitmap->bitmapinfoheader.biBitCount == 8)
   {
   _lread(file_handle, &bitmap->palette,MAX_COLORS_PALETTE*sizeof(PALETTEENTRY));

   // now set all the flags in the palette correctly and fix the reversed 
   // BGR RGBQUAD data format
   for (index=0; index < MAX_COLORS_PALETTE; index++)
       {
       // reverse the red and green fields
       int temp_color                = bitmap->palette[index].peRed;
       bitmap->palette[index].peRed  = bitmap->palette[index].peBlue;
       bitmap->palette[index].peBlue = temp_color;
       
       // always set the flags word to this
       bitmap->palette[index].peFlags = PC_NOCOLLAPSE;
       } // end for index

    } // end if

// finally the image data itself
_lseek(file_handle,-(int)(bitmap->bitmapinfoheader.biSizeImage),SEEK_END);

// now read in the image, if the image is 8 or 16 bit then simply read it
// but if its 24 bit then read it into a temporary area and then convert
// it to a 16 bit image

if (bitmap->bitmapinfoheader.biBitCount==8 || bitmap->bitmapinfoheader.biBitCount==16 || 
    bitmap->bitmapinfoheader.biBitCount==24)
   {
   // delete the last image if there was one
   if (bitmap->buffer)
       free(bitmap->buffer);

   // allocate the memory for the image
   if (!(bitmap->buffer = (UCHAR *)malloc(bitmap->bitmapinfoheader.biSizeImage)))
      {
      // close the file
      _lclose(file_handle);

      // return error
      return(0);
      } // end if

   // now read it in
   _lread(file_handle,bitmap->buffer,bitmap->bitmapinfoheader.biSizeImage);

   } // end if
else
   {
   // serious problem
   return(0);

   } // end else

#if 0
// write the file info out 
printf("\nfilename:%s \nsize=%d \nwidth=%d \nheight=%d \nbitsperpixel=%d \ncolors=%d \nimpcolors=%d",
        filename,
        bitmap->bitmapinfoheader.biSizeImage,
        bitmap->bitmapinfoheader.biWidth,
        bitmap->bitmapinfoheader.biHeight,
		bitmap->bitmapinfoheader.biBitCount,
        bitmap->bitmapinfoheader.biClrUsed,
        bitmap->bitmapinfoheader.biClrImportant);
#endif

// close the file
_lclose(file_handle);

// flip the bitmap
Flip_Bitmap(bitmap->buffer, 
            bitmap->bitmapinfoheader.biWidth*(bitmap->bitmapinfoheader.biBitCount/8), 
            bitmap->bitmapinfoheader.biHeight);

// return success
return(1);

} // end Load_Bitmap_File

///////////////////////////////////////////////////////////

int Unload_Bitmap_File(BITMAP_FILE_PTR bitmap)
{
// this function releases all memory associated with "bitmap"
if (bitmap->buffer)
   {
   // release memory
   free(bitmap->buffer);

   // reset pointer
   bitmap->buffer = NULL;

   } // end if

// return success
return(1);

} // end Unload_Bitmap_File

///////////////////////////////////////////////////////////

int Flip_Bitmap(UCHAR *image, int bytes_per_line, int height)
{
// this function is used to flip bottom-up .BMP images

UCHAR *buffer; // used to perform the image processing
int index;     // looping index

// allocate the temporary buffer
if (!(buffer = (UCHAR *)malloc(bytes_per_line*height)))
   return(0);

// copy image to work area
memcpy(buffer,image,bytes_per_line*height);

// flip vertically
for (index=0; index < height; index++)
    memcpy(&image[((height-1) - index)*bytes_per_line],
           &buffer[index*bytes_per_line], bytes_per_line);

// release the memory
free(buffer);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
香港成人在线视频| 成人av影院在线| 国产精品一区二区三区四区| av色综合久久天堂av综合| 欧美久久久久久久久中文字幕| 精品国产电影一区二区| 亚洲成人在线免费| 成人高清视频在线| 日韩精品资源二区在线| 亚洲午夜影视影院在线观看| 国产成人av一区二区三区在线| 欧美日韩亚洲综合一区二区三区| 日本一区二区三区久久久久久久久不| 日韩精品电影在线| 在线观看免费亚洲| 中文字幕日韩精品一区| 国产经典欧美精品| 日韩三级视频在线看| 亚洲综合久久av| 91久久精品一区二区三区| 91美女片黄在线观看91美女| 欧美国产日本韩| 久久国产精品免费| 国产精品资源在线| 欧美精品一区二区三区蜜桃视频 | 亚洲免费在线播放| 成人精品免费看| 国产精品丝袜在线| 国产精品91一区二区| 久久久久久久久久看片| 久久99国产精品成人| 精品日韩一区二区| 久草精品在线观看| 久久尤物电影视频在线观看| 精品亚洲porn| 精品免费一区二区三区| 精品亚洲porn| 欧美韩日一区二区三区| 成人激情动漫在线观看| 国产精品青草综合久久久久99| 国产激情91久久精品导航| 久久新电视剧免费观看| 国产成人免费在线观看不卡| 国产三区在线成人av| 国产二区国产一区在线观看| 国产精品久线观看视频| av亚洲精华国产精华精| 一区二区三区久久| 欧美日韩aaaaaa| 麻豆精品一二三| 国产人成一区二区三区影院| 成人性生交大合| 亚洲黄色av一区| 91精品国产色综合久久不卡蜜臀| 美洲天堂一区二卡三卡四卡视频| 26uuu亚洲| 成人av片在线观看| 亚洲一区影音先锋| 日韩免费视频一区| 成人av免费观看| 亚洲一二三专区| 精品久久久久久久久久久久久久久 | 一区二区三区精品在线观看| 91精品久久久久久蜜臀| 国产一区二区精品久久91| 中文字幕在线观看不卡视频| 欧美日韩成人综合在线一区二区| 狠狠色狠狠色合久久伊人| 国产精品免费久久久久| 欧美日本视频在线| 丁香桃色午夜亚洲一区二区三区| 一区二区三区在线视频免费| 26uuu久久天堂性欧美| 91在线国内视频| 久久精品国产精品亚洲综合| 国产精品久久久久精k8| 成人天堂资源www在线| 午夜一区二区三区视频| 国产精品全国免费观看高清 | 欧美亚洲图片小说| 精品一区中文字幕| 亚洲综合无码一区二区| 中文字幕欧美国产| 日韩亚洲欧美综合| 欧美日韩亚洲国产综合| 成人动漫av在线| 精品一区二区三区在线视频| 亚洲高清一区二区三区| 亚洲欧美中日韩| 日本一区二区免费在线观看视频| 欧美伦理影视网| 97久久超碰国产精品| 国产91在线|亚洲| 国产一区二区精品久久99| 日韩激情视频网站| 一级女性全黄久久生活片免费| 国产精品麻豆久久久| 精品国产网站在线观看| 欧美日韩成人综合在线一区二区| 国产iv一区二区三区| 毛片不卡一区二区| 日韩综合小视频| 亚洲欧美日韩在线播放| 国产精品久久久久久久久久久免费看| 欧美成va人片在线观看| 在线电影院国产精品| 欧美日韩中文字幕一区二区| 99久久久无码国产精品| 成人18视频日本| 成人av动漫网站| 99久久精品免费看国产| 风流少妇一区二区| 成人天堂资源www在线| 成人少妇影院yyyy| 成人av片在线观看| 91免费观看国产| 日本精品一区二区三区四区的功能| www.成人网.com| 91蜜桃婷婷狠狠久久综合9色| jizzjizzjizz欧美| 99精品一区二区| 91国偷自产一区二区三区成为亚洲经典 | 麻豆91精品视频| 另类专区欧美蜜桃臀第一页| 日韩va欧美va亚洲va久久| 天堂成人国产精品一区| 亚洲18影院在线观看| 同产精品九九九| 青青草国产成人99久久| 久久99国产精品久久| 国产一区久久久| 91在线porny国产在线看| 91成人免费网站| 91麻豆精品国产91久久久久久久久 | ●精品国产综合乱码久久久久| 国产日韩欧美精品在线| ㊣最新国产の精品bt伙计久久| 日本不卡在线视频| 亚洲天堂av一区| 丝袜国产日韩另类美女| 国产在线一区观看| jlzzjlzz欧美大全| 91精品一区二区三区久久久久久| 久久精品网站免费观看| 欧美三级中文字| 久久久国产综合精品女国产盗摄| 国产精品成人一区二区艾草| 亚洲高清在线视频| 国产精品中文字幕一区二区三区| 97精品视频在线观看自产线路二| 欧美日韩一区精品| 久久精品夜色噜噜亚洲a∨| 亚洲一区视频在线| 福利一区二区在线观看| 在线91免费看| 中文字幕一区二区在线播放| 日韩精品欧美成人高清一区二区| 成人深夜在线观看| 日韩免费看的电影| 亚洲乱码国产乱码精品精的特点 | 97aⅴ精品视频一二三区| 在线看不卡av| 精品久久久三级丝袜| 亚洲日本免费电影| 国产一区亚洲一区| 欧美午夜精品一区二区蜜桃| 久久九九久久九九| 亚洲成人资源网| 91同城在线观看| 国产日韩欧美在线一区| 日韩在线一区二区三区| 91福利精品第一导航| 国产精品久久99| 国产乱人伦偷精品视频免下载| 在线亚洲高清视频| 欧美精彩视频一区二区三区| 捆绑紧缚一区二区三区视频| 91久久久免费一区二区| 国产日韩欧美电影| 免费观看在线综合| 欧美色男人天堂| 亚洲色图一区二区| 国产一区二区三区久久久| 欧美人狂配大交3d怪物一区| 国产精品成人免费精品自在线观看| 久久av老司机精品网站导航| 欧美日韩一本到| 亚洲五码中文字幕| 色视频成人在线观看免| 中文字幕在线观看不卡视频| 不卡一区二区三区四区| 亚洲国产精品二十页| 国产98色在线|日韩| 久久久不卡网国产精品二区| 精品一区二区三区香蕉蜜桃 | 亚洲欧美成aⅴ人在线观看| 国产精品456| 欧美国产日韩亚洲一区| 国产成人午夜视频| 国产亚洲美州欧州综合国|