青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

天行健 君子當自強而不息

創建游戲內核(1) 【接口與實現分離版】

 
關于該內核的細節說明請參考創建游戲內核(1),這個版本主要是按功能劃分模塊的思想,并嚴格按照接口與實現相分離的原則來寫的,沒有用面向對象的思想來寫,沒有繼承沒有多態。大家可以對比兩個版本,比較優劣。

以下是游戲框架的接口:

/*************************************************************************
PURPOSE:
    Defines for main window framework.
*************************************************************************/


#ifndef _CORE_FRAMEWORK_H_
#define _CORE_FRAMEWORK_H_

extern HWND g_hwnd;

typedef BOOL (*FRAMEWORK_FUNC)();

BOOL build_window(HINSTANCE inst, 
const char* class_name, const char* caption, 
                  DWORD style, DWORD x_pos, DWORD y_pos, DWORD width, DWORD height);

void run_game(FRAMEWORK_FUNC do_init, FRAMEWORK_FUNC do_frame, FRAMEWORK_FUNC do_shutdown);

HINSTANCE get_window_inst();
void get_class_name(char* class_name, int length);

#endif

接著是游戲框架的實現:

/*************************************************************************
PURPOSE:
    Implenents for main window framework.
*************************************************************************/


#include "core_common.h"
#include "core_framework.h"
#include "window_func.h"

HWND g_hwnd;

//-----------------------------------------------------------------------------
// The message procedure.
//-----------------------------------------------------------------------------
LRESULT CALLBACK window_proc(HWND hwnd, UINT msg_id, WPARAM w_param, LPARAM l_param)
{
    
switch(msg_id)
    {
    
case WM_DESTROY:
        PostQuitMessage(0);
        
return 0;
    }

    
return DefWindowProc(hwnd, msg_id, w_param, l_param);
}

//-----------------------------------------------------------------------------
// Register window aclas, create window and show it.
//-----------------------------------------------------------------------------
BOOL build_window(HINSTANCE inst, const char* class_name, const char* caption, 
                  DWORD style, DWORD x_pos, DWORD y_pos, DWORD width, DWORD height)
{    
    WNDCLASSEX win_class;

    
// create window class and register it
    win_class.cbSize        = sizeof(win_class);
    win_class.style         = CS_CLASSDC;
    win_class.lpfnWndProc   = window_proc;
    win_class.cbClsExtra    = 0;
    win_class.cbWndExtra    = 0;
    win_class.hInstance     = inst;
    win_class.hIcon         = LoadIcon(NULL, IDI_APPLICATION);
    win_class.hCursor       = LoadCursor(NULL, IDC_ARROW);
    win_class.hbrBackground = NULL;
    win_class.lpszMenuName  = NULL;
    win_class.lpszClassName = class_name;
    win_class.hIconSm       = LoadIcon(NULL, IDI_APPLICATION);

    
if(! RegisterClassEx(&win_class))
        
return FALSE;
    
    
// create the main window
    g_hwnd = CreateWindow(class_name, caption, style, x_pos, y_pos, width, height, NULL, NULL, inst, NULL);

    
if(g_hwnd == NULL)
        
return FALSE;

    ShowWindow(g_hwnd, SW_NORMAL);
    UpdateWindow(g_hwnd);

    
return TRUE;
}

//-----------------------------------------------------------------------------
// Run game framework.
//-----------------------------------------------------------------------------
void run_game(FRAMEWORK_FUNC do_init, FRAMEWORK_FUNC do_frame, FRAMEWORK_FUNC do_shutdown)
{
    MSG msg;

    
// intialize game
    if(! do_init())
        
return;

    
// start message pump, waiting for signal to quit.
    ZeroMemory(&msg, sizeof(MSG));

    
while(msg.message != WM_QUIT)
    {
        
if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
        
        
// draw a frame
        if(! do_frame())
            
break;
    }

    
// run shutdown function
    do_shutdown();

    
// get window class name
    char class_name[MAX_PATH];
    get_class_name(class_name, 
sizeof(class_name));

    
// unregister window class
    UnregisterClass(class_name, get_window_inst());
}

