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

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

?? demo12_2.cpp

?? 游戲的聲音圖像演示程序
?? CPP
字號:
// DEMO12_2.CPP - tracking demo
// to compile make sure to include DDRAW.LIB, DSOUND.LIB,
// DINPUT.LIB, WINMM.LIB, and of course 
// T3DLIB1.CPP,T3DLIB2.CPP,T3DLIB3.CPP,

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

#define INITGUID

#define WIN32_LEAN_AND_MEAN  

#include <windows.h>   // include important windows stuff
#include <windowsx.h> 
#include <mmsystem.h>
#include <iostream.h> // 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>  // directX includes
#include <dsound.h>
#include <dmksctrl.h>
#include <dmusici.h>
#include <dmusicc.h>
#include <dmusicf.h>
#include <dinput.h>
#include "T3DLIB1.h" // game library includes
#include "T3DLIB2.h"
#include "T3DLIB3.h"
// DEFINES ////////////////////////////////////////////////

// defines for windows 
#define WINDOW_CLASS_NAME "WINXCLASS"  // class name

#define WINDOW_WIDTH    320   // size of window
#define WINDOW_HEIGHT   240

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

// game console
int Game_Init(void *parms=NULL);
int Game_Shutdown(void *parms=NULL);
int Game_Main(void *parms=NULL);

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

HWND main_window_handle           = NULL; // save the window handle
HINSTANCE main_instance           = NULL; // save the instance
char buffer[80];                          // used to print text

BITMAP_IMAGE background_bmp;   // holds the background

BOB          bat,              // the ai bat bob
             ghost;            // the player ghost bob

static int ghost_anim[] = {0,1,2,1}; // animation sequence for ghost

int bat_sound_id  = -1,        // sound of bat flapping wings
    wind_sound_id = -1;        // the ambient wind

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

LRESULT CALLBACK WindowProc(HWND hwnd, 
						    UINT msg, 
                            WPARAM wparam, 
                            LPARAM lparam)
{
// this is the main message handler of the system
PAINTSTRUCT	ps;		   // used in WM_PAINT
HDC			hdc;	   // handle to a device context

// what is the message 
switch(msg)
	{	
	case WM_CREATE: 
        {
		// do initialization stuff here
		return(0);
		} break;

    case WM_PAINT:
         {
         // start painting
         hdc = BeginPaint(hwnd,&ps);

         // end painting
         EndPaint(hwnd,&ps);
         return(0);
        } break;

	case WM_DESTROY: 
		{
		// kill the application			
		PostQuitMessage(0);
		return(0);
		} break;

	default:break;

    } // end switch

// process any messages that we didn't take care of 
return (DefWindowProc(hwnd, msg, wparam, lparam));

} // end WinProc

// WINMAIN ////////////////////////////////////////////////

int WINAPI WinMain(	HINSTANCE hinstance,
					HINSTANCE hprevinstance,
					LPSTR lpcmdline,
					int ncmdshow)
{
// this is the winmain function

WNDCLASS winclass;	// this will hold the class we create
HWND	 hwnd;		// generic window handle
MSG		 msg;		// generic message
HDC      hdc;       // generic dc
PAINTSTRUCT ps;     // generic paintstruct

// first fill in the window class stucture
winclass.style			= CS_DBLCLKS | CS_OWNDC | 
                          CS_HREDRAW | CS_VREDRAW;
winclass.lpfnWndProc	= WindowProc;
winclass.cbClsExtra		= 0;
winclass.cbWndExtra		= 0;
winclass.hInstance		= hinstance;
winclass.hIcon			= LoadIcon(NULL, IDI_APPLICATION);
winclass.hCursor		= LoadCursor(NULL, IDC_ARROW);
winclass.hbrBackground	= (HBRUSH)GetStockObject(BLACK_BRUSH);
winclass.lpszMenuName	= NULL; 
winclass.lpszClassName	= WINDOW_CLASS_NAME;

// register the window class
if (!RegisterClass(&winclass))
	return(0);

// create the window, note the use of WS_POPUP
if (!(hwnd = CreateWindow(WINDOW_CLASS_NAME, // class
						  "Tracking demo",	 // title
						  WS_POPUP | WS_VISIBLE,
					 	  0,0,	   // x,y
						  WINDOW_WIDTH,  // width
                          WINDOW_HEIGHT, // height
						  NULL,	   // handle to parent 
						  NULL,	   // handle to menu
						  hinstance,// instance
						  NULL)))	// creation parms
return(0);

// save the window handle and instance in a global
main_window_handle = hwnd;
main_instance      = hinstance;

// perform all game console specific initialization
Game_Init();

// enter main event loop
while(1)
	{
	if (PeekMessage(&msg,NULL,0,0,PM_REMOVE))
		{ 
		// test if this is a quit
        if (msg.message == WM_QUIT)
           break;
	
		// translate any accelerator keys
		TranslateMessage(&msg);

		// send the message to the window proc
		DispatchMessage(&msg);
		} // end if
    
    // main game processing goes here
    Game_Main();

	} // end while

// shutdown game and release all resources
Game_Shutdown();

// return to Windows like this
return(msg.wParam);

} // end WinMain

