• <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>
            posts - 16,  comments - 81,  trackbacks - 0
             

            Lesson 2: 走向全屏

            From

            http://www.directxtutorial.com/tutorial9/b-direct3dbasics/dx9b2.aspx#still

            Translated By----Double One(王大寶)   dfghj77777@gmail.com
            Finished At 20101215

            筆者:自第一篇發出以來,已過一月。最近忙,翻譯有些耽擱,接下來我會保證一周至少一篇 ,謝謝大家的支持。

            課程概述

            Making your game fullscreen is easy, but requires changing a few details of the program, as well as adding a couple lines of code.

            In this lesson we will cover two things.  First, we will go over how to globalize your screen resolution and why you would do this.  Second, we'll cover the mechanics of making a window go into fullscreen mode.

            其實全屏化很容易,改幾行代碼就好,來死狗(Let’s Go)。

            在這一課中我們將介紹兩件事情。首先,我們將研究怎樣改變你的屏幕分辨率以及為什么要這么做。其次呢,我們捎帶介紹一下使窗口進入全屏模式的機制原理。

            設置屏幕尺寸

            Throughout your DirectX experience and in game programming you will come across many functions and structs that demand to know your screen size.  This can become a hassle when you decide to change the resolution later, and especially when you decide to change it during run-time.  For right now, we will cover a simple method to standardize your screen size across your program.

            在你的DirectX或者游戲編程經歷里你一定會碰到許多函數和結構體管你要屏幕尺寸,是的,這也許并不困難。可是當你要更改分辨率時麻煩就來了,尤其是你非得在運行的時候這么干?,F在,哥將給你介紹一個簡單的方法來規范你的程序的屏幕大小,這個方法非常簡單,但是非常的實用,而且,它只要九——百——九——十——八,還猶豫什么,趕緊往下看吧。

             

            First, we must add two directives to the top of our program.  These represent the screen width and the screen height.

            首先,我們在程序開頭添加兩個指令。這些代表了屏幕的寬度和屏幕的高度。

            1// define the screen resolution
            2#define SCREEN_WIDTH  800
            3#define SCREEN_HEIGHT 600
            4

             

            The next step is to go through your program to where you indicate the width and height of your window.  Up to this point in the tutorial, you only have one, although we will come across another in a minute.  Do this to the code (changes in bold):

            接下來,來到聲明窗口寬度和高度的地方。本教程到目前為止,只有一個聲明的地方,注意粗體那行:

             1hWnd = CreateWindowEx(NULL,
             2                          L"WindowClass",
             3                          L"Our Direct3D Program",
             4                          WS_OVERLAPPEDWINDOW,
             5                          300300,
             6                     SCREEN_WIDTH, SCREEN_HEIGHT,    // 設置新的尺寸 
             7NULL,
             8                          NULL,
             9                          hInstance,
            10                          NULL);
            11
             

            In a later lesson we will cover how to maintain screen size throughout your game after changing it during runtime.

            There are specific resolutions that are available on most PCs, the most common of which can be seen in this table.

            在后面的課上,我們將討論如在運行過程中改變屏幕尺寸后繼續游戲。
            這兒有張常見的分辨率表可以參考一下。

             

            [Table 2.1 - Common Screen Resolutions]更多信息請猛擊我

            Resolution

            Pixels

            Widescreen

            800 x 600

            480,000

            No

            1024 x 768

            786,432

            No

            1152 x 864

            995,328

            No

            1280 x 1024

            1,310,720

            No

            1600 x 1200

            1,920,000

            No

            1440 x 900

            1,296,000

            Yes

            1680 x 1050

            1,764,000

            Yes

            1920 x 1080

            2,073,600

            Yes

            1920 x 1200

            2,304,000

            Yes



             

            變成全屏模式

            When changing to full screen you are doing several things.  First, your are telling Windows not to apply any of the standard Windows borders to your window.  Second, you are telling Windows to have your window overlap all other things on the screen, including the start menu.  Third, you are telling DirectX to change the resolution of the monitor to your set preference.  Finally, although less importantly, you are telling Windows to leave the window background color up to you.

            The first two of these are handled by changing some CreateWindowEx() parameters.  The changes we need to make are shown here.

            切換到全屏的時候你要做這么幾件事兒。首先,你告訴Windows不要添加任何標準的Windows窗口邊框。其次,你告訴不要把其他Windows窗口蓋在我們的全屏游戲上,包括開始菜單。再次,你告訴DirectX的把顯示器的分辨率設置成我們要的值。最后,盡管這條不是那么重要,你得告訴Windows離開窗口時的背景色。
            前兩個處理通過改變一些CreateWindowEx()的參數。改動如下。

             1hWnd = CreateWindowEx(NULL,
             2                          L"WindowClass",
             3                          L"Our Direct3D Program",
             4                          WS_EX_TOPMOST | WS_POPUP,    // fullscreen values
             5                          00,    // the starting x and y positions should be 0
             6                          SCREEN_WIDTH, SCREEN_HEIGHT,
             7                          NULL,
             8                          NULL,
             9                          hInstance,
            10                          NULL);
            11

             

            Here we set the starting x and y positions to 0.  We also changed the previous parameter to "WS_EX_TOPMOST | WS_POPUP".  The WS_EX_TOPMOST is self-explanatory, and makes the window overlap everything else.  The WS_POPUP is less self-explanatory, but what it does is tell Windows to remove all borders of any kind, including the rounded-edge top that you see in Windows XP.

            在這里,我們設置xy的初始位置為0。我們還改變了第四個參數,將其設置為了“WS_EX_TOPMOST | WS_POPUP”。 WS_EX_TOPMOST顧名思義就是讓我們的全屏程序在桌面最頂層。WS_POPUP的作用是告訴Windows以消除任何形式的所有邊界,包括圓形的邊緣等窗口邊框,總之就是你所看到過的全屏游戲那樣。

             

            There is also a member of the WINDOWCLASSEX struct that we need to take out.  This leaves the background color untouched, which means it won't be visible as window for a second or two before the game starts (important to making your game look professional).

            還有一個WINDOWCLASSEX結構的成員,我們需要把它拿掉。它的作用是設置窗口背景色不,而這會使游戲全屏時屏幕閃爍幾下(把它拿掉會讓您的游戲看起來專業得多)。

            1 wc.hbrBackground = NULL;//(HBRUSH)COLOR_WINDOW;
             

            Next, we have to tell DirectX about our new screen resolution.  We do this by making a few changes to the d3dpp struct we built in the last lesson.  Let's look at what they are before we see what they do.

            下一步,我們來告訴DirectX一個新的屏幕分辨率。我們通過對上一課中創建的d3dpp結構體進行一些小小的改變來完成這項工作。下面讓我們看看具體代碼吧

             

             1D3DPRESENT_PARAMETERS d3dpp;    // create a struct to hold various device information
             2
             3    ZeroMemory(&d3dpp, sizeof(d3dpp));    // clear out the struct for use
             4    d3dpp.Windowed = FALSE;    // program fullscreen, not windowed
             5    d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD;    // discard old frames
             6    d3dpp.hDeviceWindow = hWnd;    // set the window to be used by Direct3D
             7    d3dpp.BackBufferFormat = D3DFMT_X8R8G8B8;    // set the back buffer format to 32-bit
             8    d3dpp.BackBufferWidth = SCREEN_WIDTH;    // set the width of the buffer
             9    d3dpp.BackBufferHeight = SCREEN_HEIGHT;    // set the height of the buffer
            10


             

            Let's examine these new back buffer related variables.

            下面我來解釋一下這些新的后臺緩沖相關變量

             

            d3dpp.BackBufferFormat

            This member is used to tell Direct3D what kind of pixels should be displayed.  There are six types that can be used here, but two of them are older types (16-bit) and not generally used anymore.  There are several 32-bit types that we can use.  We'll use the D3DFMT_X8R8G8B8.  See the table for a description along with some other values than can be used here (definitely not all of them).

            這個成員變量是用來告訴Direct3D什么樣的像素會被顯示??煞譃榱N ,但其中兩大類型太老了(16),一般不到。有432位的類型,我們可以使用。本課將使用D3DFMT_X8R8G8B8。想知道具體這個四個類型,可以看看下面的表。

             

            [Table 2.2 - Some Back Buffer Formats]

            描述

            D3DFMT_A8R8G8B8

            This is a 32-Bit pixel format, with 256 levels (8 bits) of red, green, blue and alpha (semi-transparency).

            這是一個32位的像素格式。有256(8bit)的紅,綠,藍以及透明通道。

            D3DFMT_X8R8G8B8

            This is similar to A8R8G8B8, with the one difference being that it does not support alpha, even though there are 8 bits to represent this.

            這個和上一個很類似,唯一的不同就是這個不支持透明

            D3DFMT_A2R10G10B10

            This is a 32-Bit pixel format, with only two bits of alpha, but 10 bits (1024 levels) of each red, green and blue.

            還是一個32位的像素格式。2bit的透明通道,10bit1024級)的紅綠藍通道。

            D3DFMT_A16B16G16R16

            64-BIT COLOR!  If you have the capability to run 64-bit color, I'd recommend playing around with this to see how it works.
            64bit
            的!哦這太棒了。如果你可以運行64位的顏色,我強烈推薦你使用這個
            This value has 16 bits for each component (65536 levels compared to the current measly 256!)

            紅綠藍加透明各占16bit65536級)。

             

            BackBufferWidth and BackBufferHeight

            These two members indicate the width and height of the back buffer.  Painfully simple.

            這兩個成員變量表明后備緩沖區的寬度和高度。相當簡單

            最終成品

            So, there isn't much to change.  Let's take a look at the whole picture and see what is different and what is the same.

            所以,其實沒改動多少。讓我們看一看整個代碼,并對比上一課什么是不同的,什么是一樣的。


             

            There isn't really a point in me showing a screenshot of this program's result, because it would just be a blue rectangle.  Your program should look like that: a blue rectangle with a mouse pointer in the middle.

            我沒有做截圖,因為它只是一個藍色的長方形。你的程序應該也看起來像他一樣:藍色的長方形充鼠標指針在中間。

            總結

            Great!  We now have a simple platform on which to build games.

            Before you go on, I recommend doing the following exercise to gain familiarity with the code in this program:

            Change the resolution of the program until you are familiar with the various resolutions selectable.

            When you're ready to go on, let's hit the next lesson!

            太棒了!我們現在有一個簡單的平臺做游戲?! ?/span>

            在你接著干之前,我建議做做這幾個練習一遍更好地熟悉Direct3D:  

            改變程序的分辨率,直到你熟悉各種各樣可選擇的分辨率。

            當你準備好了,我們開始下一個教程。

             

            Next Lesson:  An Overview of the Third Dimension

            下一課:三維的概述

             

            GO! GO! GO!

             

            posted on 2010-12-15 23:54 叫我老王吧 閱讀(2374) 評論(0)  編輯 收藏 引用 所屬分類: DierectX 、C++
            <2010年10月>
            262728293012
            3456789
            10111213141516
            17181920212223
            24252627282930
            31123456

            常用鏈接

            留言簿(4)

            隨筆分類

            隨筆檔案

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            怡红院日本一道日本久久| 久久精品国产69国产精品亚洲| 国产成人久久精品区一区二区| 亚洲国产天堂久久久久久| 国产成人精品久久亚洲| 国产叼嘿久久精品久久| 丁香五月综合久久激情| 国产精品激情综合久久| 国内精品久久久久久久涩爱| 青青热久久综合网伊人| 91精品国产91久久久久久蜜臀| 久久99精品国产99久久6男男| 97超级碰碰碰久久久久| 久久亚洲欧美日本精品| 国产精品青草久久久久福利99| 久久99精品国产99久久6男男| 亚洲国产成人久久精品影视 | 国产精品免费看久久久| 久久国产高潮流白浆免费观看| 久久人人爽人人爽人人AV东京热 | 久久久噜噜噜久久中文字幕色伊伊| 久久精品这里只有精99品| 亚洲v国产v天堂a无码久久| 模特私拍国产精品久久| 亚洲精品乱码久久久久66| 久久久精品人妻一区二区三区四| 国产精品久久国产精麻豆99网站| 久久综合欧美成人| 亚洲欧美一区二区三区久久| 久久国产精品无码一区二区三区 | 亚洲国产成人乱码精品女人久久久不卡 | 国产精品热久久毛片| 久久这里只精品99re66| 精品久久久噜噜噜久久久| 久久久国产精品| 久久夜色精品国产噜噜麻豆| 国产精品伦理久久久久久| 天天爽天天狠久久久综合麻豆| 久久精品国产亚洲欧美| 一本大道久久东京热无码AV| 久久不射电影网|