//-----------------------------------------------------------------------------
// Return window instnace.
//-----------------------------------------------------------------------------
HINSTANCE get_window_inst()
{
    
return GetModuleHandle(NULL);
}

//-----------------------------------------------------------------------------
// Get window class name.
//-----------------------------------------------------------------------------
void get_class_name(char* class_name, int length)
{
    GetClassName(g_hwnd, class_name, length);
}


這是公共頭文件core_common.h的定義:

/**************************************************
PURPOSE:
    Include common game core header file.
**************************************************/


#ifndef _CORE_COMMON_H_
#define _CORE_COMMON_H_

#define DIRECTINPUT_VERSION 0x0800

// Windows includes
#include <windows.h>

// Standard ANSI-C includes
#include <stdio.h>

// DirectX includes
#include <d3d9.h>
#include <d3dx9.h>
#include <dmusici.h>
#include <dsound.h>
#include <dplay8.h>
#include <dpaddr.h>
#include <dinput.h>
#include <dshow.h>
#include <dxfile.h>

#pragma warning(disable : 4996)

#define release_com(x) { if(x) { x->Release(); x = NULL; } }

#endif
 

我還將公用的windows窗口操作函數封裝在了1個文件中:

/***********************************************************************************
PURPOSE:
    Interface for windows draw.
***********************************************************************************/


void show_error_msg(BOOL is_fatal, char* text, );
void move_window(HWND hwnd, long x_pos, long y_pos);
void resize_window(HWND hwnd, long width, long height);
long get_client_width(HWND hwnd);
long get_client_height(HWND hwnd);
long get_window_width(HWND hwnd);
long get_window_height(HWND hwnd);

/***********************************************************************************
PURPOSE:
    Capsulates for windows draw.
***********************************************************************************/


#include <windows.h>
#include <stdio.h>
#include <
string.h>

#pragma warning(disable : 4996)

//-----------------------------------------------------------------------------
// Show error message box.
//-----------------------------------------------------------------------------
void show_error_msg(BOOL is_fatal, char* text, )
{
    
char caption_text[12];
    
char error_text[2048];
    va_list valist;

    
// Build the message box caption based on fatal flag
    strcpy(caption_text, is_fatal ? "Fatal error" : "error");

    
// Build variable text buffer
    va_start(valist, text);
    vsprintf(error_text, text, valist);
    va_end(valist);

    
// display the message box
    MessageBox(NULL, error_text, caption_text, MB_OK | MB_ICONEXCLAMATION);

    
// Post a quit message if error was fatal.
    if(is_fatal)
        PostQuitMessage(0);
}

//-----------------------------------------------------------------------------
// move window to new position.
//-----------------------------------------------------------------------------
void move_window(HWND hwnd, long x_pos, long y_pos)
{
    RECT client_rect;

    GetClientRect(hwnd, &client_rect);
    MoveWindow(hwnd, x_pos, y_pos, client_rect.right, client_rect.bottom, TRUE);
}

//-----------------------------------------------------------------------------
// Resize window to new width and height.
//-----------------------------------------------------------------------------
void resize_window(HWND hwnd, long width, long height)
{
    RECT window_rect, client_rect;
    
long new_window_width, new_window_height;

    
// Retrieves the dimensions of the bounding rectangle of the specified window. 
    // The dimensions are given in screen coordinates that are relative to the upper-left corner of the screen. 
    GetWindowRect(hwnd, &window_rect);

    
// Retrieves the coordinates of a window's client area. 
    // 
    // The client coordinates specify the upper-left and lower-right corners of the client area.
    // Because client coordinates are relative to the upper-left corner of a window's client area, 
    // the coordinates of the upper-left corner are (0,0). 
    GetClientRect(hwnd, &client_rect);

    new_window_width  = (window_rect.right - window_rect.left) - client_rect.right + width;
    new_window_height = (window_rect.bottom - window_rect.top) - client_rect.bottom + height;

    
// Changes the position and dimensions of the specified window. 
    // 
    // For a top-level window, the position and dimensions are relative to the upper-left corner of the screen. 
    // For a child window, they are relative to the upper-left corner of the parent window's client area. 
    MoveWindow(hwnd, window_rect.left, window_rect.top, new_window_width, new_window_height, TRUE);
}

