• <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>

            天行健 君子當自強而不息

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

             

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

             

            使用物品清單系統管理物件

            物件被分散在四處,玩家們找到這些物件只不過是一個時間問題。對于這種情況,玩家需要運用一種方法去管理物件,包括使用物品清單控制系統(inventory control system,ICS)來進行分類整理。

            請不要誤解,一個ICS并不只適用于玩家,它同樣適用于整個游戲世界。物件可以屬于一張地圖,一個角色,甚至是另一個物件(例如背包,有一些其他的物件在它里面),那就意味著物件需要指定它的所有者(ownership)。除此之外,一個所有者可以擁有一個物件的多個實例(multiple instance),例如貨幣。

            所有者的物件收藏稱之為物件清單列表(inventory list),任何物件都可以歸屬到這個列表中去(也包括物件的眾多實例)。所有者,物件清單列表,以及數量之間的關系如下表所示:


             

            ICS和MIL相互協調工作,MIL只保存了世界中每個物件惟一的實例,而ICS則使用了物件的眾多實例。每當ICS需要一個物件的信息時,它可以引用MIL。以這種方式,可以僅使用ICS保存MIL中的物件引用編號(如下圖所示),以節省大量內存。

            For your game’s maps and levels, a simple ICS (called a map ICS) consists of only a
            list of items and their locations within the map, which is just fine because you can
            place objects throughout—ready for characters to pick them up. The real problem
            comes when those characters pick them up and add them to their inventory.
            Multiple instances pile up, new items are added, and other items are used or
            dropped. Things quickly become a real jumble. Handling a collection of character’s
            objects is the job of a character ICS, which is a little more complicated than its map
            counterpart.

             

            開發一個地圖ICS

            The map ICS tracks items that are placed within levels, including items that are
            contained within other items—a sword contained within a treasure chest, for
            example. The type of map you use determines how you position items within the
            map. In 3-D maps, you use three coordinates for positioning an item—the X-, Y-,
            and Z- coordinates. Because each map is also unique (each part of the world has
            different maps), you can track each map’s items in separate files.

            You can represent the map ICS with a structure and a class:

            //==================================================================================
            // This structure contains map item information list.
            //==================================================================================
            typedef struct sMapItem
            {
                
            long    item_index;             // MIL item index
                long    quantity;               // quantity of item (ie coins)
                float   x_pos, y_pos, z_pos;    // map coordinates

                sMapItem*   prev;
                sMapItem*   next;

                
            long    index;          // map item index
                long    owner_index;

                sMapItem*   parent;     
            // parent of a contained item
                
                sMapItem()
                {
                    memset(
            this, 0, sizeof(*this));
                    owner_index = -1;
                }

                ~sMapItem()
                {
                    delete next;   
                }
            } *sMapItemPtr;

            //==================================================================================
            // This class encapsulate map inventory contrl system.
            //==================================================================================
            typedef class cMapIcs
            {
            private:
                
            long        m_num_items;
                sMapItemPtr m_root_item;

            private:
                
            long    get_next_long(FILE* fp);
                
            float   get_next_float(FILE* fp);

            public:
                cMapIcs();
                ~cMapIcs();

                
            bool load(const char* filename);
                
            bool save(const char* filename);
                
            void free();

                
            void add(long item_index, long quantity,
                         
            float x_pos, float y_pos, float z_pos,
                         sMapItemPtr owner_item);

                
            void remove(sMapItemPtr item);

                
            long get_num_items();
                sMapItemPtr get_root_item();
                sMapItemPtr get_item(
            long index);
            } *cMapIcsPtr;

            First, you see the sMapItem structure, which holds the information for every item in
            the map. item_index is the MIL item reference number (which ranges from 0 to 1,023
            if you used the MILEdit program), and quantity is the number of item_index (to allow
            things like a horde of coins to be represented as a single object). Then you see the
            item’s map coordinates x_pos, y_pos, and z_pos.

            Next comes the prev and next pointers. You insert them to track a linked list of
            sMapItem structures. The next couple of variables, index and owner_index, are used when
            loading and saving the items in a map. Index stores the current index number of
            an item in the linked list. If an item is owned by another item, the Owner variable
            holds the index number of the parent object (otherwise, Owner is set to -1). When
            loading (or adding) an object, you set the final variable in sMapItem (parent) to point
            to the actual owner item’s structure. You can see the sMapItem structure link list concept
            illustrated in Figure 15.8.

            The sMapItem uses both a constructor and destructor function called whenever a
            structure instance is allocated or reallocated. Both functions ensure that the linked
            list pointers are in check, and whenever a structure is deleted, all subsequent
            sMapItem structures in the linked list are deleted as well.

            CAUTION
            If you’re removing only a single instance of sMapItem from the linked list, you first have to
            set the instance’s Next variable to NULL. Doing so ensures that all subsequent instances in the
            linked list are not deleted as well.

            The cMapICS class has two private functions (get_next_long and get_next_float) used to read
            in text and convert it into a long or float value. The cMapICS class also has eight usable
            public functions. Take a closer look at those public functions.


            posted on 2007-11-07 18:31 lovedday 閱讀(240) 評論(0)  編輯 收藏 引用

            公告

            導航

            統計

            常用鏈接

            隨筆分類(178)

            3D游戲編程相關鏈接

            搜索

            最新評論

            久久久亚洲欧洲日产国码aⅴ| 久久亚洲高清综合| 久久亚洲精品国产精品| 国产精品99久久精品爆乳| 久久精品人妻中文系列| 日本久久久精品中文字幕| 成人久久免费网站| 亚洲精品久久久www| 国内精品伊人久久久久网站| 色婷婷综合久久久久中文一区二区 | 大美女久久久久久j久久| 色天使久久综合网天天| 色综合久久中文色婷婷| 久久精品国产亚洲AV蜜臀色欲| 久久精品中文字幕无码绿巨人| 欧美粉嫩小泬久久久久久久| 久久久久无码精品国产不卡| 亚洲国产精品综合久久网络| 一级做a爱片久久毛片| 久久综合综合久久狠狠狠97色88| 久久笫一福利免费导航 | 国产精品久久久久影院色| 午夜久久久久久禁播电影 | 亚洲精品乱码久久久久久| 久久免费高清视频| 国产成人无码久久久精品一| 亚洲精品国产成人99久久| 人妻久久久一区二区三区| 久久人人爽人人爽人人av东京热| 91性高湖久久久久| 91精品免费久久久久久久久| 久久国产亚洲高清观看| 国产亚洲综合久久系列| 久久久久人妻精品一区二区三区 | 亚洲精品无码久久久久久| 波多野结衣久久精品| 亚洲国产精品久久久天堂| 久久综合九色综合网站| 亚洲国产香蕉人人爽成AV片久久 | 91麻豆精品国产91久久久久久| 国产亚洲婷婷香蕉久久精品|