Programming C#

Tasks studies - laboratory


Project maintained by dawidolko Hosted on GitHub Pages — Theme by dawidolko

Object-oriented programming C#

Design and implement the basics of a computer RPG game in which there can be many types of heroes. Initially, the system will support only two types of characters (warrior and mage), however, in the future it is planned to expand the system to include other types of heroes. It is known, however, that all characters will be described by name, have a certain level of vitality and provide an operation that allows to calculate the attack power of the character based on parameters characterizing the hero.

Implement classes representing two types of characters described by the following attributes:

• Mage: name, vitality (in %), strength (integer), magic points (integer)

• Warrior: name, vitality (in %), strength (integer)

Ensure proper encapsulation, i.e. class fields should not be public.

Objects representing heroes provide the following operations:

• constructor allowing to initialize all component fields,

• default constructor setting object fields according to the scheme:

o Warrior: name = “Geralt”, vitality = 100%, strength = 3k6 (random value from 3 to 18, result of rolling three dice),

o Mage: name = “Xardas”, vitality = 100%, strength = 1k6, magic points = 2k6,

• method allowing to add (subtract) a certain value of vitality points. However, the final value cannot fall below 0 or rise above 100%. The method returns a new vitality value.

• method returning the character’s attack power. Depending on the hero type, it is:

o for a mage: ( magic points + strength ) x vitality

o for a warrior: strength x vitality, but when vitality drops below 5%, the warrior falls into a frenzy and his attack power equals the base strength.

• overload the ToString() method that returns a string containing information about the hero’s name and the vitality value and attack power.

Implement a class that implements a team of heroes. This class stores an arbitrarily large set of characters. For this class, implement the following operations:

• a constructor that allows you to initialize a team with the name given in the argument,

• the Clone() method that implements the IClonable interface. The method returns a faithful copy of the cloned object.

• a method that adds a new character to the team,

• a method that provides access (the ability to read and modify) the team’s hero with the given index (this can be a loaded operator [])

• a method that returns the total value of the attack power of all team members,

• an overloaded ToStrong() method that returns a string containing the team’s name, total attack power and a full list of characters.

Write a program that tests the system’s operation. Create a group of heroes called “The Fellowship of the Ring” and place at least two characters of each type in it. Reduce the health of one of the warriors to 3% and print the contents of the team in the terminal: the name, the total attack power, and the list of group members.