//-----------------------------------------------------------------------------
// Get window client width.
//-----------------------------------------------------------------------------
long get_client_width(HWND hwnd)
{
    RECT client_rect;

    GetClientRect(hwnd, &client_rect);

    
return (client_rect.right - client_rect.left);
}

//-----------------------------------------------------------------------------
// Get window client height.
//-----------------------------------------------------------------------------
long get_client_height(HWND hwnd)
{
    RECT client_rect;

    GetClientRect(hwnd, &client_rect);

    
return (client_rect.bottom - client_rect.top);
}

//-----------------------------------------------------------------------------
// Get window width.
//-----------------------------------------------------------------------------
long get_window_width(HWND hwnd)
{
    RECT window_rect;

    GetWindowRect(hwnd, &window_rect);

    
return (window_rect.right - window_rect.left);
}

//-----------------------------------------------------------------------------
// Get window height.
//-----------------------------------------------------------------------------
long get_window_height(HWND hwnd)
{
    RECT window_rect;

    GetWindowRect(hwnd, &window_rect);

    
return (window_rect.bottom - window_rect.top);
}
 

posted on 2007-09-30 23:56 lovedday 閱讀(299) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


公告

導航

統計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            毛片一区二区三区| 欧美成年人视频网站欧美| 亚洲人成网站在线观看播放| 久久一区中文字幕| 亚洲国产另类 国产精品国产免费| 久久亚洲影音av资源网| 狼狼综合久久久久综合网| 精品成人一区二区| 亚洲高清视频在线| 欧美精品国产精品| 亚洲主播在线| 欧美亚洲综合另类| 在线观看成人av| 亚洲人成人一区二区在线观看| 欧美理论在线| 亚洲欧美日本国产有色| 午夜久久美女| 亚洲国产成人porn| 夜久久久久久| 精品动漫3d一区二区三区免费版| 欧美激情视频一区二区三区免费 | 欧美韩国在线| 中国女人久久久| 欧美一级久久| 亚洲九九精品| 亚洲欧美国产高清| 亚洲成人在线观看视频| 99视频有精品| 1024精品一区二区三区| 亚洲精选成人| 在线播放中文一区| 亚洲色图在线视频| 亚洲激情六月丁香| 亚洲免费在线视频| 99日韩精品| 欧美一二区视频| 日韩午夜av| 久久精品国产免费| 亚洲免费视频一区二区| 猛干欧美女孩| 久久久人人人| 国产精品久久久久久久久搜平片 | 久久av资源网站| 欧美激情视频在线播放| 久久精彩视频| 欧美午夜激情视频| 亚洲福利视频一区| 国产一区免费视频| 亚洲午夜小视频| 99re6这里只有精品| 久久亚洲精品一区二区| 久久精品国产77777蜜臀 | 欧美在线日韩| 亚洲欧美日韩在线播放| 欧美国产免费| 欧美国产视频一区二区| 精品99一区二区| 久久超碰97人人做人人爱| 亚洲一区二区三区在线播放| 欧美成人午夜激情| 麻豆精品91| 永久免费毛片在线播放不卡| 欧美中文日韩| 久久亚洲精品视频| 国产亚洲综合性久久久影院| 亚洲你懂的在线视频| 性色av一区二区三区红粉影视| 欧美性大战久久久久| 亚洲毛片视频| 亚洲无线视频| 国产精品福利网站| 亚洲一区二区在线| 欧美一级欧美一级在线播放| 国产精品日韩精品欧美在线| 亚洲自拍都市欧美小说| 欧美一站二站| 国模大胆一区二区三区| 久久久国产精品一区二区三区| 久久久久久亚洲精品中文字幕| 极品少妇一区二区| 女人香蕉久久**毛片精品| 亚洲电影视频在线| 夜夜夜久久久| 国产精品久久久久久久久免费桃花| 亚洲一区视频在线| 久久久久免费观看| 亚洲黄色性网站| 欧美精品久久一区| 亚洲一区二区三区免费观看| 久久福利资源站| 亚洲国产欧美精品| 欧美日韩国产成人高清视频| 亚洲一二三级电影| 久久综合九色99| 亚洲伦理在线观看| 国产精品毛片| 久色婷婷小香蕉久久| 亚洲美女精品一区| 欧美在线www| 亚洲国产午夜| 国产精品久久久久aaaa九色| 欧美一区二区在线免费播放| 亚洲国产影院| 久久精品色图| 亚洲最新中文字幕| 国内成+人亚洲+欧美+综合在线| 欧美fxxxxxx另类| 亚洲嫩草精品久久| 亚洲人体大胆视频| 久久av一区二区三区漫画| 亚洲日韩欧美视频一区| 国产精品午夜久久| 欧美激情成人在线| 久久精品一本| 中国成人黄色视屏| 亚洲风情亚aⅴ在线发布| 欧美在线播放| 亚洲小说欧美另类婷婷| 亚洲第一天堂无码专区| 欧美午夜影院| 欧美日本亚洲韩国国产| 久久精品国语| 午夜性色一区二区三区免费视频| 亚洲国产美女| 欧美成人资源网| 久久亚洲免费| 久久精品国产亚洲高清剧情介绍| 亚洲手机在线| 99精品欧美一区二区三区综合在线| 国内一区二区三区在线视频| 欧美性猛交xxxx乱大交蜜桃| 欧美精品在线视频观看| 老牛嫩草一区二区三区日本| 欧美中文字幕| 欧美在线网站| 午夜精品久久久久久久99樱桃| 国产精品99久久久久久久vr| 亚洲精选一区| 亚洲国内精品| 亚洲日韩欧美视频| 亚洲电影观看| 亚洲精美视频| 亚洲乱码精品一二三四区日韩在线| 欧美高清hd18日本| 免费看亚洲片| 欧美韩日一区二区| 亚洲国产99| 亚洲精品偷拍| 国产精品99久久久久久人| 中文高清一区| 亚洲综合国产精品| 午夜亚洲福利在线老司机| 亚洲欧美国产高清| 欧美一区1区三区3区公司| 欧美一区三区二区在线观看| 欧美在线国产精品| 久久影院午夜论| 你懂的亚洲视频| 欧美激情亚洲视频| 欧美三级在线视频| 国产伦精品一区二区三区高清 | 麻豆成人综合网| 欧美mv日韩mv国产网站app| 欧美国产一区二区在线观看| 欧美日韩国产色综合一二三四| 欧美日韩在线三区| 国产精品一区视频网站| 国内揄拍国内精品少妇国语| 在线欧美日韩| 亚洲视频在线观看三级| 欧美诱惑福利视频| 欧美大片免费观看在线观看网站推荐| 欧美激情亚洲精品| 亚洲视频一区二区| 日韩视频中文字幕| 亚洲免费小视频| 性欧美精品高清| 欧美成人官网二区| 国产精品美女一区二区在线观看| 国产精品看片你懂得| 精品电影在线观看| 亚洲一区二区三区高清 | 一区二区三区四区五区视频 | 国产一区高清视频| 最新日韩在线视频| 欧美一区三区二区在线观看| 久热精品在线| av成人手机在线| 蜜臀av性久久久久蜜臀aⅴ| 欧美性视频网站| 亚洲经典一区| 欧美在线啊v| 亚洲精选中文字幕| 久久久人成影片一区二区三区| 欧美三级欧美一级| 亚洲人成久久| 久久亚洲一区二区| 一区二区三区四区国产| 美女爽到呻吟久久久久| 国产无一区二区|