C# Workshop

Published October 28, 2012
Advertisement
[color=navy]Introduction[/color]
Welcome to the second project of the C# Workshop. This project is designed to give you an opportunity to challenge your understanding of both the material we've already covered, as well as the material we will be covering over the next two weeks. For those with previous programming experience, this project won't be overly difficult, but it will give you an opportunity to test your understanding of the programming syntax provided in C#. For those with no previous programming experience, this project will be a challenge. Not because it's technically difficult or overly complex, but because 90% of being an adequate programmer is your ability to solve problems. Being able to logically break a project description down into discrete, manageable components is one of the most valuable skills any programmer can have. Unfortunately, this is not something that can be taught, it's something that can only be learned with practice and the development of an analytic mind.

[color=navy]Topics Covered[/color]
As the second project is designed to correspond with the first 6 weeks of the workshop, it will test and exercise your understanding of the following topics:

  • The System.Console Class
  • Strings and Primitive Types
  • Expressions, Selection, Iteration, and Arrays
  • Classes, Structs, Methods, Fields, and Objects
  • Exception Handling and Properties
  • Inheritance and Polymorphism

[color=#000080]Background Information[/color]
Long before there were video games man-kind found ways of allowing themselves to be more than they are. Through creative writing, board games, radio shows, and movies, people of all walks of life who share a common interest in the mysterious and the magnificent have put themselves in the roles of loyal knight, devious cutpurse, and even the feared magician. In modern times, those of us who are daring enough (read geeky enough) can bring to life our imaginations in the form of Role-Playing Games. Whether the game is played with Pen and Paper, over a web forum, or via an interactive video game, the basic ideas are the same.

Generally speaking, the primary focus of a Role-Playing Game (RPG) is around that of the player's avatar or character. Depending on the genre or rule-system, it's not uncommon for these characters to be of different races, with different professions, and each with their own unique blend of skills and abilities. As a player explores their world through the eyes of their character they amass fame, wealth, and experience - all of which makes them more powerful as time goes on. And, while there are a number of well-known systems dating back over 30 years or more, the most common system for RPG's is the Dungeons and Dragons system. In its most recent edition (DnD 3.5ed) the basic rule system is based around rolling dice ranging from 3-sided to 100-sided (what they call % dice). The most frequently used die, however, is the 20-sided die, or the d20. This, is why it's called the d20 Gaming System.

In the d20 system every player makes a character and the characters created usually have the following attributes: Name, Class & Level, Race, Size, Age, Gender, Height, Weight, Eye Color, Hair Color, Ability Scores, Hitpoints, Armor Class, Money, Saving Throws, Attack Bonuses, Equipment, Skills, Feats (optional), Abilities (optional), and Spells (optional). This is by no means an exhaustive list, but it gives you the basic idea. Some of these, such as Race, Class, Ability Scores, Equipment, Skills, Feats, Abilities, and Spells - are really just a collection of other attributes that helps to further define what a character is possible of doing, what their raw scores are in combat, and what they're wearing about their person or in their bag pack. Once a character has been created the player can take him through enchanted forests, searing deserts, and dangerous dungeons. But...it all must begin with the creation of a character.

[color=#000080]Feature Requirements / Use Cases[/color]
For this project we will be stepping away from the random maze generator for a short time, and instead creating a random character generator. The character generator will create characters with stats, skills, and abilities roughly equivalent to that which can be found in Dungeons & Dragons 3.5 Edition. And since D&D is a trademark/copyright of Wizards of the Coast, let me say that all content contained herein is subject to the Open Gaming License, and while I am encouraging people to implement a character generator and/or Interactive Game, I do NOT encourage them to distribute the software either for Free or for Profit. Such actions would likely be against WotC's license agreement, and might get you sued. This exercise is strictly for learning purposes.

Also, to avoid duplicating a large amount of information already in print, I will instead provide links to documents on the Wizards of The Coast website which will contain the relevant information. Before I go further let me say Much of this project description is optional. I've tried to add in all the relevant data for a character in D&D 3.5ed, however only implement that which you feel comfortable with. I've specifically stated in the clarification sections below which are expressly optional. But, as I said, feel free to make all or none of this project description optional. Where the first project was technically simple, but logically difficult, this one is the exact opposite. This one is logically simple, but will require a large amount of code to develop any of the more optional or difficult character fields. Many of the earlier ones will only require 30 minutes to add, while some of the latter properties and fields may require a few days to add. Get as much done as you can, but don't hesitate to ask questions about the more difficult stuff. CHALLENGE YOURSELF!

1. When the user first launches the program it will show them ASCII art similar to the screenshot at the very top of the project description. It need not be that exact image as any appropriate image will do. Just search the internet for "Dragon ASCII Art" and you will find quite a bit to work with. Decide which image you enjoy most, and make the character generator display the artwork.

1a. Beneath the displayed ASCII art it should immediately begin the process of creating a character. There are 5 pieces of information which the user will be required to input into the generator. All the rest will be randomly created. The first item to be input is a Name. A name can really be any name the character likes, however it must follow a few rules. First, the name can be no longer than 25 characters. Second, the name may only consist of letters, apostrophes ('), and hyphens (-). Finally, if multiple hyphens, apostrophes, or spaces are entered in a row or separated by other spaces, hyphens or apostrophes, it should strip out the duplicates. This allows for names such as Jachom Death-Bringer, or Rand Al'Thor, but not names such as "The 133t 0n3".

1b. If either the name is too long or contains invalid characters, the generator should notify the user of the error, and then request the name again. This should continue until a valid name is entered.

2.After the user successfully enters their character's name, they will be prompted for the second piece of information required by the user - The character's Gender. The user should be shown the available options which are either "Male" or "Female" - Case Insensitive.

2b. Entering a gender other than those provided will be considered invalid and the user will be repeatedly asked to enter the gender again until they enter a valid gender.

3. After the user successfully enters their character's gender, they will be prompted for the third piece of information required by the user - The character's Race. The user should be presented a list, perhaps in two or three columns, listing their available choices and they must pick which one they want to play by typing in the (case-insensitive) string.

3b. Entering a race other than those provided will be considered invalid and the user will be repeatedly asked to enter the race again until they enter a valid race.

4. After the user successfully selects one of the allowable races, they must then select their character's Class. As with the races, a character should be presented a list of options - perhaps in two or three columns, and they will be repeatedly asked for a class until they correctly type in one from the list.

5. After the user successfully selects the class they wish to create, they must pick a level. Based on the non-epic rules of play, a character's level must be an integer in the range of 1-20. Entering any non-numeric value, or entering a value which is not in the range of 1-20 will result in the user being notified of their mistake, and asked once again for their character's level.

6. At this point enough information has been gathered from the user that a randomly generated character can be created. Do so, and then display to the user the information about his character. This should include all the information listed above, in any format desired by the programmer.

7. Finally, after displaying the character info, you should prompt the user to determine whether or not they would like to create another character. Available answers should be 'yes' 'y' 'no' and 'n'. Obviously 'yes' and 'y' should perform the same action, while 'no' and 'n' also perform the same action. Any other response should let the user know you didn't understand their response, and then repeat the question.

7a. If they answered with either 'no' or 'n', terminate execution of the application. If they say 'yes' or 'y', repeat the process outlined above, beginning with asking them to input a character's name (There's no reason to display the ASCII art again).

[color=#000080]Creating the Character[/color]
Upon reaching use case 6 listed above, the generator should have enough information to generate a character. Generating a character consists of filling in all of the fields of the character object, including any subclasses which may be necessary. This can often times be more difficult than it seems, as data such as the Race or Class may effect more than just one field. For example, selecting "Dwarf" as the race, may not only identify this character as a Dwarf but it may have the following effects as well:

  • Dwarves receive +2 to their Constitution Score, while receiving -2 to their Charisma Score.
  • Dwarves are of Medium Size Dwarves receive a +2 racial skill bonus to Search Checks.
  • Dwarves receive a +2 racial skill bonus to Appraise checks
  • Dwarves may use Dwarven Waraxes and Dwarven Urgroshes without requiring the Exotic Weapon Feat.

The above is a small list of some of the racial abilities granted for Dwarves. When implementing classes and races, feel free to apply the effects of only that which you desire. But, you should at the very least apply any modifications to the 6 ability scores, note the race's size, and any modifications to skill checks. For skill checks such as the Dwarven Search and Appraise which is limited to certain circumstances (such as when working with stone) treat it as though the bonus skill check is always in effect. In other words, there's no reason to special case it to only stone objects - unless you want to. The remaining part of this Project specification will be in evaluating the specific properties of the character class, and what information should be taken into account. Ultimately, however, implement only as little or as much of the D&D 3.5ed rules for creating a character as you can. Treat this specification as a guideline. Remember, though, the more stuff you can add, the more your generator will shine.

[color=navy]Character Description - Age, Height, Weight, Eyes, and Hair[/color]
The first thing to explore more carefully when creating a character is the character's physical description. Generally, this can be broken up into 5 different values: Age, Height, Weight, Eye Color, and Hair Color. When creating a randomly generated character, these values should be filled in based on the tables located in the SRD. Because the tables are exhaustive, I will not duplicate them here. However, I was unable to find in the SRD anything regarding hair color or eye color for the different races.

So, for the purpose of this project, all races can have hair color and eye colors that are one of the following. Note, if you feel like differentiating them, and only allowing elves certain hair colors, while giving humans other colors, that's fine. Extra Credit for you. Eye Colors: Brown, Hazel, Amber, Green, Blue, Gray Hair Colors: Brown, Mahogany, Chocolate, Cinnamon, Chestnut, Black, Raven, Ebony, Charcoal, Blonde, Honey, Golden, Strawberry, Platinum, Red, Auburn, Russet, Scarlet, White, Gray, and Silver.

For the remaining fields, simply look up the character's race in the SRD file listed below, and then find the range of values for Age, Height, and Weight and randomly generate a value within that range. For more information on the Character Description, see Alignment and Description .

[color=#000080]Character Races[/color]
The second thing to explore more carefully when creating a character is the character's race. There are 7 available races which the player can select from. Use as many or as few as you like, but try to use at least the first four listed. Although they are listed in full detail in the System Reference Documentation (SRD) I'll list the 7 available races here. The available races are: Human, Dwarf, Elf, Gnome, Half-Elf, Half-Orc, and Halfling. As indicated above, when you select a character race, it effects not only the identifier which describes what race they are but also a number of other attributes. In specific, the race a player chooses frequently/always effects the following:

  • Character Size: Races can be about 5 different sizes, however all of the races described in the SRD for playable characters are either Small or Medium. This information should be recorded as it's important for determining armor that can be worn, and also attack/defense bonuses in combat.
  • Feats & Skills: Although we've not discussed feats and skills yet, some races get bonuses to the number of feats and skill points which can be assigned at each level. This should be taken into account when selecting the character's skills and feats.
  • Ability Scores: Many of the races, save for humans and half-elves, modify the character's ability scores. That is, whatever is rolled for the character will be modified up or down for certain scores depending on the race. These should be taken into account and the modifications applied.
  • Weapon Proficiency/Familiarity: Many races can inherently use certain weapons which may not be otherwise allowed without proper feats or abilities. When picking equipment for characters, these proficiencies should be kept in mind. Sometimes it's best to treat these proficiencies as though the character automatically receives certain feats.
  • Skill Bonuses: Frequently a race receives inherent bonuses to certain types of skill checks. According to the SRD, these skill check bonuses often only apply it certain circumstances, such as when the dwarves are working with stone, or when facing monsters of specific types and sizes. Feel free to use these qualifiers if you can, however for simplicity, feel free to blindly apply these skill bonuses in all circumstances.
  • Immunities: Some races are immune to certain effects or spells. These are important to note for combat. Perhaps create an immunities property, which stores all of the immunities a specific character has, then if such an ability were used against this character in combat, those effects could be checked against their list of immunities.
  • Spell-Like Abilities: These are the most interesting, and the most difficult to work with. Some races, such as the Gnomes, have special abilities granted to them by their race. These function almost identically to class abilities. Generally it grants them to act as though they are allowed to cast a specific spell a certain number of times per day. Include these spell-like abilities if you can, however it's not required.

You may find though, that once you've created the possibility for classes to have special abilities, it's not overly difficult for races to have special abilities as well. For more information on the Character Races, see Races.

[color=#000080]Character Classes & Level [/color]
The third thing to explore, and by far the most difficult, is the character's class. There are 11 available classes which the player can select from. Use as many or as few as you like, but try to use at least the bold ones listed below. Although they are listed in full detail in the System Reference Documentation (SRD) I'll list the 11 available classes here. The available classes are: Barbarian, Bard, Cleric, Druid, Fighter, Monk, Paladin, Ranger, Rogue, Sorcerer, Wizard As indicated above, when you select a character class, it effects not only the identifier which describes what class they are but also a number of other attributes. In specific, the class a player chooses frequently effects the following:

  • Hit Dice: This is the size of the die that is rolled to determine the number of maximum hitpoints a character has. Generally, the character receives the maximum value possible at first level, and then that sized die is rolled for each level after that. For example: A Barbarian is a d12. This means that at level 1 they have a minimum of 12 hitpoints due to their class. Every level after that, they receive additional hitpoints in the range of 1-12, randomly generated. So a level 2 Barbarian has AT MOST 24 hitpoints due to their class. As we'll discuss later, this can be different as a result of ability scores. But, these hit dice should be recorded, and used when generating characters a level higher than 1.
  • Class Skills: Every class has a set of skills which are compatible with their class. This is important as skills that are compatible with a class require fewer skills points to use in order to increase the skill by one rank. This should be taken into account when assigning skill points for the character.
  • Skill Points: Every class receives a specific number of skill points at the first level, and then more every level afterwards. The exact amount is based upon the class and their intelligence modifier. This should be taken into account when assigning skills based on character level.
  • Base Attack Bonus: Every class has a base attack bonus which is based on the character's level. Saving Throws: Every class has a base value for the 3 saving throws based upon the character's level Feats: Some classes receive additional feats at specific levels. These should be taken into account when assigning feats to the character.
  • Armor/Weapon Proficiency: Each class has specific proficiencies that allow them to use armor and weapons of specific types and sizes. These should be taken into account when assigning equipment and items to the character.
  • Special Abilities: Every few levels a character class grants the character special abilities or effects. These are the most difficult to implement. At the very least, a list should be made when creating the character identifying WHICH abilities he/she has. Some you may find are easier to implement than others. For example, some special abilities just grant the character higher ability scores at specific levels, while others allow the character to cast spell-like abilities a specific number of times per day. When working with special abilities, it's up to you how complete you wish to implement them. My minimum requirement for this is that you at least list which special abilities the character has, depending upon his level.
  • Spells: Similar to Special Abilities, some class receive spells at different levels. Additionally, spell casters often can cast different numbers of spells each day from each spell level range depending upon their level. As with special abilities, it's up to you whether you feel you can actually implement any spells. For this project, I only require that you make a list of which spells the character knows, and how many times they can cast each per day.

Note, this is different for different classes, so pay special attention to the description of the class you're implementing. For more information on the Character Classes, see Character Classes I and Character Classes II.

[color=#000080]Character Money[/color]
The fourth thing to explore more carefully when creating a character is the character's money. Every character class has a specific amount of money they get as level 1 characters. This money should be randomly calculated, and the money awarded to the character. Of importance, money in Dungeons and Dragons is broken up into different types of metals - Specifically copper, silver, gold, and platinum. Each one is worth 10 of the previous type. Ie, 1 Gold is equal to 10 silver. It will be important to keep track of the amount of each type of metal the character has, and also the total value, divided up into the largest units possible. For example, if your character has 37 copper, that should be noted, but it should also be noted that the character has 3 silver, 7 copper - total money. (This screams Struct) Finally, with this character generator we're assuming the ability to create characters after level 1. Although this is not a standard rule, assume the money that is earned each level is equal to the level number multiplied by the number of die used at level 1. So for example:

  • if a level 1 Bard gets 4d4x10 starting gold,
  • then he would get 8d4x10 at level 2 ( (2*4)d4 * 10 ).
  • At level 3 he would get an additional 12d4x10 ( (3*4)d4 * 10).


This pattern continues all the way up to level 20. Another way to look at it, a level 10 Bard would get ((1+2+3+4+5+6+7+8+9+10) * 4)d4 * 10. For example...the level 10 Bard has (55 *4)d4*10, or 220d4x10. This means to roll a d4 die 220 times - add up the total value, and THEN multiply that by 10. Here's the list of starting goal per class, at level 1: Barbarian, Bard: 4d4 x10 Cleric, Rogue: 5d4 x10 Druid: 2d4 x10 Fighter, Paladin, Ranger: 6d4 x10 Monk: 5d4 Sorcerer, Wizard: 3d4 x10

[color="navy"]Character Ability Scores[/color]
The fifth thing to explore more carefully when creating a character is the character's ability scores. There are 6 ability scores, each which dominate a specific aspect of the character. Each ability score serves specific purposes, and these should be noted when creating the character. In general, it is not the ability score that matters, but rather the ability score modifier. That is, depending upon the ability score, a positive or negative modifier will be applied to all areas governed by that specific ability score.

As an example, the number of skill points a player receives on the first level and every level after that is effected by the character's Intelligence Modifier. What the exact effect is, is based upon the class, but in ether case, the Intelligence modifier will have an impact. There is a table in the SRD which illustrates what the ability score modifiers are for each ability score, and how they are used however I'll provide a quick formula here.

First, start with the value 10, and assign it the modifier 0. Then, every 2 points above 10, add +1 modifier. Every 2 points below 9 (starting with -1 at 9), subtract -1 Modifier. As an example, an Intelligence of 15 results in an intelligence modifier of +2. (+1 at 12, +1 at 14) Likewise, an intelligence of 7 results in an intelligence modifier of -2 (-1 at 9, -1 at 7) As to what the ability scores impact, some effect attack rolls, damage done, how successful you are with specific skills, what your armor class is, and even your saving throws. For exact information about what each ability score modifier modifies, check the SRD document listed below. For more information on the Character Ability Scores, see Basics and Ability Scores .

[color="navy"]Character Hitpoints[/color]
The sixth thing to explore more carefully when creating a character is the character's Hitpoints. As indicated above, the character's hitpoints is based on the character's class. At level 1 they receive the maximum possible value for their dice roll. Every level after that, from level 2 to 20, they receive a random amount in the range from 1 to whatever their die type is. Additionally, the amount of hitpoints received each level is effected by the character's Constitution Modifier. See the Constitution section in the ability score document above for more information.

[color="navy"]Character Saving Throws[/color]
The seventh thing to explore more carefully when creating a character is the character's saving throws. Each character has 3 total saving throws, Fortitude, Reflex, and Will. These are to help you in combat in order to avoid certain tragic events. The value of your Saving throws is determined by adding up several other values, including a Base Save given to you by your class, an ability score modifier, racial modifiers, and sometimes feats as well. You should take these into account if you can when creating your character. For more information on the Character Saving Throws, see Basics and Ability Scores and Combat I (Basics)

[color="navy"]Character Skills[/color]
The eighth thing to explore more carefully when creating a character is the character's skills. There is a complete list of skills located in the SRD spread over two files. Ultimately, skills are just things which are checked against in order to determine if your character is successful at accomplishing a task. The calculation of a character's skills are a combination of ability score modifiers and skill points spent each level in order to increase your character's rank in those skills, and thus, increasing their chance to succeed in a task. It's important to note that every class has "class skills" which increase rank at a rate of 1 per skill points, "cross-class skills" which increase at a rate of 2-points per rank, and then skills which they cannot learn. These should be taken into account when randomly generating the character's skills.

Ultimately, you'll want to determine the total number of skill points your character has for his level, and then distribute them across first the skills that he's likely to use (class skills) and then perhaps spend a few points in cross-class skills for variety. It should be noted, however, there's a maximum number of ranks which can be spent on a skill per level. This amount is different for class skills and cross class skills. See the documents below for more information. For more information on the Character's skills, see Character Classes I, Character Classes II, Skills I, and Skills II

[color="navy"]Character Equipment and Items[/color]
The ninth thing to explore more carefully when creating a character is the character's equipment. After you've determined how much money your character has, you get to spend it on purchasing equipment. This includes, armor, weapons, goods, throwables, tools, spell scrolls, etc...You'll notice that there are different types of items such as Armor, Weapon, Good, Tool, Scroll, etc...but ALL can be carried in the player's inventory. You may consider inheritance here as a possible solution, since a Weapon IS-A Item. This is one of the most challenging parts of the character generator, next to the abilities.

My advice, would be if you're interested in implementing this, to create a table for each type of items, such as a table of weapons, a table of armor, etc...In each table, indicate which classes can you the item, perhaps with a flag enum. Then, when it's time to assign equipment, give the character some armor, weapons, etc...from the table he can use. Perhaps just roll a random index, and then iterate from there until you encounter something he/she can use.

Finally, there is more than just standard equipment. There are magical items, and characters of higher levels are more likely to have magical items. So you may consider taking a look at the magical items as well. For more information on the Character's equipment, see Equipment. If you're interested in providing magical items for higher level characters, you'll want to download this zip file containing all Magical Items.

[color="navy"]Character Armor Class[/color]
The 10th thing to explore more carefully when creating a character is the character's armor class. Once you know a character's equipped gear, you can calculate their AC. This is based upon a character's natural armor (10) plus both the armor they wear, their size, and also on their dexterity ability score modifier. This is important because in combat, a character's Armor Class is used to determine if their enemy successfully hit them. For more information on the Character's Armor Class, see Combat I (Basics).

[color="navy"]Character Attack Bonuses[/color]
The 11th thing to explore more carefully when creating a character is the character's Attack Bonus. Your character is given a base attack value by his class, then, depending upon which weapon you use, what feats you have, and what your character's ability score modifiers are, you will have a final attack bonus when attacking. This is compared against your enemies Armor Class to determine if you successfully struck them in combat. Use the information in the resource below for determining Attack Bonus. For more information on the Character's Attack Bonus, see Combat I (Basics) .

[color="navy"]Character Abilities (optional) [/color]
The 12th thing to explore more carefully when creating a character is the character's Special Abilities. This section is optional, but highly recommended. Just as a character gets feats at level 1 and then every few levels after that, your character also receives special abilities. Unlike Feats where the character can choose them from a master list, assuming they meet the prerequisites, the character's abilities are pre-determined, based upon the class definition. In this way, Special Abilities are more predictable, and a bit easier to implement, however WHAT they do can often be more difficult to implement.

As a result, should you decide to try and implement assignment of special abilities in the character creation process, you may first begin by just making a list of which Abilities the character currently has, based upon the level he was created at. Then, after that's complete, pursue adding the effects of the special abilities. Should you decide to try and implement special abilities, one way or the other, use the following resources. For more information on the Character's Special Abilities, see Character Classes I and Character Classes II .

[color="navy"]Character Feats (optional) [/color]
The 13th thing to explore more carefully when creating a character is the character's Feats. This section is optional, but highly recommended. Basically, every character has 1 or more feats that are gained at level 1, and then at specific levels after that. Feats can do anything from making a character faster, giving them more hit points, making their spells stronger, all the way to allowing them to get multiple strikes at a time, after killing an enemy.

And, although Feats are really one of the key aspects of D&D 3.5ed, this section is optional. Implement feats if you can and have time for it, but do not feel obligated. As well, it's perfectly fine to decide you WANT to implement "feats", and then only get a few feats implemented. Nothing says you have to support ALL feats listed in the SRD. As well, even if you cannot implement the feats, it may be worth it to you to at least randomly select the feats from a list, based on meeting the feats prerequisites, and then just store the feats the character has in a list, without actually applying the feat to the character's stats. Should you decide to try and implement feats, one way or the other, use the following resource. For more information on the Character's Feats, see Feats.

[color="navy"]Character Spells (optional) [/color]
The 14th and final thing to explore more carefully when creating a character is the character's Spells. Not every character can cast spells, but for those that can it's a vital asset to their class. As with the previous two sections, randomly assigning spells to your generated characters is optional. Also as before, it may be a good idea to first randomly generate a list of which spells the character HAS, and then worry about implementing a spell class which might actually allow your characters to cast spells. For more information on the Character's Spells, see Spell List I and Spell List II If you're actually interested in attempting to implement spells, you'll want to download the zip file containing all Spells.

[color="navy"]Conclusion[/color]
Well, here were are at the conclusion of the project description for Project 2. I've tried to give you a reasonable overview of what is expected from you in this project. The main idea is to have fun. In general, we're just randomly generating a character's information based on a set of rules and tables from the Dungeons and Dragons 3.5ed System Reference Document. If there is any confusion about what you should and should not attempt to implement, please do not hesitate to ask. And, when in doubt, leave it off. The best thing you can do is start with the easily generated items, and then move on to the more difficult. With that in mind, here's my suggestion for implementing this project....

  • 1. Define the types of data for each of the above fields. String for name, perhaps an enum for class, race, eye color, and hair color, ubyte's for the ability scores, etc...
  • 2. Create a Character class which contains fields & properties for all of the above data.
  • 3. Create static classes for the different races and character classes to help you fill in relevant information for your character. (did someone mention inheritance, abstract class maybe?)
  • 4. Add a class to randomly generate a character, 1 property at a time. I'd recommend doing them in the following order (remember that name, class, level, gender, and race are assigned, not randomly generated:

  • Age (based on race)



  • Height, Weight (based on race)



  • Hair Color, Eye Color (based on list given above)



  • Money (Based on classes above)



  • Ability Scores (should be based on what the class utilizes, see class descriptions for more info)



  • Hitpoints (based on class die type and level)



  • Saving Throws (based on class, race, ability scores, and feats)



  • Attack Bonus (Based on class, ability scores, and equipment)



  • Skills (Based on Class)



  • Equipment (should be chosen somewhat based on class, proficiencies, and feats if included)



  • Armor Class (based on equipment, size, and modifiers)



  • Abilities (Based on class)



  • Feats (should be somewhat based on class, though there's no direct connection)



  • Spells



5. Create a class which outputs all of a character's information to the console window. If you have any questions about the logistics of the program, please feel free to post your questions here in the C# Workshop - Project 2 Forum. I do, however, request you not actually submit you entire source code until at least 1 week has passed. Though feel free to ask for help about sections you're having a problem with. I encourage all people participating in the C# Workshop to complete this project, as you can be assured it will be used again in later projects. As before, I will try and provide hints every few days for the next week and a half or so, to help people keep moving. Feel free to use or not use my advice or hints, as they just provide insight into A WAY to implement this project, not necessarily THE WAY. Cheers and GOOD LUCK!

0 likes 0 comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement
Advertisement