aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-03-04 08:42:00 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-03-04 08:42:00 -0500
commit30dd8efe8d71648bea7604ebee5afc4d55b25a6b (patch)
tree73cf4dbaa2be340597f6fac7fd7a1cedae9cbdea /include/entities.h
parent6af8dcbaa41a7db52ff8f6074d2b113ec7eaf12d (diff)
You can buy sausages from meme
Diffstat (limited to 'include/entities.h')
-rw-r--r--include/entities.h45
1 files changed, 14 insertions, 31 deletions
diff --git a/include/entities.h b/include/entities.h
index 0714650..b39923b 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -52,38 +52,20 @@ enum BUILD_SUB{
STALL_TRADER = 71
};
-class BuySell{
+class Trade{
public:
- int member;
- // 0 = Buy/Sell
- // 1 = Trade
- union{
- struct{
- std::string item;
- std::string itemt;
- }trade;
- struct{
- int type;
- // 0 = buy
- // 1 = sell
- std::string item;
- int price;
- }cost;
- };
- BuySell(int typ, std::string itm, int prc){
- this->cost.type = typ;
- this->cost.item = itm;
- this->cost.price = prc;
- this->member = 0;
- }
- BuySell(std::string itm, std::string itmt){
- this->trade.item = itm;
- this->trade.itemt = itmt;
- this->member = 1;
+ std::string item[2];
+ int quantity[2];
+ Trade(int qo, const char* o, int qt, const char* t){
+ item[0] = o;
+ item[1] = t;
+
+ quantity[0] = qo;
+ quantity[1] = qt;
+
+ std::cout << "Trading: " << quantity[0] << " " << item[0] << " for " << quantity[1] << " " << item[1] << std::endl;
}
- ~BuySell(){}
- BuySell(const BuySell&){}
- BuySell(){}
+ Trade(){}
};
class World;
@@ -233,7 +215,8 @@ public:
class Merchant : public NPC{
public:
- std::vector<BuySell>bsinv;
+ std::vector<Trade>trade;
+
void interact();
Merchant();