1
kailuo 2010-09-04 02:36:52 +08:00
星际菜鸟路过一下。
|
2
Livid MOD 想到就赶快动手吧。结果会让你惊喜的。
|
3
mactive OP 先用GAE 做一个webApp 出来
整理的数据结构如下 unit_basic_information id name race life shield armor(basic+plus[After max upgrades]) movement cargo_size attributes unit_production producer hotkey requires(1个或多个建筑) cost (mineral,vesper)[100,50] supply build_time unit_combat upgrades weapon ability 需要成单独库的数据 attributes id,name,type(护甲厚度,护甲类型),is_Massive(巨型单位),is_Psionic(灵能单位) type eg:Light-Mechanical,Light-Biological,Armored-Biological,Biological-Psionic,Armored-Mechanical, Armored-Mechanical-Massive,Psionic,Light-Biological-Psionic,Armored-Mechanical-Psionic-Massive,(light轻甲 Armored重甲 Mechanical机械 Biological生物 massive厚重 Psionic灵能) unit_attributes 单位和属性关联的库 unit_id,attriabute_id ========================================== upgrades id,name,desc,hockey,cost(mineral,vesper),build_time,researcher,race eg: upgrade_name:Protoss Shields Level 3 upgrade_desc:Maximizes the shields of all Protoss units and structures. hockey:E cost:400,400 build_time:220 researcher: unit_upgrades 单位和升级关联的库 unit_id,upgrades_id ========================================== weapon id,name,target(攻击目标),range(攻击范围),speed(攻击速率),type(伤害类型),Deamage(伤害值 basic+plus) zealot eg:Psi Blades,Ground,Melee,Slow,Eviscerate(Melee),8+11 unit_weapon 单位和武器关联的库 unit_id,weapon_id ========================================== ablility id,name,desc,hockey,requires,cooldown zealot eg:charge,allow zealot to intercept…, C , Charge,10 unit_ablility 单位和技能关联的库 unit_id,ablility_id ========================================== 需要成define的数据 ['race'] terran,protoss,zerg ['movement'] very slow,slow,normal,fast,very fast |
4
mactive OP 其实星际2的所有对战数据都是公开的 所以想复制游戏逻辑并不难
web_version or mobile_version |
5
TheOnly92 2010-09-05 13:46:01 +08:00
支持!!
|
7
jiangxiaolei 2010-09-05 19:38:18 +08:00
关注下。
|
8
mactive OP 正在用php编写从 http://us.battle.net/sc2/en/game/race/ 中把数据逐一匹配进我的mysql数据库中
用的是 fgets(url) + 正则表达式 抓取和纠错可能会持续2天 话说还是官网的资料全,我的数据库将尽可能无限接近官网 但是官网没有建筑资料 我在gamespot上找到一份文本可能有用 还有翻译和多语种的思路没有展开 |
9
mactive OP |
10
mactive OP 刚搞定 TableView + NavigationController
数据暂时读取的 plist文件 , 将 plist 再程序中转为 NSDictionary 下一步应该就是 Core Data 了,将结构和操作流程搞定之后 应该就是UserInterface 的问题了 http://cl.ly/b9609e4e1d5f7fb5c570 还有几篇学习笔记 http://www.thinktube.net/blog/category/develop/ios/ |
11
yiyang 2010-09-30 10:19:30 +08:00
暴雪官方网站有相关数据吧
|
12
mactive OP |
13
jimmy 2010-09-30 10:47:21 +08:00
哇哇。
真羡慕Apple的用户,有没有Android版的? |
14
mactive OP Web版本 index_layout已经释出
http://img.ly/3VgB |
15
GordianZ MOD @mactive For the build order, there are some opensource projects already.
http://code.google.com/p/evolutionchamber/ http://code.google.com/p/sc2bof/ http://code.google.com/p/sc2-buildoptimizer/ |
16
mactive OP |