动态 Link 列表 RPG 库存程序 - 帮助(我如何 link 到 类 ?)

Dynamic Link List RPG Inventory Program - Help (How do I link to classes ?)

我正在制作一个基于 class 的库存系统,使用两个 classes:一个用于角色,一个用于物品。

Code by Ryan Newell - NEW14136796 Uclan Student (Need to put this in so plagarism monitors won't flag me for copying my own work)

这是我到目前为止得到的。

    ///Code by Ryan Newell - NEW14136796 Runshaw College - Uclan
#include<iostream> //Base C++ required #
#include<string> //Allows input of strings
#include<iomanip>  //Base C++ required #
#include <conio.h> //Getchar error workaround
#include <cstdlib>  // Provides EXIT_SUCCESS
#include <fstream> // Allows output of txt files
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <utility>
#include <Windows.h>//ConsoleSleep

using namespace std;

class itemspell{
    string itemname; //Name ((( what if items are the same name ? make difficult for finding statements ? maybe more char with same name item ?
    string itemtype; // Spell/Weapon/Armour/Magic Misc?
    string itemact; // What type of action does this item do ?
    string itemdesc; // Some random ingame description
    itemspell* inext; //The next pointer location


    bool isspell;   //Is Spell Boolean
    bool isweapon;  // Weapon
    bool isarmour; // So on so forth
    bool ismisc; // Misc
    bool offensiveitem; //Offensive item
    bool defensiveitem; // defensive item
    bool passiveitem; // Passive effect

    int damage;
    int armour;
    int magicbonus;
    int magicresistance;
    int cost;


    void item_spellsearch(itemspell* ihead, itemspell* &ipast, itemspell* &icurrent)
    {
        string search;
        if (ihead==NULL)
        {
            cout<<"There are no items on the list to search"<<endl;
        }
        else
        {
            cout<<"Enter the type item you are searching for :"<<endl;
            getline(cin,search);
            icurrent=ihead; //current pointer goes to -> header
            cout<<icurrent<<" "<<search<<" "<<icurrent->itemtype<<endl; 
            while(icurrent!=NULL && search>icurrent->itemname)
            {
                cout<<"Item Type:"<<icurrent->itemtype<<" "<<cout<<icurrent->itemname<<endl;
                ipast=icurrent;  //Past = new current pointer
                icurrent=icurrent->inext; //current pointer = next pointer

            }
        }
    }
public:
    itemspell()//Building a new item // -- Cannot put byref / by values in here remember, needs to be default constructor for some reason ??
    {
        cout<<"Enter Item Type: "<<endl;
        getline(cin,itemtype);
        cout<<"Enter Item Name:  "<<endl;
        getline(cin,itemname);
        cout<<"Enter Item Description: "<<endl;
        getline(cin,itemdesc);
        cout<<"Enter Item Action :"<<endl;
        getline(cin,itemact);
    }

    ~itemspell()//Delete record output
    {
        cout<<"Item being deleted"<<endl;
        Sleep(500);
        cout<<"Item deleted"<<endl;
        getch();
    }


        void additemspell(itemspell* &ihead) // Add record code
        {
            itemspell *icurrent;
            itemspell *ipast;
            itemspell *newitem;

            newitem = new itemspell;  // New itemspell
            if (ihead == NULL || newitem->itemname<ihead->itemname) //If no header or itemname is null;
            {
                newitem->inext = ihead;
                ihead = newitem;
            }
            else
            {
                icurrent= ihead;
                while(icurrent !=NULL&&icurrent->itemname<newitem->itemname) // While the current char Does not equal NULL/"Nothing and charcurrent itemname = newitemitemname"
                {
                    ipast=icurrent;
                    icurrent=icurrent->inext;
                }
                newitem->inext=icurrent; // Sets the next char to current and the past char to next to add in new record.
                ipast->inext=newitem;
            }
        }

        void deleteitemspell(itemspell* &ihead) /// Getting the address of the itemspell not the itemspell itself
        {
            itemspell *ipast=NULL, *icurrent=NULL;
            item_spellsearch(ihead, ipast, icurrent);
            if(ihead!=NULL) 

            if(icurrent==NULL)
                {
                    cout<<"ERROR: No itemspell Found"<<endl;
                    Sleep(500);
                    cout<<"returning to menu... press enter"<<endl;
                    getch();
                }
            else
            {
                if (icurrent == ihead)
                {
                    ihead = ihead->inext;
                }
                else
                {
                    ipast->inext=icurrent->inext; //Resets the pointer and header's back to previous positions....

                    delete icurrent;// Calls the deletion of the itemspell entry.
                    cout<<"itemspell found was deleted press enter to confirm"<<endl;
                    getch();
                }
            }
        }


class character
{
    string forename;
    string surname;
    string nickname;
    string race;
    string alignment;
    string alignment_type;
    string character_class;
    int Strength; //Strength
    int Intelligence; //Magick 2
    int Willpower; //Magick 1
    int Endurance; //Health
    int Agility; //Agility
    int StartingWealth; //StartingWealth       
    character* char_itemp; // Character - Item pointer - Adress location of the characters items
    character* char_next; // Next Pointer Value- Points to the location of the next person in the Dynamic Linked List

我想做的是当我创建一个新项目时,我希望能够将该项目提供给角色使用。

我知道我需要在字符 class 中创建一个指针值以指向项目拼写 class 但我不确定该怎么做,需要一些帮助.

本质上,当从项目 class 中的构造函数调用项目 class 时,我想让字符 class 指向项目 class。

如果可以,请不要只提供代码。相反,请突出显示我应该更改的区域并提供建议示例。我的学位课程对抄袭很严格。


伪代码

When newitemspell created 
get input charactername ()
: 
if no current itemspell created for that character

  add item to 
 character->charactername
else      
 add item to next pointer character->charactername      

通过查看您的代码并查看您要完成的目标的描述符,您为什么不创建一个 Inventory class 来处理用户项目?它应该能够处理 99% 的任何您想做的事情。让我知道这个例子是否与您想要做的一样。

老实说,我完全不知道您要在代码中做什么。正如之前的用户提到的,"linking" 两个 class 是给基数 class 一个所需 class 的变量的简单问题。例如:

#include <vector> //I prefer to use vectors for just about any list of objects.
                  //It's just more convenient for me.
using std::vector;

class Inventory //A handler for all of your character's stuff.
{
private:
    vector<object_class> objs; //To actually store an array of whatever objects
                                //you need to.

//Just some example functions to make the class useful.
public:
   int MAX = -1; //The size limit for the inventory. This can be used as a useful
                 //statistic in the specific inventory, depending on how it's being
                 //used. My example shows the value at -1, which, at least for me,
                 //means that any maximum size checks being done won't bother it
                 //because I usually have a setting of -1 as being unlimited.

   getItem(int slot); //Return item
   removeItem(int slot) //Removing items
   addItem(object_class object) //Adding items
}

从这里开始,这只是非常简单的编程。您需要做的就是创建类型为 Inventory 的变量。对 object_class 的任何引用都只是您希望 Inventory 处理的任何对象的 class 类型的通用填充。当您使用导数时,这很可能是基础 class。

class Character //The character class with all kinds of stuff to needs to be handled
{
public:
   Inventory items; //A regular inventory bag for items.
   Inventory equip; //The items the character is currently using.
   Inventory spells; //An alternate use for Inventory to be used as a handler for
                     //spell lists and other cool stuff.
}

从这里您应该能够了解到底发生了什么。物品栏不是 "linked" 角色。 Character 有三个 Inventory 类型的变量,Inventory class 本身将处理其向量中项目的所有添加、删除、排序和检索。

现在你可以让一切都像这样:

int main(int argc, char *argv[])
{
   Character player;
   Armor shield = new Armor(); //A dummy object
   player.items.addItem(shield); //Assuming the Inventory is setup to handle Armor items.
                                //This will add the shield to the player's inventory.
   player.items.MAX = 10; //Setting the maximum capacity of items to 10, obviously.
   Armor A = player.items.getItem(0); //returns the piece of armor in the first spot in the vector.
}

我通常会为这样的事情编写更模块化的代码,例如将 Inventory 设为模板 class,但我离题了。这只是为了向您展示如何将一个 class 对象附加到另一个对象。

我希望这与您正在搜索的内容相去甚远。如果不是,请尝试更具体地重写您的问题。