gpt4 book ai didi

c++ - 动态链接列表 RPG 库存程序 - 帮助(如何链接到类?)

转载 作者:行者123 更新时间:2023-11-28 06:18:50 25 4
gpt4 key购买 nike

我正在使用两个类制作一个基于类的库存系统:一个用于角色,一个用于元素。

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

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

我知道我需要在字符类中创建一个指针值以指向 itemspell 类,但我不确定该怎么做并且可以在一些帮助下做。

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

如果可以的话,请不要只提供代码。相反,请突出显示我应该更改的区域并提供建议示例。我的学位类(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 类来处理用户项目?它应该能够处理 99% 的任何您想做的事情。让我知道这个例子是否与您想要做的一样。

老实说,我完全不知道您要在代码中做什么。正如之前的用户提到的,“链接”两个类是为基类提供所需类的变量的简单问题。例如:

#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 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.
}

从这里您应该能够了解到底发生了什么。库存没有“链接”到角色。 Character 具有三个类型为 Inventory 的变量,Inventory 类本身将处理其 vector 中项目的所有添加、删除、排序和检索。

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

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 设为模板类,但我离题了。这只是为了向您展示如何将一个类对象附加到另一个类对象。

我希望这与您正在搜索的内容完全一样。如果不是,请尝试更具体地重写您的问题。

关于c++ - 动态链接列表 RPG 库存程序 - 帮助(如何链接到类?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29688019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com