• <ul id="i8a0a"><pre id="i8a0a"></pre></ul>
      <ul id="i8a0a"><pre id="i8a0a"></pre></ul>
      <ul id="i8a0a"><pre id="i8a0a"></pre></ul>
      <strike id="i8a0a"><rt id="i8a0a"></rt></strike>
      論文格式
      電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
      機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
      制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結 |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學網 |
      搜索 高級搜索

      當前位置:論文格式網 -> 畢業論文 -> 計算機論文
      畢業論文標題:

      三維俄羅斯方塊程序設計與實現

       本文ID:LWGSW13551 價格:收費積分/100
      掃一掃 掃一掃
      本站會員可自行下載:下載地址 三維俄羅斯方塊程序設計與實現 (收費:1000 積分)  

      論文字數:11928,頁數:37  有開題報告,任務書

      摘    要

       隨著三維圖形技術的發展,3D游戲能創造更加真實、絢麗、壯觀的虛擬世界,帶給玩家更真實、強烈的視覺沖擊,電腦游戲目前正朝著三維空間、智能化、網絡化等多方向發展。 因此早期的很多二維游戲在如今多姿多彩的三維游戲中已經黯然失色,如果能給在早期的二維游戲中加入三維和更多的游戲元素,便能給它帶來更多新鮮活力。
       俄羅斯方塊是電腦游戲發展史中早期最為經典的游戲之一,經常能在掌上游戲機、手機以及電腦上見到這個游戲。不過,以往常見的俄羅斯方塊游戲是二維平面上的,并且大多以黑白的形式出現,當然在電腦上可以看到多中顏色的俄羅斯方塊。
       本課題在學習和研究DirectX 3D技術上,設計并實現三維空間的俄羅斯方塊。該程序實現了俄羅斯方塊的基本功能,如移動、變形、消行等,在程序中運用了3D粒子系統實現簡單的飄雪場景,這樣使得游戲不再單調,除此之外,在程序的渲染過程中使用了Vertex Shader技術,使用它來代替了固定渲染管道的頂點轉換和光照計算,按我們自己的方式處理頂點和光照。

      關鍵詞:俄羅斯方塊;Vertex Shader;3D粒子系統;矩陣變換

       programming and realization of 3-dimensional Russia block
      Abstract
      With the development of 3-dimensional graphics technology, 3 D game can create a more real ,florid and spectacular world, bring the real, intense impingement to
      players , computer games are developing to multidimensional, intellectualized, network-relation at present. Therefore many two-dimensional games seem eclipsed compare to the varied and graceful three-dimensional games , if we can change these two-dimensional games to three-dimensional and add more game element, these two-dimensional games maybe become vigorous.
      The Russia block is one of most classical early game in the phylogeny of computer game , this game often can be seen on the palm game machine , mobile telephone and computer. However, in the past Russia block games are two-dimensional, and mostly just have two color, black and white。
      the goal of this task is to  study and research 3D graphics technologies and the knowledge of the DirectX, then to design and realize the game of three-dimensional Russia block, This program has realized the fundamental functions of Russia block, such as moving , transforming , disappearing lines and so on, and create a snowing sense that make the game no longer monotony with a 3D particle system , besides, it use the Vertex Shader technology in process of rendering objects in the game, with this technology, we can produce the vertexes and pixels in our own way, rather then transforming and lighting vertexes in fixed function pipeline which use the fixed method to produce vertexes and pixels and the effect is not what we want。
      Keywords: Russia block; Vertex Shader; 3D particle system; Matrix transform
      目    錄
      1 緒論 5
      1.1 課題背景及目的 5
      1.2 國內外研究狀況 6
      1.3 論文構成及研究內容 8
      2 系統分析 9
      2.1 應解決的問題 9
      2.2 實現環境與技術 9
      2.3 系統性能需求 10
      2.4 系統功能需求 10
      3 系統設計思想與總體設計 10
      3.1 游戲控制設計 10
      3.1.1 按鍵設定 11
      3.1.2 視角控制 11
      3.1.3 移動及形變控制 11
      3.2 程序功能設計 12
      3.2.1 方塊的構造 12
      3.2.2 方塊的碰撞檢測 15
      3.2.3 方塊的變形 15
      4 圖像渲染技術簡介 17
      4.1 頂點及像素著色器 17
      4.1.1 頂點及像素著色器簡介 17
      4.1.2 頂點及像素著色器的運用 18
      4.2 3D粒子系統 20
      4.2.1 3D粒子系統介紹 20
      4.2.2 3D粒子系統應用 21
      5 系統實現 28
      5.1 系統基本功能實現 28
      5.2 環境映射貼圖 30
      5.3 飄雪場景實現 31
      6 實驗結果 32
      結論 35
      致謝 35
      參考文獻 36


      相關論文
      本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:通用查詢器的設計與實現 下一篇:軟件開發計劃與任務管理系統的設..
      Tags:三維 俄羅斯 方塊 程序設計 實現 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文
    • <strike id="giaek"></strike>
    • <samp id="giaek"></samp>