// T3D GAME PROGRAMMING CONSOLE FUNCTIONS ////////////////

int Game_Init(void *parms)
{
// this function is where you do all the initialization 
// for your game

int index; // looping variable

// start up DirectDraw (replace the parms as you desire)
DDraw_Init(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP);

// load background image
Load_Bitmap_File(&bitmap8bit, "GHOSTBACK.BMP");
Create_Bitmap(&background_bmp,0,0,640,480);
Load_Image_Bitmap(&background_bmp, &bitmap8bit,0,0,BITMAP_EXTRACT_MODE_ABS);
Set_Palette(bitmap8bit.palette);
Unload_Bitmap_File(&bitmap8bit);

// load the bat bitmaps
Load_Bitmap_File(&bitmap8bit, "BATS8_2.BMP");

// create bat bob
Create_BOB(&bat,320,200, 16,16, 5, BOB_ATTR_MULTI_FRAME | BOB_ATTR_VISIBLE, DDSCAPS_SYSTEMMEMORY);
Set_Anim_Speed_BOB(&bat, 2);

// load the bat in 
for (index=0; index < 5; index++)
    Load_Frame_BOB(&bat, &bitmap8bit, index, index, 0, BITMAP_EXTRACT_MODE_CELL);

// unload bat
Unload_Bitmap_File(&bitmap8bit);

// load the ghost bitmaps
Load_Bitmap_File(&bitmap8bit, "GHOSTS8.BMP");

// create ghost bob
Create_BOB(&ghost,100,200, 64,100, 3, BOB_ATTR_MULTI_ANIM | BOB_ATTR_VISIBLE, DDSCAPS_SYSTEMMEMORY);
Set_Anim_Speed_BOB(&ghost, 10);

// load the ghost in 
for (index=0; index < 3; index++)
    Load_Frame_BOB(&ghost, &bitmap8bit, index, index, 0, BITMAP_EXTRACT_MODE_CELL);

// unload ghost
Unload_Bitmap_File(&bitmap8bit);

// set animation for ghost
Load_Animation_BOB(&ghost, 0, 4, ghost_anim);

// set the animation
Set_Animation_BOB(&ghost,0);

// initialize directinput
DInput_Init();

// acquire the keyboard only
DInput_Init_Keyboard();

// initilize DirectSound
DSound_Init();

// load background sounds
bat_sound_id = DSound_Load_WAV("BAT.WAV");
wind_sound_id = DSound_Load_WAV("WIND.WAV");

// start the sounds
DSound_Play(bat_sound_id, DSBPLAY_LOOPING);
DSound_Play(wind_sound_id, DSBPLAY_LOOPING);

// set clipping rectangle to screen extents so objects dont
// mess up at edges
RECT screen_rect = {0,0,screen_width,screen_height};
lpddclipper = DDraw_Attach_Clipper(lpddsback,1,&screen_rect);

// hide the mouse
ShowCursor(FALSE);

// return success
return(1);

} // end Game_Init

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

int Game_Shutdown(void *parms)
{
// this function is where you shutdown your game and
// release all resources that you allocated

// shut everything down

// kill all the bobs
Destroy_BOB(&bat);
Destroy_BOB(&ghost);

// shutdown directdraw last
DDraw_Shutdown();

// now directsound
DSound_Stop_All_Sounds();
DSound_Shutdown();

// shut down directinput
DInput_Shutdown();

// return success
return(1);
} // end Game_Shutdown


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

void Bat_AI(void)
{
// this function performs the bat ai

// do tracking algorithm

// first x-axis    
if (ghost.x > bat.x)
   bat.x+=2;
else
if (ghost.x < bat.x)
   bat.x-=2;

// now y-axis
if (ghost.y > bat.y)
   bat.y+=2;
else
if (ghost.y < bat.y)
   bat.y-=2;

// check boundaries
if (bat.x >= SCREEN_WIDTH)
   bat.x = -bat.width;
else
if (bat.x < -bat.width)
   bat.x = SCREEN_WIDTH;

if (bat.y >= SCREEN_HEIGHT)
   bat.y = -bat.height;
else
if (bat.y < -bat.height)
   bat.y = SCREEN_HEIGHT;

} // end Bat_AI

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

