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

天行健 君子當自強而不息

游戲中物件的定義與使用(2)

 

本篇是游戲中物件的定義與使用(1)的續篇。

 

因為每個物件都被分類以便與另外的物件區分開來,所以并不是所有的信息都是必須的,劍具有殺傷力,而護甲則提供保護,因此沒有必要去混合損傷與防御的數據。

需要將每個物件進行分類,以便游戲引擎可以使用它們,每種類別的物件都被加以編號(1是武器,2是護甲,以此類推)。每種類型都有一個相關的價值,如物件的等級指數(攻擊或防御)、特定用途、治愈值或損傷值,以及一個附屬的腳本。是的,物件可以使用腳本增強它們的能力。除了所附屬的腳本外,還可以使用一個變量去表示所有的值,如等級指數、治愈值等。

TIP

You can use an enumerator value to represent the categories in the sItem structure:

enum ItemCategories { WEAPON=0,ARMOR,SHIELD,HEALING,OTHER };

游戲中的每個物件都是有價值的,為每個物件指定一個貨幣價值可以幫助玩家在購買或出售物件時確定它的價格,相同的物件售出的價格通常比購買的價格稍低。

有時并不希望玩家能夠出售某件物品,例如一個非常重要的魔術物件。一個標志位就能夠起到這樣的作用,而且還可以添加其他更多的標志位。

將每個標志表示為一個enum數值(最多32個標志),設置、清除、或檢查一個標志,可以使用隨后的宏(在宏的使用中,v代表物件的標志變量,而f代表了該標志):

enum {
  SELLABLE = 0, // Bit 0
  CANDROP, // Bit 1
  USEONCE, // Bit 2
  UNKNOWN // Bit 3
};

#define SetItemFlag(v,f) (v |= (1 << f))
#define ClearItemFlag(v,f) (v &= ~(1 << f))
#define CheckItemFlag(v,f) (v & (1 << f))

// Example using macros and flags
long ItemFlags = 0;

// Set item flags to sellable and item can be dropped
SetItemFlag(ItemFlags, SELLABLE);
SetItemFlag(ItemFlags, CANDROP);

// Check if the item is dropable and display a message
if(CheckItemFlag(ItemFlags, CANDROP))
  MessageBox(NULL, “Can Drop Item”, “Item”, MB_OK);

ClearItemFlag(ItemFlags, SELLABLE); // Clear sellable flag

 

使用限制

游戲中的某些角色可能不能使用某個特定的物件。例如一個魔法師,他不可能揮舞一把巨大的戰斧,而一個野蠻人則不可能施展法術。在這種情況下,特定的角色只能被允許去使用特定的物件,所以需要指定角色類別的使用限制。

NOTE

A character class is a classification or grouping of characters based on their race or profession. For example,
all humans belong to the same class, but to be more specific, human fighters are considered a
separate class from human wizards (or just fighters and wizards—who says they all have to be human).

To represent the usage restrictions of an item, another variable is introduced to the
sItem structure, one that tracks 32 bits of information. Each bit represents a single
class, which means that you can track up to 32 classes. If an item is usable by a certain
class, that respective bit is set; if an item is restricted in use by the character’s
class, the appropriate bit is cleared.


Here’s the addition to the sItem structure, which handles usage restrictions:


long Usage; // Usage restrictions
// ... other sItem data


To make setting, clearing, and retrieving a usage restriction class bit easier, you can
use the following macros (v represents the flag variable, and c is the class number
ranging from 0 to 31):

#define SetUsageBit(v,c) (v |= (1 << c))
#define ClearUsageBit(v,c) (v &= ((~(1 << c))
#define CheckUsageBit(v,c) (v & (1 << c))

// Examples using macros
long Flags = 0;

SetUsageBit(Flags, 5); // Set class 5 bit

if(CheckUsageBit(Flags, 5)) // Check class 5 bit
      MessageBox(NULL, “Usage Set”, “Bit”, MB_OK);

ClearUsageBit(Flags, 5); // Clear class 5 bit


Using the preceding macros (SetUsageBit, ClearUsageBit, and CheckUsageBit), you can
quickly check whether a character is allowed to use or equip the item based on his
character class. For example, this game places wizards in class 1 and fighters in
class 2. When the wizard tries to equip a broadsword (one that has the class 1 bit
clear), the game engine informs the player that the wizard cannot use the item.

為了使物件能夠更加靈活通用,可以為物件附上腳本。無論是使用療傷藥,或是在戰斗中使用劍,或者玩家啟用了某種特定的物件(例如使用魔杖),每當一個物體被使用時,它的腳本也被觸發。

最終的物件結構定義如下:

enum ItemCategories
{
    MONEY = 0,
    WEAPON,
    ARMOR,
    SHIELD,
    ACCESSORY,
    EDIBLE,
    HEALING,
    COLLECTION,
    TRANSPORTATION,
    CONTAINER,
    OTHER 
};

#define set_bit(v, c)   ((v) |= (1 << (c)))
#define clear_bit(v, c) ((v) &= ~(1 << (c)))
#define check_bit(v, c) ((v) & (1 << (c)))

enum 
{
    SELLABLE = 0,   
// bit 0
    CANDROP,        // bit 1
    USEONCE,        // bit 2
    UNKNOWN         // bit 3
};

typedef 
struct sItem
{
    
char    name[32];               // a short name for the item
    char    desc[128];              // a desciption of item
    float   weight;                 // weight (in lbs.)
    float   size;                   // size (in cubic feet)
    long    category;               // category of item
    long    value;                  // modifier, health increase, etc.
    long    price;                  // buying price of item
    long    flags;                  // item bit flags
    long    usage;                  // usage restrictions

    
char    script_filename[16];    // .mls script filename
    char    mesh_filename[16];      // .x mesh filename
    char    image_filename[16];     // .bmp image filename
} *sItemPtr;

 

With the complete sItem structure in place, it’s time to get back to building the
sword item. Say that the sword item uses a +10 modifier on damage (which means
that you add 10 to the damage factor in combat). The sword normally sells for 200
monetary units in the game, and only fighter classes (class two) can use it:


// Character class definitions
#define WIZARD 1
#define WARRIOR 2

sItem Sword = {
  “Sword”, “A big heavy sword”, // name and description
    5.0f, 4.0f, // weight and size
    WEAPON, 200, SELLABLE | CANDROP, // category, price, and flags
   (1 << WARRIOR), // usage class 2 (warrior)
 “”, “Sword.x”, “Sword.bmp” // Script, mesh, image files
};


Now that the sword item is defined, you can use it in the game. But what good is a single
item? Your game world is going to be packed with items! How can you possibly deal with all
those objects?

 

主物件列表

游戲中的每個物件都需要被定義,同時為了使事情保持簡潔,需要在主物件列表(master item list,MIL)中記錄所有物件的描述。可以將MIL想象成一個物件的目錄,如下圖所示,每個物件都進行編號以便引用,同時每種物件僅顯示一個。

每當需要一個新物件時,或者需要檢索指定物件的屬性特征時,可以搜索MIL。在一個基本的層面上,游戲的MIL可以被存儲為sItem結構的數組,或一個順序文件,它由物件結構的列表所組成,如下圖所示:

 

構造MIL

The following code bit creates a small item structure that contains the item’s name,
weight, and size. You will use this structure to construct a simple MIL:


typedef struct sItem
{
    char Name[32]; // Name of item
    float Weight; // Weight (in lbs.)
    float Size; // Size (in cubic ft.)
};

From here, say that you want to store five items in the MIL, all represented in an
array of sItem structures:

sItem Items[5] = {
   { “Big Sword”, 5.0f, 4.0f },
   { “Small Sword”, 2.0f, 2.0f },
   { “Magic Wand”, 0.5f, 1.0f },
   { “Rock”, 1.0f, 0.5f },
   { “Potion”, 0.5f, 0.5f }
};

Now that you have defined your MIL (using an array of sItem structures), you may want
to save the list out to a file for later retrieval. Such is the case if you are using a separate
program that creates the MIL file for you, much like the program you’ll see in the
upcoming section, “Using the MIL Editor.” As for here, take a look at the following bit
of code that will create a file (called items.mil) and save the Items array to the file:


FILE *fp=fopen(“items.mil”, “wb”);

for(short i=0;i<5;i++)
fwrite(&Items[i], 1, sizeof(sItem), fp);

fclose(fp);

 

Although short and to the point, the preceding example for creating a MIL file
is wholly unusable in a real-world application such as a role-playing game. Item
descriptions need to contain much more information, and you could theoretically
work with thousands of items. Doing all that by hand is a waste of time. What you
need is an item editor to help you create and maintain the MIL . . . and, so, behold
the MIL Editor.


posted on 2007-11-06 00:34 lovedday 閱讀(901) 評論(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>
            亚洲欧洲综合| 久久先锋影音| 欧美二区在线播放| 欧美成人dvd在线视频| 男人的天堂亚洲在线| 欧美国产日韩亚洲一区| 亚洲日本va午夜在线电影| 亚洲国产成人精品久久久国产成人一区| 欧美激情久久久| 99视频精品全国免费| 午夜日韩福利| 欧美成人在线免费观看| 蜜桃精品久久久久久久免费影院| 亚洲一区二区三区精品在线| 亚洲欧美日韩久久精品| 久久福利毛片| 欧美日本精品| 激情婷婷亚洲| 亚洲午夜小视频| 欧美不卡一区| 亚洲欧美日韩视频一区| 欧美成人免费全部| 国产日本亚洲高清| 夜夜精品视频一区二区| 看片网站欧美日韩| 这里只有视频精品| 米奇777超碰欧美日韩亚洲| 国产精品日韩精品| 亚洲黄色片网站| 久久激情视频久久| 日韩网站免费观看| 久久综合久久久久88| 国产伦精品一区二区三区视频黑人 | 在线视频欧美精品| 模特精品在线| 久久成人免费网| 国产精品亚洲аv天堂网| 亚洲精品久久久一区二区三区| 久久九九免费视频| 亚洲欧美精品一区| 国产精品久久久久毛片软件 | 亚洲精品资源| 牛牛影视久久网| 欧美一区精品| 国产视频欧美| 香蕉免费一区二区三区在线观看 | 久久午夜视频| 久久国产精品电影| 国产资源精品在线观看| 亚洲欧美日韩综合一区| 亚洲美女在线视频| 欧美日韩91| 在线视频你懂得一区| 亚洲国产女人aaa毛片在线| 乱中年女人伦av一区二区| 在线观看亚洲专区| 欧美大胆人体视频| 老司机午夜精品视频| 在线观看一区| 欧美激情一区二区三区| 欧美 日韩 国产一区二区在线视频| 影音先锋亚洲精品| 榴莲视频成人在线观看| 久久天天躁夜夜躁狠狠躁2022 | 久久综合国产精品| 亚洲免费观看高清完整版在线观看熊 | 国产精品日韩久久久| 亚洲图片欧美一区| 亚洲免费观看在线观看| 国产精品久久看| 久久国产精品久久国产精品| 性做久久久久久久久| 黑人巨大精品欧美一区二区小视频 | 欧美在线网站| 亚洲国产精品一区二区第一页| 欧美大片免费观看在线观看网站推荐| 久久久久久色| 亚洲精品孕妇| 亚洲一区二区三区在线观看视频| 国产精品视频精品视频| 久久精品水蜜桃av综合天堂| 久久精品观看| 一区二区国产日产| 午夜精品一区二区三区在线播放| 极品av少妇一区二区| 亚洲精品视频免费在线观看| 国产精品久久久久9999高清| 久久视频一区| 欧美激情1区2区| 欧美中文在线视频| 欧美高清视频| 久久精品主播| 欧美日韩国产综合新一区| 久久九九久久九九| 欧美另类在线播放| 久久久久久久网站| 欧美三级网址| 欧美大片第1页| 国产精品色在线| 亚洲人成绝费网站色www| 国产美女精品免费电影| 亚洲国产视频一区二区| 国产九区一区在线| 日韩午夜在线| 亚洲欧洲中文日韩久久av乱码| 亚洲综合久久久久| 一区二区三区久久久| 久久这里有精品15一区二区三区| 亚洲欧美综合精品久久成人| 欧美区一区二| 亚洲国产成人久久综合一区| 国产一区二区三区直播精品电影| 99re8这里有精品热视频免费 | 亚洲美女在线一区| 亚洲欧美日韩在线观看a三区| 亚洲黄色免费网站| 久久一区亚洲| 久久精品一区二区| 国产精品一区二区在线| 日韩亚洲在线观看| 一区二区高清在线观看| 欧美高清视频一二三区| 欧美成人69| 永久免费精品影视网站| 久久精品一区二区三区四区 | 亚洲福利国产| 亚洲成人在线网| 久久爱另类一区二区小说| 久久久久国产精品www| 国产酒店精品激情| 亚洲永久在线| 欧美一区二区精品在线| 国产精品一卡| 欧美亚洲网站| 久久夜色精品亚洲噜噜国产mv| 国产一区二区按摩在线观看| 欧美在线一级va免费观看| 久久精品一本| 亚洲国产成人一区| 欧美激情亚洲| 一本色道久久综合一区| 亚洲男同1069视频| 国产日本欧洲亚洲| 久久久999精品视频| 亚洲国产成人av| 在线亚洲伦理| 国产精品亚洲视频| 久久精品成人一区二区三区蜜臀| 久久一二三四| 亚洲精品在线观看视频| 欧美先锋影音| 久久国内精品视频| 欧美激情在线| 亚洲自拍啪啪| 精品福利电影| 欧美日韩国产页| 99精品视频一区二区三区| 欧美中文在线观看国产| 亚洲激情校园春色| 国产精品theporn| 久久国产欧美日韩精品| 亚洲国产一区二区三区a毛片| 夜夜精品视频一区二区| 国产欧美日韩| 鲁大师影院一区二区三区| 亚洲精品视频中文字幕| 久久成人一区| 亚洲乱亚洲高清| 国产欧美一区二区色老头| 欧美黄色免费网站| 亚洲欧美精品在线| 亚洲激情网站免费观看| 久久国产直播| 一级日韩一区在线观看| 一区二区亚洲精品| 欧美日韩一区二区三区四区五区| 午夜精品视频在线| 日韩一区二区精品| 免费成人av资源网| 午夜在线精品偷拍| 欧美影院视频| 久久国产精品72免费观看| 99精品99| 国语精品中文字幕| 欧美日韩国产首页| 久久久.com| 欧美有码在线观看视频| 99精品欧美一区二区三区综合在线 | 在线看不卡av| 国产日韩欧美一区| 欧美日韩一区二区三区四区在线观看| 久久精品欧美日韩| 午夜亚洲福利在线老司机| 99这里只有久久精品视频| 欧美大片免费| 嫩草影视亚洲| 欧美xart系列高清| 久久网站热最新地址| 久久久99精品免费观看不卡| 亚洲香蕉伊综合在人在线视看|