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

天行健 君子當自強而不息

游戲中物件的定義與使用(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>
            欧美精品v国产精品v日韩精品| 99日韩精品| 久久婷婷色综合| 亚洲女女女同性video| 亚洲精品免费网站| 欧美好吊妞视频| 国产精品久久久久av| 欧美日韩另类视频| 国产免费观看久久黄| 伊人久久av导航| 夜夜爽99久久国产综合精品女不卡| 亚洲国产毛片完整版| 亚洲美女在线视频| 性刺激综合网| 欧美国产精品人人做人人爱| 亚洲精品一区二区三区婷婷月| 亚洲美女精品成人在线视频| 亚洲美女淫视频| 久久精品国产99| 欧美成人r级一区二区三区| 欧美噜噜久久久xxx| 国产午夜精品视频免费不卡69堂| 精品99一区二区三区| 亚洲综合成人婷婷小说| 欧美人与性动交α欧美精品济南到 | 一区二区福利| 欧美在线啊v一区| 国产精品99免费看| 亚洲欧洲一区二区天堂久久| 午夜精品网站| 国产精品人人爽人人做我的可爱| 亚洲福利视频免费观看| 久久av二区| 欧美综合77777色婷婷| 国产精品视区| 欧美在线观看天堂一区二区三区| 亚洲乱码精品一二三四区日韩在线| 久久人人97超碰国产公开结果| 国产免费成人| 欧美成年视频| 欧美日韩三级视频| 欧美制服丝袜第一页| 欧美在线视频免费| 亚洲高清自拍| 亚洲看片网站| 国内精品久久久久久久果冻传媒| 久久精品日韩欧美| 麻豆免费精品视频| 亚洲午夜免费福利视频| 亚洲在线观看| 亚洲性感美女99在线| 亚洲大胆人体视频| 在线精品亚洲一区二区| 欧美激情aaaa| 国产欧亚日韩视频| 欧美激情视频在线播放| 影音先锋日韩有码| 欧美激情一区在线观看| 国产日本亚洲高清| 99精品免费| 一区二区免费在线观看| 久久永久免费| 久久免费视频网站| 国产亚洲精品自拍| 亚洲尤物在线| 久久中文字幕一区| 鲁大师成人一区二区三区| 久久黄色小说| 国产精品一区免费视频| 国产一区欧美| 久久久噜噜噜久久| 国产精品99久久久久久有的能看| 美女亚洲精品| 欧美激情综合| 亚洲精品裸体| 中文在线一区| 一本色道久久综合狠狠躁篇的优点| 91久久久久久久久| 亚洲欧洲精品一区二区| 老妇喷水一区二区三区| 亚洲国产中文字幕在线观看| 亚洲成人在线免费| 精品成人一区二区三区| 亚洲精品乱码久久久久久久久 | 久久综合色综合88| 国产一区二区三区四区| 久久久精品久久久久| 亚洲人成网站色ww在线| 亚洲精品少妇30p| 国产欧美日韩精品在线| 欧美激情1区2区3区| 国产精品日本一区二区| 欧美成人三级在线| 在线精品视频一区二区| 宅男精品导航| 久久伊人一区二区| 亚洲全部视频| 国产一区二区三区奇米久涩| 最新亚洲视频| 日韩视频在线免费观看| 欧美亚洲视频在线观看| 久久精品欧洲| 欧美激情aⅴ一区二区三区| 亚洲国产欧美一区二区三区久久| 美女日韩在线中文字幕| 亚洲一区二区三区午夜| 欧美激情aaaa| 亚洲欧美春色| 国产欧美精品一区| 一区二区免费看| 久久成人资源| 亚洲欧洲一区二区在线观看| 欧美四级电影网站| 美女图片一区二区| 欧美一区二区在线| 一本色道久久88精品综合| 久久婷婷综合激情| 亚洲精品欧美一区二区三区| 欧美精品久久久久久久| 亚洲人www| 亚洲欧美日韩爽爽影院| 亚洲国产欧美在线| 一区二区三区回区在观看免费视频| 蜜桃视频一区| 精品动漫3d一区二区三区免费| 国产日韩在线看片| 免费观看30秒视频久久| 亚洲综合日韩| 欧美激情一区二区在线 | 国产精品久久久久免费a∨大胸| 麻豆国产精品777777在线| 欧美电影在线播放| 欧美日韩一区自拍| 农夫在线精品视频免费观看| 最新国产成人在线观看| 久久精品国产一区二区三| 午夜视频在线观看一区| 亚洲深夜福利网站| 亚洲欧美日韩成人高清在线一区| 中日韩男男gay无套| 久久激情综合网| a4yy欧美一区二区三区| 久久精精品视频| 女女同性女同一区二区三区91| 亚洲永久免费精品| 性8sex亚洲区入口| 久久亚洲一区二区| 欧美日韩在线免费视频| 狠狠色丁香久久综合频道 | 久久精精品视频| 国产日韩av在线播放| 亚洲综合国产精品| 久久久www成人免费无遮挡大片 | 国产精品久久久久久久久久免费看| 国产精品入口麻豆原神| 亚洲福利在线观看| 一区二区三区免费网站| 久久久www成人免费无遮挡大片| 欧美日韩一区二区在线视频| 国产日韩欧美一区二区三区四区| 在线播放不卡| 欧美第一黄网免费网站| 久久蜜桃精品| 亚洲小少妇裸体bbw| 久久精品国产99| 欧美在线播放高清精品| 欧美日本在线视频| 最近中文字幕日韩精品| 麻豆精品一区二区av白丝在线| 香蕉久久国产| 亚洲大胆av| 国产欧美精品一区aⅴ影院| 在线亚洲欧美视频| 免费中文日韩| 欧美成人在线免费观看| 在线观看欧美日本| 亚洲国产导航| 国产精品一区二区你懂的| 模特精品在线| 在线不卡欧美| 欧美成年人网| 欧美激情视频在线播放| 99国产精品久久久久老师| 亚洲一区精品电影| 亚洲理论电影网| 久久久久久一区二区| 国产婷婷色综合av蜜臀av| 久久久国产精品一区| 欧美一级夜夜爽| 一本色道久久精品| 久久综合网络一区二区| 亚洲欧美电影院| 欧美精品在线一区二区| 一本色道久久| 欲色影视综合吧| 亚洲精品视频在线观看免费| 在线日韩电影| 亚洲欧美日韩国产成人精品影院| 激情综合色综合久久| 久久成人羞羞网站|