int Game_Main(void *parms)
{
// this is the workhorse of your game it will be called
// continuously in real-time this is like main() in C
// all the calls for you game go here!

int index; // looping var

// start the timing clock
Start_Clock();

// clear the drawing surface
DDraw_Fill_Surface(lpddsback, 0);

// lock back buffer and copy background into it
DDraw_Lock_Back_Surface();

// draw background
Draw_Bitmap(&background_bmp, back_buffer, back_lpitch,0);

// unlock back surface
DDraw_Unlock_Back_Surface();

// read keyboard
DInput_Read_Keyboard();

// call the bat AI
Bat_AI();

// the animate the bat
Animate_BOB(&bat);

// draw the bat
Draw_BOB(&bat, lpddsback);

// allow player to move
if (keyboard_state[DIK_RIGHT])
   ghost.x+=4;
else
if (keyboard_state[DIK_LEFT])
   ghost.x-=4;

if (keyboard_state[DIK_UP])
   ghost.y-=4;
else
if (keyboard_state[DIK_DOWN])
   ghost.y+=4;

// test if player is off screen, if so wrap around
if (ghost.x >= SCREEN_WIDTH)
   ghost.x = -ghost.width;
else
if (ghost.x < -ghost.width)
   ghost.x = SCREEN_WIDTH;

if (ghost.y >= SCREEN_HEIGHT)
   ghost.y = -ghost.height;
else
if (ghost.y < -ghost.height)
   ghost.y = SCREEN_HEIGHT;

// the animate the ghost
Animate_BOB(&ghost);

// draw the ghost
Draw_BOB(&ghost, lpddsback);

// draw title
Draw_Text_GDI("GOING BATS! - Tracking Demo",10, 10,RGB(0,255,0), lpddsback);

// flip the surfaces
DDraw_Flip();

// sync to 30ish fps
Wait_Clock(30);

// check of user is trying to exit
if (KEY_DOWN(VK_ESCAPE) || keyboard_state[DIK_ESCAPE])
    {
    PostMessage(main_window_handle, WM_DESTROY,0,0);

    // stop all sounds
    DSound_Stop_All_Sounds();

    // do a screen transition
    Screen_Transitions(SCREEN_REDNESS,NULL,0);

    } // end if

// return success
return(1);

} // end Game_Main

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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产片一区二区| 精品不卡在线视频| 成人免费不卡视频| 国产中文一区二区三区| 久久99蜜桃精品| 黄色精品一二区| 成人在线一区二区三区| 99re成人在线| 欧美性淫爽ww久久久久无| 欧美日韩精品高清| 日韩精品一区二区三区中文精品| 日韩免费电影网站| 国产午夜精品一区二区| 中文字幕亚洲欧美在线不卡| 亚洲视频每日更新| 午夜婷婷国产麻豆精品| 精品影视av免费| 成人av在线电影| 在线观看亚洲一区| 日韩欧美区一区二| 国产精品久久久久国产精品日日| 亚洲精品乱码久久久久久久久| 亚洲一区二区视频在线观看| 日韩中文字幕91| 国v精品久久久网| 91精品91久久久中77777| 91精品午夜视频| 欧美国产禁国产网站cc| 亚洲6080在线| 粉嫩aⅴ一区二区三区四区五区| 波多野结衣中文字幕一区二区三区| 在线视频中文字幕一区二区| 日韩一区二区三区电影| 综合网在线视频| 久久狠狠亚洲综合| 色婷婷av一区二区三区之一色屋| 日韩午夜中文字幕| 亚洲人精品午夜| 国产在线播放一区| 在线不卡的av| 国产精品久久久久aaaa| 美女视频免费一区| 色综合久久中文字幕综合网| 久久久久久电影| 午夜亚洲国产au精品一区二区| 国产福利一区二区三区在线视频| 欧美色图在线观看| 国产精品久久久久9999吃药| 免费的成人av| 欧美一区三区四区| 亚洲一区电影777| 色综合激情五月| 中文字幕视频一区| 成人福利电影精品一区二区在线观看| 欧美日韩高清影院| 一区二区三区精品在线| 成人国产视频在线观看| 久久久午夜电影| 国产一区二区免费在线| 精品少妇一区二区三区免费观看| 五月天中文字幕一区二区| 色婷婷激情久久| 一区二区三区加勒比av| 色悠久久久久综合欧美99| 中文字幕乱码一区二区免费| 国产成人综合亚洲网站| 久久精品亚洲精品国产欧美kt∨| 日本成人在线看| 欧美精品一卡二卡| 亚洲444eee在线观看| 欧美老肥妇做.爰bbww视频| 亚洲成人先锋电影| 欧美日免费三级在线| 丝袜美腿亚洲色图| 欧美一区午夜精品| 美女在线观看视频一区二区| 欧美tk丨vk视频| 国产乱码精品一区二区三区av | 成人99免费视频| 国产精品午夜久久| aaa国产一区| 亚洲男人的天堂网| 欧美日韩中字一区| 亚洲成av人片在线观看| 欧美一区二区人人喊爽| 蜜臀av一区二区在线观看| 欧美videossexotv100| 国产成人在线免费观看| 中文字幕不卡一区| 99国产精品国产精品久久| 亚洲精品乱码久久久久久黑人| 欧美日韩成人激情| 国产在线精品国自产拍免费| 国产精品青草久久| 欧美制服丝袜第一页| 喷白浆一区二区| 久久久高清一区二区三区| 91小视频在线观看| 日韩高清不卡一区二区| 久久精品在线观看| 色悠久久久久综合欧美99| 婷婷国产v国产偷v亚洲高清| 国产午夜三级一区二区三| 91国偷自产一区二区三区观看| 午夜a成v人精品| 久久免费视频色| 在线观看区一区二| 国内欧美视频一区二区| 一二三区精品福利视频| 精品三级在线观看| 欧洲日韩一区二区三区| 国产精品18久久久久久vr| 一区二区三区中文字幕| 久久久一区二区| 欧美男人的天堂一二区| 国产成人综合自拍| 日韩国产成人精品| 亚洲欧美日韩久久| 日韩免费一区二区| 欧洲激情一区二区| 国产a区久久久| 久久99久国产精品黄毛片色诱| 日韩理论在线观看| 国产亚洲一区字幕| 4hu四虎永久在线影院成人| 91在线视频观看| 东方aⅴ免费观看久久av| 丝袜美腿亚洲色图| 一区二区三区国产精品| 欧美国产丝袜视频| 久久亚洲春色中文字幕久久久| 欧洲亚洲国产日韩| 91在线观看下载| 懂色av噜噜一区二区三区av| 精品在线视频一区| 美女一区二区三区在线观看| 亚洲一区二区在线播放相泽 | 国产精品亚洲一区二区三区妖精| 亚洲大片精品永久免费| 亚洲精品高清在线观看| 国产精品久久久久久久久免费相片 | 日韩激情视频网站| 亚洲精品国产a| 尤物在线观看一区| 亚洲免费高清视频在线| 日韩一区欧美一区| 国产日产精品一区| 日本一区二区免费在线观看视频 | 国产一区二区中文字幕| 久久精品国产亚洲aⅴ | 国产精品色噜噜| 日本一区二区三区在线不卡| 久久久不卡网国产精品二区| 欧美成人三级在线| 亚洲精品一区二区在线观看| 26uuu精品一区二区在线观看| 日韩美女主播在线视频一区二区三区 | 亚洲在线观看免费视频| 亚洲小说欧美激情另类| 韩日欧美一区二区三区| 蜜桃91丨九色丨蝌蚪91桃色| 麻豆免费看一区二区三区| 麻豆成人免费电影| 国产成人午夜电影网| 成人黄色小视频| 91黄色激情网站| 制服丝袜亚洲播放| 日韩欧美一区中文| 国产欧美日韩精品一区| 亚洲日本在线天堂| 日本vs亚洲vs韩国一区三区| 国产在线视视频有精品| 99国产精品一区| 欧美精品高清视频| 久久久99精品久久| 一区二区三区在线免费| 男女激情视频一区| 东方欧美亚洲色图在线| 色综合久久综合中文综合网| 制服丝袜在线91| 亚洲国产精品精华液2区45| 亚洲午夜精品网| 国产一区二区主播在线| 91福利在线看| 亚洲精品一区二区三区99| 亚洲欧美日韩国产一区二区三区| 香蕉影视欧美成人| 成人性生交大片免费看视频在线| 欧美视频你懂的| 国产精品视频你懂的| 日韩专区中文字幕一区二区| 国产黄色精品网站| 制服丝袜一区二区三区| 国产精品久久久久久久久久久免费看 | 精品视频免费看| 国产日韩欧美不卡在线| 五月天网站亚洲| 91在线视频在线| 亚洲精品中文在线观看| 国产电影一区二区三区|