Skip to content

C++ Project of an Auction House simulation (coding challenge: making it work on the first run)

Notifications You must be signed in to change notification settings

George540/Medieval_Auction_House

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Medieval_Auction_House

Personal C++ project for practising various OOP principles, sorting algorithms, data structures and more

Current Tasks:

  • Receive items from text file and add them to 2D static array
  • Layer 1: contains categories of items
  • Layer 2: contains items for each category

Item Categories:

  • ALL (buy price, bid price, print, type)
  • Swords (+ damage) 0
  • Armor (+ defense) 4
  • Axes (+damage) 1
  • Helmets (+defense) 5
  • Shields (+defense) 6
  • Handguns (+dps, rof) 2
  • Bombs (+damage, charge time) 3
  • Costumes(+color) 7
  • Accessories(+color) 8

Sort items by:

  • Price (low to high, high to low)
  • Bid Price
  • Alphabetical order (A-Z, Z-A)

Player:

  • Name ID
  • Money
  • Inventory sorted similarly to auction house

About

C++ Project of an Auction House simulation (coding challenge: making it work on the first run)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages