Location:
Search - 游戏架构与设计
Search list
Description: 本游戏是微软SMART PHONE平台下的手机游戏,由于平台的特殊性,所以在游戏的架构和设计上既要符合游戏的特点,又要考虑到与设计其他PC游戏的不同。难点在于手机资源是很有限的,不能直接从设计PC游戏的架构直接搬到SMART PNONE游戏上,架构设计的变化是必然的。在本游戏中我们提出了一套全新的设计架构,充分考虑到了C#语言的特点,以及.NET平台的优点。在架构中摈弃了以前手机游戏设计中,虽然采用面向对象开发但是没有充分利用面向对象的不足,大量采用了当前先进的设计模式
-the game is Microsoft SMART PHONE platform mobile phone game, due to the special nature of platform, Therefore, the structure of the game and is designed to meet the characteristics of the game, also take into account the design of the other PC games are different. The difficulty lies in cell phone resources are very limited. not directly from the design of PC games moved to the structure of direct SMART PNONE game, Architecture Design changes are inevitable. In this game, we proposed a new set of design framework, taking fully into account the C# language features, and.NET platform advantages. Discard the framework of the previous mobile phone games design, Although object-oriented development but did not take full advantage of object-oriented inadequate, lot of the current advanced des
Platform: |
Size: 2363606 |
Author: 张立荣 |
Hits:
Description: 游戏开发基础:游戏架构设计与策划 游戏运营管理 游戏开发基础-程序
-based game development : game design and planning framework for game operators in the development of games based management-procedures
Platform: |
Size: 7927 |
Author: yz |
Hits:
Description: 论文描述了作者所学习过的游戏设计的几个方面,也是游戏设计中最常用的技术。首先对游戏的概念及其发展过程做了整体的描述;接着介绍了游戏设计的基本思路、架构与规划、游戏剧情等游戏策划方面的内容;随后对贴图、动画、物理动作模拟、消息管理、人工智能等方面以Visual C++为例做了一些描述 还以“俄罗斯方块”游戏为例,具体讨论了实现游戏编程的方法,如游戏界面框架的创建、背景显示、方块的控制和显示、成绩和排名等;最后是总结与展望。
Platform: |
Size: 440037 |
Author: jhm |
Hits:
Description: 游戏架构与设计,英文名Game architecture and design,比较经典,网上也很不好找。
Platform: |
Size: 8663322 |
Author: programebager@126.com |
Hits:
Description: 第一部分 Android简介
第1章 快速入门.............. 3
1.1 安装工具...... 3
1.1.1 Java 5.0+.... 3
1.1.2 Eclipse.......... 4
1.1.3 Android....... 4
1.1.4 Eclipse插件..................... 5
1.2 创建第一个程序.... 7
1.3 在模拟器上运行程序............... 8
1.4 在手机上运行程序..................... 9
1.5 快速阅读指南.......... 9
第2章 基本概念........... 11
2.1 Android的系统架构................ 11
2.1.1 Linux内核..................... 11
2.1.2 本机库...... 12
2.1.3 Android运行时......... 13
2.1.4 应用程序框架........... 14
2.1.5 应用程序 15
2.2 它还活着... 15
2.2.1 进程不等于应用程序......... 16
2.2.2 应用程序生命周期............... 17
2.3 构建块......... 19
2.3.1 活动............ 19
2.3.2 意图............ 19
2.3.3 服务............ 19
2.3.4 内容提供者................. 19
2.4 使用资源... 20
2.5 安全性......... 20
2.6 快速阅读指南....... 21
第二部分 Android基础知识
第3章 设计用户界面..................... 25
3.1 数独游戏简介....... 25
3.2 声明性设计............. 26
3.3 创建启动界面....... 27
3.4 使用替代资源....... 34
3.5 实现About对话框..................... 37
3.6 应用主题... 41
3.7 添加菜单... 43
3.8 添加设置... 45
3.9 开始新游戏............. 47
3.10 利用日志消息调试程序... 48
3.11 利用调试器调试程序......... 50
3.12 退出游戏 50
3.13 快速阅读指南.... 50
第4章 绘制2D图形...................... 53
4.1 Android图形基础...................... 53
4.1.1 Color类... 53
4.1.2 Paint类... 54
4.1.3 Canvas类 55
4.1.4 Path类...... 55
4.1.5 Drawable类................. 56
4.2 在Sudoku程序中添加图形............... 58
4.2.1 开始游戏 58
4.2.2 定义Game类................. 58
4.2.3 定义PuzzleView类............... 60
4.2.4 绘制游戏盘面........... 61
4.2.5 绘制数字 63
4.3 处理输入... 65
4.3.1 定义和更新选定区域......... 66
4.3.2 输入数字 68
4.3.3 增加提示 69
4.3.4 抖动屏幕 70
4.4 其他问题... 71
4.4.1 创建软键盘................. 71
4.4.2 实现游戏逻辑........... 76
4.4.3 其他功能 78
4.5 更多改进... 80
4.6 快速阅读指南....... 81
第5章 多媒体. 83
5.1 播放音频... 83
5.2 播放视频... 88
5.3 为数独游戏配上音乐............ 92
5.4 快速阅读指南....... 94
第6章 存储本地数据..................... 95
6.1 为数独游戏添加选项............ 95
6.2 继续玩前一个游戏.................. 97
6.3 记住当前位置....... 99
6.4 访问内部文件系统............... 100
6.5 访问SD卡.............. 101
6.6 快速阅读指南.... 103
第三部分 高级主题
第7章 互联的世界. 107
7.1 通过意图实现浏览............... 108
7.2 利用视图打开网页............... 111
7.3 JavaScript与Java通信.......... 115
7.4 使用Web服务..... 121
7.5 快速阅读指南.... 131
第8章 定位与环境感知........... 133
8.1 位置,位置,位置............... 133
8.1.1 我在哪里.................... 135
8.1.2 更新位置.................... 137
8.1.3 模拟说明.................... 138
8.2 充分利用传感器..................... 139
8.2.1 了解传感器.............. 139
8.2.2 解析传感器的读数............ 140
8.2.3 模拟说明.................... 140
8.3 地图功能 141
8.3.1 嵌入MapView........... 142
8.3.2 准备就绪.................... 145
8.3.3 模拟说明.................... 146
8.4 快速阅读指南.... 147
第9章 SQL实战...... 149
9.1 SQLite简介........... 149
9.2 SQL基础 150
9.2.1 DDL语句.................... 151
9.2.2 修改语句.................... 151
9.2.3 查询语句.................... 151
9.3 你好,数据库.... 152
9.3.1 使用SQliteOpenHelper 153
9.3.2 定义主程序.............. 155
9.3.3 添加一行.................... 156
9.3.4 运行一个查询........ 157
9.3.5 显示查询结果........ 158
9.4 数据绑定 159
9.5 使用ContentProvider...... 162
9.5.1 更改主程序.............. 164
9.5.2 添加一行.................... 164
9.5.3 运行一个查询........ 165
9.6 实现ContentProvider...... 165
9.7 快速阅读指南.... 166
第10章 利用OpenGL实现3D图形.............. 169
10.1 理解3D图形..... 169
10.2 OpenGL简介.... 170
10.3 构建一个OpenGL程序... 171
10.4 管理线程............. 173
10.5 构建一个模型. 178
10.6 光线、相机…….................. 181
10.7 动作......... 183
10.8 应用纹理............. 184
10.9 透明效果............. 187
10.10 快速阅读指南..................... 189
第四部分 附录
附录A Java与Android语言及其API.......... 193
附录B 参考书目........ 197
Platform: |
Size: 13578541 |
Author: pumaxy |
Hits:
Description: 本游戏是微软SMART PHONE平台下的手机游戏,由于平台的特殊性,所以在游戏的架构和设计上既要符合游戏的特点,又要考虑到与设计其他PC游戏的不同。难点在于手机资源是很有限的,不能直接从设计PC游戏的架构直接搬到SMART PNONE游戏上,架构设计的变化是必然的。在本游戏中我们提出了一套全新的设计架构,充分考虑到了C#语言的特点,以及.NET平台的优点。在架构中摈弃了以前手机游戏设计中,虽然采用面向对象开发但是没有充分利用面向对象的不足,大量采用了当前先进的设计模式
-the game is Microsoft SMART PHONE platform mobile phone game, due to the special nature of platform, Therefore, the structure of the game and is designed to meet the characteristics of the game, also take into account the design of the other PC games are different. The difficulty lies in cell phone resources are very limited. not directly from the design of PC games moved to the structure of direct SMART PNONE game, Architecture Design changes are inevitable. In this game, we proposed a new set of design framework, taking fully into account the C# language features, and.NET platform advantages. Discard the framework of the previous mobile phone games design, Although object-oriented development but did not take full advantage of object-oriented inadequate, lot of the current advanced des
Platform: |
Size: 2363392 |
Author: 张立荣 |
Hits:
Description: 论文描述了作者所学习过的游戏设计的几个方面,也是游戏设计中最常用的技术。首先对游戏的概念及其发展过程做了整体的描述;接着介绍了游戏设计的基本思路、架构与规划、游戏剧情等游戏策划方面的内容;随后对贴图、动画、物理动作模拟、消息管理、人工智能等方面以Visual C++为例做了一些描述 还以“俄罗斯方块”游戏为例,具体讨论了实现游戏编程的方法,如游戏界面框架的创建、背景显示、方块的控制和显示、成绩和排名等;最后是总结与展望。-Paper describes the authors studied several aspects of game design, game design is the most commonly used technology. First, the concept of the game and its development process so the overall description then introduces the basic idea of game design, architecture and planning, games, games and story planning aspects subsequent maps, animation, physical action simulation, information management , artificial intelligence and so on to Visual C++ done some described as an example also of Tetris game as an example, discussed the realization of the game programming methods, such as the creation of the framework of the game interface, the background shows that box control and display results and ranking, etc. the last is a summary of and prospects.
Platform: |
Size: 439296 |
Author: jhm |
Hits:
Description: 要谈论的不是数独游戏的算法,而是我写这个游戏所用到的架构和面各对象技术。在这里与大家分享,希望对初学者在软件的设计方面有所帮助。这个游戏的设计方面也有不足之处,请多批评指正-Not to talk about sudoku algorithm, but I wrote the game used by the target architecture and noodle technology. To share with you here and hope for beginners in the software design help. The design of the game for their inadequacies, please criticism
Platform: |
Size: 332800 |
Author: mosquito |
Hits:
Description: 不是数独游戏的算法,而是我写这个游戏所用到的架构和面各对象技术。在这里与大家分享,希望对初学者在软件的设计方面有所帮助。-Sudoku is not the algorithm, but I wrote the game used by the target architecture and noodle technology. To share with you here and hope for beginners in the software design help.
Platform: |
Size: 332800 |
Author: editasp |
Hits:
Description: 实现J2ME的手机游戏开发,帮助初学者了解手机游戏开发与设计的架构。-The realization of the development of J2ME mobile phone games, cell phone games to help beginners understand the structure and design of development.
Platform: |
Size: 458752 |
Author: 何永海 |
Hits:
Description: 《三维游戏引擎设计与实现》一书中的光盘源码,该书结合作者自主设计并多次获得国家级科研项目资助的CAP引擎的具体设计与实现,介绍三维游戏引擎及其开发过程。《三维游戏引擎设计与实现》具体介绍了蔚戏引擎的构架、三维场景管理模块的设计、渲染器的设计、骨骼动画的设计、粒子特效及编辑器的设计、GUI其编辑器的设计、输入输出模块的设计、网络模块的设计、音效模块的设计、人工智能模块的设计以及引擎总体架构等方西的内容。CAP引擎由C++语言编写,配套光盘中附有该引擎的所有源代码和若干相关的DEM0,以及引擎设计的参考文档。-Design and Implementation " 3D Game Engine Design and Implementation of a book, CD-ROM source, combined with the author of the book independently designed and won several national research projects funded CAP engine, introduced a three-dimensional game engine and its development process. 3D Game Engine Design and Implementation " Intro Wei play engine architecture, the design of the three-dimensional scene management module, the design of the renderer, the design of the skeletal animation, particle effects, and editor of the design, GUI design editor, enter output module design, the design of the network module, sound module design, artificial intelligence module design as well as engine overall structure of the West side. CAP engine by C++ language written supporting CD-ROM with all the source code for the engine and several related DEM0, as well as the engine design reference document.
Platform: |
Size: 34925568 |
Author: xiaobo |
Hits: