Your Perfect Assignment is Just a Click Away
We Write Custom Academic Papers

100% Original, Plagiarism Free, Customized to your instructions!

glass
pen
clip
papers
heaphones

Cuyamaca College C++ Programming Console Application & Global Functions HW

Cuyamaca College C++ Programming Console Application & Global Functions HW

Cuyamaca College C++ Programming Console Application & Global Functions HW

Description

you’ll have to program a game using c++ on visual studios

PART 1 Setting up your main menu.

You should have an interactive menu which gives you the following options:

  1. Play Game
  2. Test Functionality
  3. Quit

Play game will currently run a game function place holder which says something like “Game Coming soon”.

Test Functionality should run a separate place holder function for which outputs something like “Test Function placeholder”

Quit should obviously quit the program.

Your main menu function should also have a validation to prevent incorrect input.

This is a sample of what your program should look like at this point.

CHECK PART 1 EXAMPLE IN FILES.

PART 2 Global Functions

Build a global function that will be used with your program. I recommend building a function that returns a random number.

Now you should build a test function, one that will run the global function you created so you can make sure it works. For example, if your function test the random number function it should look something like this:

void testRandomRoll()

{

clearScreen();

std::cout << “Your Random number is ” << RandomRoll() << std::endl;

pauseScreen();

}

Notice the test program takes no input and returns no value. It runs the function and gives an output that you can validate. This is solely for developer testing of specific functions.

In the test driver function, create a menu with option to run each test function. As you create new functions you should add a test function and add it to the menu.

PART 3 Object Building

Create the player class. It should have the attributes you need. For example:

class Player

{

public:

Player();//Constructor

//Health interface

void addHealth(int);

void takeHealth(int);

int getHealth() const;

//Gold interface

int getGold() const;

void addGold(int);

void takeGold(int);

void displayStatus() const;

~Player();//Destructor

private:

std::string name;

int maxHealth;

int health;

int gold;

};

This is just an example. Your Player class will probably have more to it.

You can create a test function that will create a Player object and run through testing the functions of the object.

You can also create an event class for building your events. The event class objects should control the individual event rounds.

PART 4 PUTTING IT ALL TOGETHER

The Game engine is the next piece. When the user chooses to play the game from the main menu, you should introduce the game. The intro should describe what your game is; describe the story and give overall objective of game. After this the player will be given some initial options to start the game. These options could be starting supplies, player name or any other types of conditions that may or may not be relevant to the outcome of the game.

Next the game should go into the event rounds. Minimum of 12 rounds when the game is complete. To start though, just run one round make sure it works, then add another round. Once you have a couple rounds in there, add the rest.

Remember the event loop should end early if the player has game ending condition like zero health.

When your game ends it should return you to the main menu.

REQUIREMENTS

The project has the following requirements to be graded

These need to be present

  • Player Object
  • Event Object
  • Title Screen
  • Test Driver
    • Used to test object creation and functions
    • Should be menu driven
  • Game Driver
    • In game menu
    • Explain Story
    • Starting options
    • Follow Workflow
      • Present Event
      • Input choice
      • Results
      • Go to next event
    • Game over Conditions
    • End game story

Coding Standards and Formatting

  • Program Should run
  • Code is Readable
  • Logic is clean
  • Header File Setup

For bonus points, have a file system to load data from.

We offer the best custom essay writing services at an affordable rate. We have done this assignment before, we can also do it for you.

Order Solution Now

Our Service Charter

1. Professional & Expert Writers: Essay Pillars only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed of papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Essay Pillars are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Essay Pillars is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit in all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Essay Pillars, we have put in place a team of experts who answer to all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.