diff --git a/Doc/MIS/Blaze_Brigade.XML b/Doc/MIS/Blaze_Brigade.XML new file mode 100644 index 0000000000000000000000000000000000000000..95cf6564ae44544de6fae413179421502624acdc --- /dev/null +++ b/Doc/MIS/Blaze_Brigade.XML @@ -0,0 +1,872 @@ +<?xml version="1.0"?> +<doc> + <assembly> + <name>Blaze_Brigade</name> + </assembly> + <members> + <member name="T:Model.BronzeBow"> + <summary> + Ranged weapon. + </summary> + This class represents a ranged weapon. + It implements the Weapon interface. + </member> + <member name="M:Model.BronzeBow.#ctor"> + Constructs a Bronze Bow. + </member> + <member name="T:Model.BronzeSword"> + <summary> + Melee weapon. + </summary> + This class represents a melee weapon. + It implements the Weapon interface. + </member> + <member name="M:Model.BronzeSword.#ctor"> + Constructs a Bronze Sword. + </member> + <member name="T:Model.DamageCalculations"> + <summary> + This class calculates all damage related calculations + </summary> + </member> + <member name="M:Model.DamageCalculations.getDamageDealt(Model.Unit,Model.Unit,System.Boolean)"> + passes in the 2 units, and a boolean on whether attack is physical (false), or magical (true), and returns damage dealt by taking into account an attacker's str/int, and defender def/res + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + *@param physOrMagic Boolean that tells the controller if it's physical or magical damage to be calculated + </member> + <member name="M:Model.DamageCalculations.getHitRate(Model.Unit,Model.Unit)"> + passes in the 2 units, and returns the hit rate as a percentage out of 100 by taking into account both unit's skill + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + </member> + <member name="M:Model.DamageCalculations.getCritRate(Model.Unit,Model.Unit)"> + passes in the 2 units, and returns the crit rate as a percentage out of 100 by taking into account both unit's skill + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + </member> + <member name="M:Model.DamageCalculations.getHitCount(Model.Unit,Model.Unit)"> + passes in then 2 units, and determines how many attacks the attacker makes by factoring in both unit's relative speed + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + </member> + <member name="M:Model.DamageCalculations.finalDamage(Model.Unit,Model.Unit,System.Boolean)"> + factors in damage dealt, hit rate, crit rate, and number of attacks (as in how above functions were calculated) to calculate actual damage dealt + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + *@param physOrMagic Boolean that tells the controller if it's physical or magical damage to be calculated + </member> + <member name="T:Model.Fireball"> + <summary> + Magic based weapon. + </summary> + This class represents a magic based weapon. + It implements the Weapon interface. + </member> + <member name="M:Model.Fireball.#ctor"> + Constructs a Fireball. + </member> + <member name="T:Model.GameState"> + <summary> + This class holds states in the scope of the entire gameplay + </summary> + </member> + <member name="P:Model.GameState.playableUnitSelected"> + Sets and gets if a playable unit is selected + </member> + <member name="P:Model.GameState.selectedUnit"> + Sets and gets a unit + </member> + <member name="P:Model.GameState.unitToAttack"> + Sets and gets the unit to attack + </member> + <member name="P:Model.GameState.currentPlayer"> + Sets and gets the current player + </member> + <member name="P:Model.GameState.enemyPlayer"> + Sets and gets the enemy player + </member> + <member name="P:Model.GameState.dropDownMenuOpen"> + Sets and gets whether drop down menu should be open + </member> + <member name="P:Model.GameState.attackConfirmOpen"> + Sets and gets whether attackConfirm menu should be open + </member> + <member name="P:Model.GameState.beforeMove"> + Sets and gets if a unit has moved yet or not. beforeMOve is true before unit moves, false after it moves. Used to determine what tiles are highlighted + </member> + <member name="T:Model.Graph"> + <summary> + Structure that represents the game map. + </summary> + Programmatical representation of the map grid. + Composed of Nodes that represent each tile on the grid. + </member> + <member name="P:Model.Graph.NumberOfNodes"> + Returns the total number of nodes in the graph. + </member> + <member name="P:Model.Graph.Width"> + Returns the width of the graph (by number of nodes). + </member> + <member name="P:Model.Graph.Height"> + Returns the height of the graph (by number of nodes). + </member> + <member name="M:Model.Graph.#ctor(System.Int32,System.Int32)"> + Creates a graph. + \param x Width of the graph. + \param y Height of the graph. + </member> + <member name="M:Model.Graph.getNode(System.Int32,System.Int32)"> + Returns the node on the graph at the specified position (by nodes). + \param x X position of the node (by nodes). + \param y Y position of the node (by nodes). + </member> + <member name="M:Model.Graph.getNode(Microsoft.Xna.Framework.Vector2)"> + Returns the node on the graph at the specified position (by pixel coordinates). + \param pixelCoordinates Pixel coordinates of the node, which contains the X coordinate and Y coordinate. + </member> + <member name="M:Model.Graph.getNode(System.Tuple{System.Int32,System.Int32})"> + Returns the node on the graph at the specified position (by nodes). + \param position Position of the node, which contains the X position and Y position (by nodes). + </member> + <member name="M:Model.Graph.setNode(Model.Node,System.Int32,System.Int32)"> + Sets the node at the specified position on the graph to the specified node. + \param node Node to set. + \param x X position of the node (by nodes). + \param y Y position of the node (by nodes). + </member> + <member name="T:Model.Node"> + <summary> + Structure that represents a tile on the game map grid. + </summary> + Programmatical representation of a tile on the map grid. + Holds information pertaining to the tile. + </member> + <member name="P:Model.Node.movabilityObstruction"> + Index for hindrance of the movability of a unit. + The higher the index, the less a unit can move through the tile. + Set to 0 by default (no hindrance). + </member> + <member name="P:Model.Node.isObstacle"> + Indicates whether a unit can stand inside the tile. + </member> + <member name="P:Model.Node.unitOnNode"> + Gets and sets the unit that is on the node. + </member> + <member name="F:Model.Node.positionX"> + X position of the node on the grid. + </member> + <member name="F:Model.Node.positionY"> + Y position of the node on the grid. + </member> + <member name="M:Model.Node.#ctor(System.Int32,System.Int32)"> + Creates a node. + \param x X position of the node on the graph (by node). + \param y Y position of the node on the graph (by node). + </member> + <member name="M:Model.Node.getPosition"> + Returns the position of the node on the graph. + </member> + <member name="M:Model.Node.getPositionX"> + Returns the X position of the node on the graph. + </member> + <member name="M:Model.Node.getPositionY"> + Returns the Y position of the node on the graph. + </member> + <member name="M:Model.Node.isOccupied"> + Indicates whether the node is occupied by a unit. + </member> + <member name="T:Model.Player"> + <summary> + Represents a Player in the game. + </summary> + Holds information pertaining to a Player in the game. + </member> + <member name="M:Model.Player.#ctor"> + Creates a player. Initializes a list of player owned units. + </member> + <member name="M:Model.Player.getUnits"> + Returns all player owned units. + </member> + <member name="M:Model.Player.getNumOfUnits"> + Returns the total number of player owned units. + </member> + <member name="M:Model.Player.ownsUnit(Model.Unit)"> + Indicates whether the player owns the specified unit. + \param unit Specified unit. + </member> + <member name="M:Model.Player.addUnit(Model.Unit)"> + Adds the specified unit to the player's units. + \param unit Unit to be added. + </member> + <member name="T:Model.Unit"> + <summary> + Unit Interface for Warrior, Mage, and Archer + </summary> + * This is the interface for the 3 playable unit classes, where the only + differences in the units will be their statistics and graphical assets + </member> + <member name="P:Model.Unit.Alive"> + Sets and returns whether or not unit is alive + </member> + <member name="P:Model.Unit.Hp"> + Sets and returns a unit's HP + </member> + <member name="P:Model.Unit.Str"> + Sets and returns a unit's Strength + </member> + <member name="P:Model.Unit.Int"> + Sets and returns a unit's Intelliegence + </member> + <member name="P:Model.Unit.Skill"> + Sets and returns a unit's Skill + </member> + <member name="P:Model.Unit.Speed"> + Sets and returns a unit's Speed + </member> + <member name="P:Model.Unit.Def"> + Sets and returns a unit's Defense + </member> + <member name="P:Model.Unit.Res"> + Sets and returns a unit's Resistance + </member> + <member name="P:Model.Unit.Level"> + Sets and returns a unit's Level + </member> + <member name="M:Model.Unit.getMovability"> + Returns the unit's movability range on grid (number of spaces the unit can move in one turn) + </member> + <member name="M:Model.Unit.getStats"> + returns all stats as an array + </member> + <member name="M:Model.Unit.setInitialStats"> + sets initial unit stats upon creation + </member> + <member name="P:Model.Unit.equippedWeapon"> + returns weapon the unit is currently equipping + </member> + <member name="M:Model.Unit.isButtonActive(View.ButtonType)"> + indicates whether a button has already been previously selected or not + </member> + <member name="M:Model.Unit.setButtonCoordinates(Microsoft.Xna.Framework.Vector2)"> + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + </member> + <member name="M:Model.Unit.animate(Model.Direction)"> + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + </member> + <member name="M:Model.Unit.getSpriteImage"> + returns the sprite image of the unit + </member> + <member name="M:Model.Unit.getButtonImage(View.ButtonType)"> + returns the button texture at index i + </member> + <member name="M:Model.Unit.getCharInfo"> + returns the char info screen texture + </member> + <member name="M:Model.Unit.getCharAttackInfo"> + returns the char attack info screen texture + </member> + <member name="P:Model.Unit.Position"> + gets and sets unit's position by tile + </member> + <member name="P:Model.Unit.PixelCoordinates"> + returns the pixel coordinate of the unit + </member> + <member name="M:Model.Unit.getButtons"> + returns the dropdown menu buttons of the unit + </member> + <member name="M:Model.Unit.getButtonOfType(View.ButtonType)"> + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + </member> + <member name="M:Model.Unit.getCurrentFrame"> + returns the current sprite frame in animation sequence + </member> + <member name="M:Model.Unit.getEquipableWeapons"> + returns array of equipable weapons + </member> + <member name="M:Model.Unit.getClass"> + returns unit's class (warrior, mage, archer) + </member> + <member name="T:Model.UnitType"> + defines the possible classes of a unit + </member> + <member name="T:Model.Warrior"> + <summary> + The Warrior model class, extends Unit + </summary> + </member> + <member name="P:Model.Warrior.Alive"> + Sets and returns whether or not unit is alive + </member> + <member name="P:Model.Warrior.Hp"> + Sets and returns a unit's HP + </member> + <member name="P:Model.Warrior.Speed"> + Sets and returns a unit's Speed + </member> + <member name="P:Model.Warrior.Def"> + Sets and returns a unit's Defense + </member> + <member name="P:Model.Warrior.Res"> + Sets and returns a unit's Resistance + </member> + <member name="P:Model.Warrior.Level"> + Sets and returns a unit's Level + </member> + <member name="P:Model.Warrior.equippedWeapon"> + returns weapon the unit is currently equipping + </member> + <member name="M:Model.Warrior.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,View.Button,View.Button,View.Button,View.Button,View.Button,Microsoft.Xna.Framework.Graphics.Texture2D,Microsoft.Xna.Framework.Graphics.Texture2D,Microsoft.Xna.Framework.Vector2,System.Int32)"> + The constructor for Unit Warrior + @param spriteImage The character sprite + @param attackButton The dropdownmenu attack button texture + @param moveButton The dropdownmenu move button texture + @param itemButton The dropdownmenu item button texture + @param waitButton The dropdownmenu wait button texture + @param confirmButton The attack confirm button texture + @param charInfo The character info popup texture + @param charAttackInfo The character attack menu popup texture + @param coordinates The unit's current coordinate on screen + @param player The player of which the unit belongs to + </member> + <member name="M:Model.Warrior.getMovability"> + Returns the unit's movability range on grid (number of spaces the unit can move in one turn) + </member> + <member name="M:Model.Warrior.getStats"> + returns all stats as an array + </member> + <member name="M:Model.Warrior.getClass"> + returns unit's class (warrior, mage, archer) + </member> + <member name="M:Model.Warrior.getSpriteImage"> + returns the sprite image of the unit + </member> + <member name="M:Model.Warrior.getButtonImage(View.ButtonType)"> + returns the button texture at index i + </member> + <member name="M:Model.Warrior.isButtonActive(View.ButtonType)"> + indicates whether a button has already been previously selected or not + </member> + <member name="M:Model.Warrior.getCharInfo"> + returns the char info screen texture + </member> + <member name="M:Model.Warrior.getCharAttackInfo"> + returns the char attack info screen texture + </member> + <member name="P:Model.Warrior.Position"> + gets and sets unit's position by tile + </member> + <member name="P:Model.Warrior.PixelCoordinates"> + returns the pixel coordinate of the unit + \n sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) + </member> + <member name="M:Model.Warrior.getButtons"> + returns the dropdown menu buttons of the unit + </member> + <member name="M:Model.Warrior.getButtonOfType(View.ButtonType)"> + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + </member> + <member name="M:Model.Warrior.setButtonCoordinates(Microsoft.Xna.Framework.Vector2)"> + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + </member> + <member name="M:Model.Warrior.getCurrentFrame"> + returns the current sprite frame in animation sequence + </member> + <member name="M:Model.Warrior.animate(Model.Direction)"> + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + </member> + <member name="T:Model.Weapon"> + <summary> + Weapon Interface to be implemented when creating new weapons. + </summary> + This is the interface to be used when creating new weapons. + The only differences in weapons will be their statistics. + </member> + <member name="P:Model.Weapon.name"> + Returns the name of the weapon. + </member> + <member name="P:Model.Weapon.modStr"> + Returns the weapon strength. + </member> + <member name="P:Model.Weapon.modInt"> + Returns the weapon intelligence. + </member> + <member name="P:Model.Weapon.modSkill"> + Returns the weapon skill. + </member> + <member name="P:Model.Weapon.range"> + Return the range of the weapon, where range[minimum range, maximum range]. + </member> + <member name="T:Controller.GameFunction"> + <summary> + Contains functions pertaining to the general game. + </summary> + This class holds useable functions in the scope of the entire gameplay. + </member> + <member name="M:Controller.GameFunction.isAnEnemyUnitInRange(Model.Graph,Model.Unit)"> + Returns whether an enemy unit is in range of the specified unit. + \param graph Graph representing the current game map. + \param unit Unit to find enemies for. + </member> + <member name="M:Controller.GameFunction.isEnemyUnitInRange(Model.Graph,Model.Unit,Model.Unit)"> + Returns whether or not the specified enemy unit is within attack range of the specified unit. + \param graph Graph representing the current game map. + \param unit Specified playable unit. + \param enemyUnit Specified enemy unit. + </member> + <member name="M:Controller.GameFunction.startTurn(Model.Player)"> + Must be called upon the start of a new turn. Resets all unit buttons and game states. + \param player Player of the new turn. + </member> + <member name="M:Controller.GameFunction.enemyUnitsInRange(Model.Graph,Model.Unit)"> + Returns all enemy units in strict attack range of the specified unit. + \param graph Graph representing the current game map. + \param unit Unit to find enemy units for. + </member> + <member name="M:Controller.GameFunction.hasUnitFinishedActions(Model.Unit)"> + Returns whether or not the specified unit can perform actions. + \param unit Specified unit. + </member> + <member name="M:Controller.GameFunction.isTurnOver"> + Returns whether or not the current turn is over. + </member> + <member name="M:Controller.GameFunction.isGameOver"> + Returns whether or not the game is over, based off win conditions. + </member> + <member name="M:Controller.GameFunction.isNodeAttackable(Model.UnitType,System.Int32,System.Int32,Model.Node)"> + Checks whether or not a specified node is attackable based on the unit's class and position. + \param unitType The class of the unit. + \param unitX The x coordinate of the unit (by nodes). + \param unitY The y coordinate of the unit (by nodes). + \param attackNode The specified attack node. + </member> + <member name="M:Controller.GameFunction.setMovableNodes(Model.Graph,Model.Unit)"> + Returns a list of nodes that the unit can move onto. + \param graph Graph representing the current game map. + \param Specified unit. + </member> + <member name="M:Controller.GameFunction.getAttackableNodes(Model.Graph,Model.Unit)"> + Returns a list of nodes that the unit can perform an attack on. Assumes the unit has not yet moved. + \param graph Graph representing the current game map. + \param unit Specfied unit. + </member> + <member name="M:Controller.GameFunction.getAttackRangeAfterMoving(Model.Graph,Model.Unit)"> + Returns whether or not the specified enemy unit is within attack range of the specified unit. Assumes the unit has already moved. + \param graph Graph representing the current game map. + \param Specified unit. + </member> + <member name="M:Controller.GameFunction.pathFinder(Model.Graph,Model.Unit,Model.Node,Model.Node)"> + Returns a list of nodes representing the path from start node to end node; if not path is valid, return null. + \param graph Graph representing the current game map. + \param unit Unit to move. + \param start Start Node of the path. + \param end End Node of the path + </member> + <member name="M:Controller.GameFunction.getAdjacentNodes(Model.Graph,Model.Node)"> + Returns moveable adjacent nodes of the specified node. Used for BFS path finding. + \param graph Graph representing the current game map. + \param Node to get moveable adjacent nodes of. + </member> + <member name="T:Controller.MouseHandler"> + <summary> + Handles all user mouse input. + </summary> + This class performs appropriate actions in response to user mouse input. + </member> + <member name="M:Controller.MouseHandler.updateMouse(Model.Graph)"> + Performs appropriate actions in response to mouse input. + \param graph Graph representing the current game map. + </member> + <member name="M:Controller.MouseHandler.setSelectedUnit(Model.Unit,System.Boolean)"> + Sets selection of unit state inside GameState. + \param unit Unit to set selection of. + \param selected Indicates whether or not a selection is occuring. + </member> + <member name="M:Controller.MouseHandler.getUnitOnNodeClicked(Model.Node,Microsoft.Xna.Framework.Vector2,Model.Player)"> + If unit exists where user clicked (that belongs to player), return it; else, return null. + \param clickedNode Node where user has clicked. + \param positionClicked position (by node) of where the user has clicked. + \param player Player that is currently moving. + </member> + <member name="M:Controller.MouseHandler.updateUnitPosition(Model.Graph,Microsoft.Xna.Framework.Vector2,System.Collections.Generic.LinkedList{Model.Node})"> + Updates the unit's position to the clicked position. + \param graph Graph representing the current game map. + \param position Position (by node) to move the unit to. + \param path Path to move the unit along. + </member> + <member name="M:Controller.Program.Main(System.String[])"> + <summary> + The main entry point for the application. + </summary> + </member> + <member name="T:Controller.Game"> + <summary> + Main Controller for game + </summary> + </member> + <member name="M:Controller.Game.Initialize"> + initializes game + </member> + <member name="M:Controller.Game.LoadContent"> + loads required textures and values for starting game + </member> + <member name="M:Controller.Game.Update(Microsoft.Xna.Framework.GameTime)"> + Updates game in real time - 60fps + </member> + <member name="M:Controller.Game.Draw(Microsoft.Xna.Framework.GameTime)"> + draws the game as it updates + </member> + <member name="T:View.HowToPlay"> + <summary> + How to Play Menu + </summary> + </member> + <member name="M:View.HowToPlay.#ctor"> + Constructor for HowToPlay window + </member> + <member name="M:View.HowToPlay.Exit_Click(System.Object,System.EventArgs)"> + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + </member> + <member name="M:View.HowToPlay.setQuitFalse"> + checks if Game State is no longer inside How To Play + </member> + <member name="M:View.HowToPlay.getQuit"> + returns if quit button is currently clicked + </member> + <member name="M:View.HowToPlay.next_Click(System.Object,System.EventArgs)"> + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + </member> + <member name="M:View.HowToPlay.setNextFalse"> + checks if Game State is no longer inside How To Play + </member> + <member name="M:View.HowToPlay.getNext"> + returns if quit button is currently clicked + </member> + <member name="F:View.HowToPlay.components"> + <summary> + Required designer variable. + </summary> + </member> + <member name="M:View.HowToPlay.Dispose(System.Boolean)"> + <summary> + Clean up any resources being used. + </summary> + <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + </member> + <member name="M:View.HowToPlay.InitializeComponent"> + <summary> + Required method for Designer support - do not modify + the contents of this method with the code editor. + </summary> + </member> + <member name="T:View.HowToPlay2"> + <summary> + How to Play Menu 2 is opened with next is clicked on How to Play Menu + </summary> + </member> + <member name="M:View.HowToPlay2.#ctor"> + Constructor for HowToPlay window + </member> + <member name="M:View.HowToPlay2.Exit_Click(System.Object,System.EventArgs)"> + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + </member> + <member name="M:View.HowToPlay2.setQuitFalse"> + checks if Game State is no longer inside How To Play + </member> + <member name="M:View.HowToPlay2.getQuit"> + returns if quit button is currently clicked + </member> + <member name="M:View.HowToPlay2.next_Click(System.Object,System.EventArgs)"> + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + </member> + <member name="M:View.HowToPlay2.setNextFalse"> + checks if Game State is no longer inside How To Play + </member> + <member name="M:View.HowToPlay2.getNext"> + returns if quit button is currently clicked + </member> + <member name="F:View.HowToPlay2.components"> + <summary> + Required designer variable. + </summary> + </member> + <member name="M:View.HowToPlay2.Dispose(System.Boolean)"> + <summary> + Clean up any resources being used. + </summary> + <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + </member> + <member name="M:View.HowToPlay2.InitializeComponent"> + <summary> + Required method for Designer support - do not modify + the contents of this method with the code editor. + </summary> + </member> + <member name="F:View.HowToPlay3.quit"> + <summary> + How to Play Menu 3 is opened with next is clicked on How to Play Menu 2 + </summary> + </member> + <member name="M:View.HowToPlay3.#ctor"> + Constructor for HowToPlay window + </member> + <member name="M:View.HowToPlay3.Exit_Click(System.Object,System.EventArgs)"> + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + </member> + <member name="M:View.HowToPlay3.setQuitFalse"> + checks if Game State is no longer inside How To Play + </member> + <member name="M:View.HowToPlay3.getQuit"> + returns if quit button is currently clicked + </member> + <member name="F:View.HowToPlay3.components"> + <summary> + Required designer variable. + </summary> + </member> + <member name="M:View.HowToPlay3.Dispose(System.Boolean)"> + <summary> + Clean up any resources being used. + </summary> + <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + </member> + <member name="M:View.HowToPlay3.InitializeComponent"> + <summary> + Required method for Designer support - do not modify + the contents of this method with the code editor. + </summary> + </member> + <member name="F:View.MainMenu.components"> + <summary> + Required designer variable. + </summary> + </member> + <member name="M:View.MainMenu.Dispose(System.Boolean)"> + <summary> + Clean up any resources being used. + </summary> + <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + </member> + <member name="M:View.MainMenu.InitializeComponent"> + <summary> + Required method for Designer support - do not modify + the contents of this method with the code editor. + </summary> + </member> + <member name="T:View.Button"> + <summary> + Buttons for the drop down menu buttons when selecting units + </summary> + </member> + <member name="M:View.Button.#ctor(View.ButtonType,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Graphics.Texture2D)"> + Constructor for button + * @param type Which button type + * @param coordinates The pixel coordinate of the button + * @param image The texture for the button + </member> + <member name="M:View.Button.getPixelCoordinates"> + Returns the pixel coordinate of the button + </member> + <member name="M:View.Button.getButtonType"> + Returns the button type + </member> + <member name="M:View.Button.getImage"> + Returns the button image + </member> + <member name="M:View.Button.setPixelCoordinates(System.Int32,System.Int32)"> + Sets the pixelCoordinate + * @param x The x coordinate of the button + * @param y the y coordinate of the button + </member> + <member name="T:View.ButtonType"> + Enumerated list for the possible button types + </member> + <member name="T:Blaze_Brigade.Resource1"> + <summary> + A strongly-typed resource class, for looking up localized strings, etc. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.ResourceManager"> + <summary> + Returns the cached ResourceManager instance used by this class. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.Culture"> + <summary> + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2archer"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2archer_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2archer_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2mage"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2mage_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2mage_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2warrior"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2warrior_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1._2warrior_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.archer"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.archer_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.archer_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.attack_confirm"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.attackableNode"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.confirm_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.Game_Map"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.instructions1"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.instructions2"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.instructions3"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.items"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.mage"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.mage_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.mage_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.MenuImage"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.move"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.moveableNode"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.wait"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.warrior"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.warrior_attack"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + <member name="P:Blaze_Brigade.Resource1.warrior_stats"> + <summary> + Looks up a localized resource of type System.Drawing.Bitmap. + </summary> + </member> + </members> +</doc> diff --git a/Doc/MIS/html/annotated.html b/Doc/MIS/html/annotated.html new file mode 100644 index 0000000000000000000000000000000000000000..4d5b82cd69217f84890250cf0fa807d4c612c73c --- /dev/null +++ b/Doc/MIS/html/annotated.html @@ -0,0 +1,126 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('annotated.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Class List</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory"> +<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_controller.html" target="_self">Controller</a></td><td class="desc">The controller in MVC. These classes will control how the <a class="el" href="namespace_model.html" title="The model in MVC. These classes contain the structure of the game, and will be controlled by Controll...">Model</a> is used, and how the <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a> will be displayed to the user. </td></tr> +<tr id="row_0_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_game.html" target="_self">Game</a></td><td class="desc">Main <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a> for game </td></tr> +<tr id="row_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_game_function.html" target="_self">GameFunction</a></td><td class="desc">Contains functions pertaining to the general game. </td></tr> +<tr id="row_0_2_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_mouse_handler.html" target="_self">MouseHandler</a></td><td class="desc">Handles all user mouse input. </td></tr> +<tr id="row_1_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_model.html" target="_self">Model</a></td><td class="desc">The model in MVC. These classes contain the structure of the game, and will be controlled by <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a>, and displayed in <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a>. </td></tr> +<tr id="row_1_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_archer.html" target="_self">Archer</a></td><td class="desc">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. </td></tr> +<tr id="row_1_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_bronze_bow.html" target="_self">BronzeBow</a></td><td class="desc">Ranged physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +<tr id="row_1_2_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_bronze_sword.html" target="_self">BronzeSword</a></td><td class="desc">Melee Physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +<tr id="row_1_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_damage_calculations.html" target="_self">DamageCalculations</a></td><td class="desc">This class calculates all damage related calculations </td></tr> +<tr id="row_1_4_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_fireball.html" target="_self">Fireball</a></td><td class="desc">Ranged Magical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +<tr id="row_1_5_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_game_state.html" target="_self">GameState</a></td><td class="desc">This class holds states in the scope of the entire gameplay </td></tr> +<tr id="row_1_6_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_graph.html" target="_self">Graph</a></td><td class="desc">Structure that represents the game map. </td></tr> +<tr id="row_1_7_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_mage.html" target="_self">Mage</a></td><td class="desc">The <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <br /> + This <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats </td></tr> +<tr id="row_1_8_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_node.html" target="_self">Node</a></td><td class="desc">Structure that represents a tile on the game map grid. </td></tr> +<tr id="row_1_9_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_player.html" target="_self">Player</a></td><td class="desc">Represents a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. </td></tr> +<tr id="row_1_10_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="interface_model_1_1_unit.html" target="_self">Unit</a></td><td class="desc"><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> Interface for <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a>, <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a>, and <a class="el" href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc...">Archer</a> </td></tr> +<tr id="row_1_11_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_warrior.html" target="_self">Warrior</a></td><td class="desc">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance </td></tr> +<tr id="row_1_12_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="interface_model_1_1_weapon.html" target="_self">Weapon</a></td><td class="desc"><a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> Interface to be implemented when creating new weapons. </td></tr> +<tr id="row_2_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_2_" class="arrow" onclick="toggleFolder('2_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_view.html" target="_self">View</a></td><td class="desc">The view in MVC. These classes deal with the view that the user sees in the game. </td></tr> +<tr id="row_2_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_button.html" target="_self">Button</a></td><td class="desc">Buttons for the drop down menu buttons when selecting units </td></tr> +<tr id="row_2_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play.html" target="_self">HowToPlay</a></td><td class="desc">How to Play Menu </td></tr> +<tr id="row_2_2_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play2.html" target="_self">HowToPlay2</a></td><td class="desc">How to Play Menu 2 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu </td></tr> +<tr id="row_2_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play3.html" target="_self">HowToPlay3</a></td><td class="desc">How to Play Menu 3 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu 2 </td></tr> +<tr id="row_2_4_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_main_menu.html" target="_self">MainMenu</a></td><td class="desc">The Main Menu class. This window is displayed upon starting game, and can link you to <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> playing the Game. </td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/annotated_dup.js b/Doc/MIS/html/annotated_dup.js new file mode 100644 index 0000000000000000000000000000000000000000..a4dd4eaf9147f8e2b65fd45d9c44f14992b3e72c --- /dev/null +++ b/Doc/MIS/html/annotated_dup.js @@ -0,0 +1,6 @@ +var annotated_dup = +[ + [ "Controller", "namespace_controller.html", "namespace_controller" ], + [ "Model", "namespace_model.html", "namespace_model" ], + [ "View", "namespace_view.html", "namespace_view" ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/bc_s.png b/Doc/MIS/html/bc_s.png new file mode 100644 index 0000000000000000000000000000000000000000..224b29aa9847d5a4b3902efd602b7ddf7d33e6c2 Binary files /dev/null and b/Doc/MIS/html/bc_s.png differ diff --git a/Doc/MIS/html/bdwn.png b/Doc/MIS/html/bdwn.png new file mode 100644 index 0000000000000000000000000000000000000000..940a0b950443a0bb1b216ac03c45b8a16c955452 Binary files /dev/null and b/Doc/MIS/html/bdwn.png differ diff --git a/Doc/MIS/html/class_controller_1_1_game-members.html b/Doc/MIS/html/class_controller_1_1_game-members.html new file mode 100644 index 0000000000000000000000000000000000000000..5ca04f8e85a5084bc5ab9a7c809c3859f892c789 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game-members.html @@ -0,0 +1,106 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_game.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Controller.Game Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_controller_1_1_game.html">Controller.Game</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f">Draw</a>(GameTime gameTime)</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Game</b>() (defined in <a class="el" href="class_controller_1_1_game.html">Controller.Game</a>)</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608">Initialize</a>()</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Instance</b> (defined in <a class="el" href="class_controller_1_1_game.html">Controller.Game</a>)</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770">LoadContent</a>()</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3">Update</a>(GameTime gameTime)</td><td class="entry"><a class="el" href="class_controller_1_1_game.html">Controller.Game</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_game.html b/Doc/MIS/html/class_controller_1_1_game.html new file mode 100644 index 0000000000000000000000000000000000000000..3f8626298048b3ab8f0cb350cecda7841c0af939 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game.html @@ -0,0 +1,243 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Controller.Game Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_game.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pro-methods">Protected Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_controller_1_1_game-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Controller.Game Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Main <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a> for game + <a href="class_controller_1_1_game.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Controller.Game:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_controller_1_1_game.png" usemap="#Controller.Game_map" alt=""/> + <map id="Controller.Game_map" name="Controller.Game_map"> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> +Protected Member Functions</h2></td></tr> +<tr class="memitem:aa3a270df3da66d794d8607e029bf9608"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608">Initialize</a> ()</td></tr> +<tr class="separator:aa3a270df3da66d794d8607e029bf9608"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a05c5bf033337a7f5130735e218772770"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770">LoadContent</a> ()</td></tr> +<tr class="separator:a05c5bf033337a7f5130735e218772770"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a57f4f23e2ca97a9ed820aab106a2ebe3"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3">Update</a> (GameTime gameTime)</td></tr> +<tr class="separator:a57f4f23e2ca97a9ed820aab106a2ebe3"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a243addf184836c81e6a4f793b0ba0a9f"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f">Draw</a> (GameTime gameTime)</td></tr> +<tr class="separator:a243addf184836c81e6a4f793b0ba0a9f"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a53f51c3ad8d59f44f8ab6aee59c0fbec"><td class="memItemLeft" align="right" valign="top"><a id="a53f51c3ad8d59f44f8ab6aee59c0fbec"></a> +static <a class="el" href="class_controller_1_1_game.html">Game</a> </td><td class="memItemRight" valign="bottom"><b>Instance</b><code> [get]</code></td></tr> +<tr class="separator:a53f51c3ad8d59f44f8ab6aee59c0fbec"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Main <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a> for game </p> +</div><h2 class="groupheader">Member Function Documentation</h2> +<a id="a243addf184836c81e6a4f793b0ba0a9f"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a243addf184836c81e6a4f793b0ba0a9f">§ </a></span>Draw()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void Controller.Game.Draw </td> + <td>(</td> + <td class="paramtype">GameTime </td> + <td class="paramname"><em>gameTime</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>draws the game as it updates </p> + +</div> +</div> +<a id="aa3a270df3da66d794d8607e029bf9608"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa3a270df3da66d794d8607e029bf9608">§ </a></span>Initialize()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void Controller.Game.Initialize </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>initializes game </p> + +</div> +</div> +<a id="a05c5bf033337a7f5130735e218772770"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a05c5bf033337a7f5130735e218772770">§ </a></span>LoadContent()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void Controller.Game.LoadContent </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>loads required textures and values for starting game </p> + +</div> +</div> +<a id="a57f4f23e2ca97a9ed820aab106a2ebe3"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a57f4f23e2ca97a9ed820aab106a2ebe3">§ </a></span>Update()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void Controller.Game.Update </td> + <td>(</td> + <td class="paramtype">GameTime </td> + <td class="paramname"><em>gameTime</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Updates game in real time - 60fps </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Game.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_controller.html">Controller</a></li><li class="navelem"><a class="el" href="class_controller_1_1_game.html">Game</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_game.js b/Doc/MIS/html/class_controller_1_1_game.js new file mode 100644 index 0000000000000000000000000000000000000000..89db7f47add692a13eeecd1b7214f5767c885493 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game.js @@ -0,0 +1,9 @@ +var class_controller_1_1_game = +[ + [ "Game", "class_controller_1_1_game.html#a93f1824d202daf7132b24039b97eaa7a", null ], + [ "Draw", "class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f", null ], + [ "Initialize", "class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608", null ], + [ "LoadContent", "class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770", null ], + [ "Update", "class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3", null ], + [ "Instance", "class_controller_1_1_game.html#a53f51c3ad8d59f44f8ab6aee59c0fbec", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_controller_1_1_game.png b/Doc/MIS/html/class_controller_1_1_game.png new file mode 100644 index 0000000000000000000000000000000000000000..e969555669eaba602166d33d9a841ced6a03bb27 Binary files /dev/null and b/Doc/MIS/html/class_controller_1_1_game.png differ diff --git a/Doc/MIS/html/class_controller_1_1_game_function-members.html b/Doc/MIS/html/class_controller_1_1_game_function-members.html new file mode 100644 index 0000000000000000000000000000000000000000..257d2134e36757f6eea89b19cd60129c7eb09ce0 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game_function-members.html @@ -0,0 +1,111 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_game_function.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Controller.GameFunction Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0">enemyUnitsInRange</a>(Graph graph, Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50">getAttackableNodes</a>(Graph graph, Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5">getAttackRangeAfterMoving</a>(Graph graph, Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab">hasUnitFinishedActions</a>(Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c">isAnEnemyUnitInRange</a>(Graph graph, Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517">isEnemyUnitInRange</a>(Graph graph, Unit unit, Unit enemyUnit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43">isGameOver</a>()</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385">isTurnOver</a>()</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8">pathFinder</a>(Graph graph, Unit unit, Node start, Node end)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93">setMovableNodes</a>(Graph graph, Unit unit)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5">startTurn</a>(Player player)</td><td class="entry"><a class="el" href="class_controller_1_1_game_function.html">Controller.GameFunction</a></td><td class="entry"><span class="mlabel">static</span></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_game_function.html b/Doc/MIS/html/class_controller_1_1_game_function.html new file mode 100644 index 0000000000000000000000000000000000000000..ea813054056f435c6396c1a3872c75cfff77801d --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game_function.html @@ -0,0 +1,575 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Controller.GameFunction Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_game_function.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-static-methods">Static Public Member Functions</a> | +<a href="class_controller_1_1_game_function-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Controller.GameFunction Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Contains functions pertaining to the general game. + <a href="class_controller_1_1_game_function.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> +Static Public Member Functions</h2></td></tr> +<tr class="memitem:a22e673cfb256b9f2428f0fd81546bd7c"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c">isAnEnemyUnitInRange</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a22e673cfb256b9f2428f0fd81546bd7c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0e573edb9537563b1ef6a854739c5517"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517">isEnemyUnitInRange</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit, <a class="el" href="interface_model_1_1_unit.html">Unit</a> enemyUnit)</td></tr> +<tr class="separator:a0e573edb9537563b1ef6a854739c5517"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aad2a98ed072875b85bb7168c805db0e5"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5">startTurn</a> (<a class="el" href="class_model_1_1_player.html">Player</a> player)</td></tr> +<tr class="separator:aad2a98ed072875b85bb7168c805db0e5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0854a33c1864a8196c1037fd88d7b1c0"><td class="memItemLeft" align="right" valign="top">static LinkedList< <a class="el" href="interface_model_1_1_unit.html">Unit</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0">enemyUnitsInRange</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a0854a33c1864a8196c1037fd88d7b1c0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ac23bfd530d3a087da49065fce84821ab"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab">hasUnitFinishedActions</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:ac23bfd530d3a087da49065fce84821ab"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad685bf2e60bc063664f47ac2cc1fc385"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385">isTurnOver</a> ()</td></tr> +<tr class="separator:ad685bf2e60bc063664f47ac2cc1fc385"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0696007a9d80f8e6ae9b28b3a3ba4b43"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43">isGameOver</a> ()</td></tr> +<tr class="separator:a0696007a9d80f8e6ae9b28b3a3ba4b43"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9910af0161e502a272fa6fbc025d6a93"><td class="memItemLeft" align="right" valign="top">static LinkedList< <a class="el" href="class_model_1_1_node.html">Node</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93">setMovableNodes</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a9910af0161e502a272fa6fbc025d6a93"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad6e9b27c164633455ec7433d3b7b6f50"><td class="memItemLeft" align="right" valign="top">static LinkedList< <a class="el" href="class_model_1_1_node.html">Node</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50">getAttackableNodes</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:ad6e9b27c164633455ec7433d3b7b6f50"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6b9f4cc1fad812ac925b242d0debe4a5"><td class="memItemLeft" align="right" valign="top">static LinkedList< <a class="el" href="class_model_1_1_node.html">Node</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5">getAttackRangeAfterMoving</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a6b9f4cc1fad812ac925b242d0debe4a5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4d9123c98fec7919087096f35838acc8"><td class="memItemLeft" align="right" valign="top">static LinkedList< <a class="el" href="class_model_1_1_node.html">Node</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8">pathFinder</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph, <a class="el" href="interface_model_1_1_unit.html">Unit</a> unit, <a class="el" href="class_model_1_1_node.html">Node</a> start, <a class="el" href="class_model_1_1_node.html">Node</a> end)</td></tr> +<tr class="separator:a4d9123c98fec7919087096f35838acc8"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Contains functions pertaining to the general game. </p> +<p>This class holds useable functions in the scope of the entire gameplay. </p> +</div><h2 class="groupheader">Member Function Documentation</h2> +<a id="a0854a33c1864a8196c1037fd88d7b1c0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0854a33c1864a8196c1037fd88d7b1c0">§ </a></span>enemyUnitsInRange()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static LinkedList<<a class="el" href="interface_model_1_1_unit.html">Unit</a>> Controller.GameFunction.enemyUnitsInRange </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns all enemy units in strict attack range of the specified unit. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">unit</td><td>Unit to find enemy units for. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="ad6e9b27c164633455ec7433d3b7b6f50"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad6e9b27c164633455ec7433d3b7b6f50">§ </a></span>getAttackableNodes()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static LinkedList<<a class="el" href="class_model_1_1_node.html">Node</a>> Controller.GameFunction.getAttackableNodes </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns a list of nodes that the unit can perform an attack on. Assumes the unit has not yet moved. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">unit</td><td>Specfied unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a6b9f4cc1fad812ac925b242d0debe4a5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6b9f4cc1fad812ac925b242d0debe4a5">§ </a></span>getAttackRangeAfterMoving()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static LinkedList<<a class="el" href="class_model_1_1_node.html">Node</a>> Controller.GameFunction.getAttackRangeAfterMoving </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether or not the specified enemy unit is within attack range of the specified unit. Assumes the unit has already moved. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">Specified</td><td>unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="ac23bfd530d3a087da49065fce84821ab"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac23bfd530d3a087da49065fce84821ab">§ </a></span>hasUnitFinishedActions()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static bool Controller.GameFunction.hasUnitFinishedActions </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether or not the specified unit can perform actions. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">unit</td><td>Specified unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a22e673cfb256b9f2428f0fd81546bd7c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a22e673cfb256b9f2428f0fd81546bd7c">§ </a></span>isAnEnemyUnitInRange()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static bool Controller.GameFunction.isAnEnemyUnitInRange </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether an enemy unit is in range of the specified unit. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">unit</td><td>Unit to find enemies for. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a0e573edb9537563b1ef6a854739c5517"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0e573edb9537563b1ef6a854739c5517">§ </a></span>isEnemyUnitInRange()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static bool Controller.GameFunction.isEnemyUnitInRange </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>enemyUnit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether or not the specified enemy unit is within attack range of the specified unit. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">unit</td><td>Specified playable unit. </td></tr> + <tr><td class="paramname">enemyUnit</td><td>Specified enemy unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a0696007a9d80f8e6ae9b28b3a3ba4b43"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0696007a9d80f8e6ae9b28b3a3ba4b43">§ </a></span>isGameOver()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static bool Controller.GameFunction.isGameOver </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether or not the game is over, based off win conditions. </p> + +</div> +</div> +<a id="ad685bf2e60bc063664f47ac2cc1fc385"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad685bf2e60bc063664f47ac2cc1fc385">§ </a></span>isTurnOver()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static bool Controller.GameFunction.isTurnOver </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns whether or not the current turn is over. </p> + +</div> +</div> +<a id="a4d9123c98fec7919087096f35838acc8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4d9123c98fec7919087096f35838acc8">§ </a></span>pathFinder()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static LinkedList<<a class="el" href="class_model_1_1_node.html">Node</a>> Controller.GameFunction.pathFinder </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_model_1_1_node.html">Node</a> </td> + <td class="paramname"><em>start</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_model_1_1_node.html">Node</a> </td> + <td class="paramname"><em>end</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns a list of nodes representing the path from start node to end node; if not path is valid, return null. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">unit</td><td>Unit to move. </td></tr> + <tr><td class="paramname">start</td><td>Start Node of the path. </td></tr> + <tr><td class="paramname">end</td><td>End Node of the path </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a9910af0161e502a272fa6fbc025d6a93"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9910af0161e502a272fa6fbc025d6a93">§ </a></span>setMovableNodes()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static LinkedList<<a class="el" href="class_model_1_1_node.html">Node</a>> Controller.GameFunction.setMovableNodes </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns a list of nodes that the unit can move onto. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + <tr><td class="paramname">Specified</td><td>unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="aad2a98ed072875b85bb7168c805db0e5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aad2a98ed072875b85bb7168c805db0e5">§ </a></span>startTurn()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static void Controller.GameFunction.startTurn </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_player.html">Player</a> </td> + <td class="paramname"><em>player</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Must be called upon the start of a new turn. Resets all unit buttons and game states. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">player</td><td>Player of the new turn. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/GameFunction.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_controller.html">Controller</a></li><li class="navelem"><a class="el" href="class_controller_1_1_game_function.html">GameFunction</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_game_function.js b/Doc/MIS/html/class_controller_1_1_game_function.js new file mode 100644 index 0000000000000000000000000000000000000000..d07261ac3f5317a6d0d9274221836c61802ec681 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_game_function.js @@ -0,0 +1,14 @@ +var class_controller_1_1_game_function = +[ + [ "enemyUnitsInRange", "class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0", null ], + [ "getAttackableNodes", "class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50", null ], + [ "getAttackRangeAfterMoving", "class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5", null ], + [ "hasUnitFinishedActions", "class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab", null ], + [ "isAnEnemyUnitInRange", "class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c", null ], + [ "isEnemyUnitInRange", "class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517", null ], + [ "isGameOver", "class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43", null ], + [ "isTurnOver", "class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385", null ], + [ "pathFinder", "class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8", null ], + [ "setMovableNodes", "class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93", null ], + [ "startTurn", "class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_controller_1_1_mouse_handler-members.html b/Doc/MIS/html/class_controller_1_1_mouse_handler-members.html new file mode 100644 index 0000000000000000000000000000000000000000..fa225b6758cc4b1a351b38279ce4c45917b3eb45 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_mouse_handler-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_mouse_handler.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Controller.MouseHandler Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_controller_1_1_mouse_handler.html">Controller.MouseHandler</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6">updateMouse</a>(Graph graph)</td><td class="entry"><a class="el" href="class_controller_1_1_mouse_handler.html">Controller.MouseHandler</a></td><td class="entry"><span class="mlabel">static</span></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_mouse_handler.html b/Doc/MIS/html/class_controller_1_1_mouse_handler.html new file mode 100644 index 0000000000000000000000000000000000000000..3612482f88c5612f133fba3f389d8387c20ce3f9 --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_mouse_handler.html @@ -0,0 +1,149 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Controller.MouseHandler Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_controller_1_1_mouse_handler.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-static-methods">Static Public Member Functions</a> | +<a href="class_controller_1_1_mouse_handler-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Controller.MouseHandler Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Handles all user mouse input. + <a href="class_controller_1_1_mouse_handler.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> +Static Public Member Functions</h2></td></tr> +<tr class="memitem:a13cccfe6989e87549027a0dcc694d1f6"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6">updateMouse</a> (<a class="el" href="class_model_1_1_graph.html">Graph</a> graph)</td></tr> +<tr class="separator:a13cccfe6989e87549027a0dcc694d1f6"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Handles all user mouse input. </p> +<p>This class performs appropriate actions in response to user mouse input. </p> +</div><h2 class="groupheader">Member Function Documentation</h2> +<a id="a13cccfe6989e87549027a0dcc694d1f6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a13cccfe6989e87549027a0dcc694d1f6">§ </a></span>updateMouse()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static void Controller.MouseHandler.updateMouse </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_graph.html">Graph</a> </td> + <td class="paramname"><em>graph</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Performs appropriate actions in response to mouse input. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">graph</td><td>Graph representing the current game map. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_controller.html">Controller</a></li><li class="navelem"><a class="el" href="class_controller_1_1_mouse_handler.html">MouseHandler</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_controller_1_1_mouse_handler.js b/Doc/MIS/html/class_controller_1_1_mouse_handler.js new file mode 100644 index 0000000000000000000000000000000000000000..0736c3acd764f7d0a4ef0c44b3e767777a729ffc --- /dev/null +++ b/Doc/MIS/html/class_controller_1_1_mouse_handler.js @@ -0,0 +1,4 @@ +var class_controller_1_1_mouse_handler = +[ + [ "updateMouse", "class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_archer-members.html b/Doc/MIS/html/class_model_1_1_archer-members.html new file mode 100644 index 0000000000000000000000000000000000000000..e071637b914c175b7270ba22dae985290ad5c02c --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_archer-members.html @@ -0,0 +1,128 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_archer.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Archer Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_archer.html">Model.Archer</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16">Alive</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28">animate</a>(Direction direction)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d">Archer</a>(Texture2D spriteImage, Button attackButton, Button moveButton, Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113">Def</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9">equippedWeapon</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756">getButtonImage</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff">getButtonOfType</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82">getButtons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10">getCharAttackInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9">getCharInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4">getClass</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2">getCurrentFrame</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b">getEquipableWeapons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d">getMovability</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2">getSpriteImage</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d">getStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f">Hp</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Int</b> (defined in <a class="el" href="class_model_1_1_archer.html">Model.Archer</a>)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e">isButtonActive</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6">Level</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e">PixelCoordinates</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533">Position</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7">Res</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc">setButtonCoordinates</a>(Vector2 pixelCoordinates)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2">setInitialStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Skill</b> (defined in <a class="el" href="class_model_1_1_archer.html">Model.Archer</a>)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252">Speed</a></td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Str</b> (defined in <a class="el" href="class_model_1_1_archer.html">Model.Archer</a>)</td><td class="entry"><a class="el" href="class_model_1_1_archer.html">Model.Archer</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_archer.html b/Doc/MIS/html/class_model_1_1_archer.html new file mode 100644 index 0000000000000000000000000000000000000000..8083301fb225b2b6bc3ffcf168062ca4df561da9 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_archer.html @@ -0,0 +1,832 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Archer Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_archer.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_archer-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Archer Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. + <a href="class_model_1_1_archer.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Archer:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_archer.png" usemap="#Model.Archer_map" alt=""/> + <map id="Model.Archer_map" name="Model.Archer_map"> +<area href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer " alt="Model.Unit" shape="rect" coords="0,0,91,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:ac009b1b8fdcdd5f004636f2929a24f1d"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d">Archer</a> (Texture2D spriteImage, <a class="el" href="class_view_1_1_button.html">Button</a> attackButton, <a class="el" href="class_view_1_1_button.html">Button</a> moveButton, <a class="el" href="class_view_1_1_button.html">Button</a> itemButton, <a class="el" href="class_view_1_1_button.html">Button</a> waitButton, <a class="el" href="class_view_1_1_button.html">Button</a> confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td></tr> +<tr class="separator:ac009b1b8fdcdd5f004636f2929a24f1d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4de690927cc791da8de82e7bedf13cf2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2">setInitialStats</a> ()</td></tr> +<tr class="separator:a4de690927cc791da8de82e7bedf13cf2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a29de04ac6f33498c7b0b11aa7000846d"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d">getMovability</a> ()</td></tr> +<tr class="separator:a29de04ac6f33498c7b0b11aa7000846d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6b4732f3d000afcc82512e5e35ede43d"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d">getStats</a> ()</td></tr> +<tr class="separator:a6b4732f3d000afcc82512e5e35ede43d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a7a0e7ac7aae02a3f7ceb19a5581f114b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b">getEquipableWeapons</a> ()</td></tr> +<tr class="separator:a7a0e7ac7aae02a3f7ceb19a5581f114b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:abd8b38fd96a6bf778cd635afd1ae13a4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4">getClass</a> ()</td></tr> +<tr class="separator:abd8b38fd96a6bf778cd635afd1ae13a4"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4efe27d91b20d37fee32b7144bbe4af2"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2">getSpriteImage</a> ()</td></tr> +<tr class="separator:a4efe27d91b20d37fee32b7144bbe4af2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa643e878609d234a3fddca294d4d6756"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756">getButtonImage</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:aa643e878609d234a3fddca294d4d6756"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae2eb6257593149ac06d4518e3ee52d5e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e">isButtonActive</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:ae2eb6257593149ac06d4518e3ee52d5e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4b1194492d3f9f83fe9842691fc110d9"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9">getCharInfo</a> ()</td></tr> +<tr class="separator:a4b1194492d3f9f83fe9842691fc110d9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9f123fc3a324eaf0041462dd40b5ae10"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10">getCharAttackInfo</a> ()</td></tr> +<tr class="separator:a9f123fc3a324eaf0041462dd40b5ae10"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bbc5e879beafc25e5a33ff80c59ae82"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82">getButtons</a> ()</td></tr> +<tr class="separator:a9bbc5e879beafc25e5a33ff80c59ae82"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a31d5c71c429ebedef4a23b84b93408ff"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff">getButtonOfType</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a31d5c71c429ebedef4a23b84b93408ff"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a18527b95d270412cf4e8c7500c6635fc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc">setButtonCoordinates</a> (Vector2 pixelCoordinates)</td></tr> +<tr class="separator:a18527b95d270412cf4e8c7500c6635fc"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a5fc8cd405796886cde8f15f3ad095ca2"><td class="memItemLeft" align="right" valign="top">Rectangle </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2">getCurrentFrame</a> ()</td></tr> +<tr class="separator:a5fc8cd405796886cde8f15f3ad095ca2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a98d25f7b4b7f365402668bcfc03eff28"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28">animate</a> (Direction direction)</td></tr> +<tr class="separator:a98d25f7b4b7f365402668bcfc03eff28"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:acfa916c37c6191050a84e51100f12f16"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:acfa916c37c6191050a84e51100f12f16"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af7364e7c13118293dac16c9caacd180f"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:af7364e7c13118293dac16c9caacd180f"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a28caf09ef08983577d2f392c72055252"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:a28caf09ef08983577d2f392c72055252"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9aff46cc90c3542276c55ca22a37b113"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:a9aff46cc90c3542276c55ca22a37b113"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3310ec0b0903dbfb836be9663a8778d7"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:a3310ec0b0903dbfb836be9663a8778d7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad2e43d0f3cf52494c703de0c7bfd8af6"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:ad2e43d0f3cf52494c703de0c7bfd8af6"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ac45f0a6f72a9d629b36e1486e444a6c9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:ac45f0a6f72a9d629b36e1486e444a6c9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a149681510408d9e6aa130918480c1721"><td class="memItemLeft" align="right" valign="top"><a id="a149681510408d9e6aa130918480c1721"></a> +int </td><td class="memItemRight" valign="bottom"><b>Str</b><code> [get, set]</code></td></tr> +<tr class="separator:a149681510408d9e6aa130918480c1721"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a2a62fe1362df536254e676fa4d294e9e"><td class="memItemLeft" align="right" valign="top"><a id="a2a62fe1362df536254e676fa4d294e9e"></a> +int </td><td class="memItemRight" valign="bottom"><b>Int</b><code> [get, set]</code></td></tr> +<tr class="separator:a2a62fe1362df536254e676fa4d294e9e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae89109c98b07771c74f25a75f4a5a76a"><td class="memItemLeft" align="right" valign="top"><a id="ae89109c98b07771c74f25a75f4a5a76a"></a> +int </td><td class="memItemRight" valign="bottom"><b>Skill</b><code> [get, set]</code></td></tr> +<tr class="separator:ae89109c98b07771c74f25a75f4a5a76a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a29c86df7ddc2c4cc8b31442f6e33f533"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a29c86df7ddc2c4cc8b31442f6e33f533"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa923ebbd8825483f6d3ac8002c26b49e"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:aa923ebbd8825483f6d3ac8002c26b49e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_unit"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_unit')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td></tr> +<tr class="memitem:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Str</a><code> [get, set]</code></td></tr> +<tr class="separator:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Int</a><code> [get, set]</code></td></tr> +<tr class="separator:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Skill</a><code> [get, set]</code></td></tr> +<tr class="separator:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="ac009b1b8fdcdd5f004636f2929a24f1d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac009b1b8fdcdd5f004636f2929a24f1d">§ </a></span>Archer()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Archer.Archer </td> + <td>(</td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>spriteImage</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>attackButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>moveButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>itemButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>waitButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>confirmButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charAttackInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>coordinates</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>player</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>The constructor for <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">spriteImage</td><td>The character sprite </td></tr> + <tr><td class="paramname">attackButton</td><td>The dropdownmenu attack button texture </td></tr> + <tr><td class="paramname">moveButton</td><td>The dropdownmenu move button texture </td></tr> + <tr><td class="paramname">itemButton</td><td>The dropdownmenu item button texture </td></tr> + <tr><td class="paramname">waitButton</td><td>The dropdownmenu wait button texture </td></tr> + <tr><td class="paramname">confirmButton</td><td>The attack confirm button texture </td></tr> + <tr><td class="paramname">charInfo</td><td>The character info popup texture </td></tr> + <tr><td class="paramname">charAttackInfo</td><td>The character attack menu popup texture </td></tr> + <tr><td class="paramname">coordinates</td><td>The unit's current coordinate on screen </td></tr> + <tr><td class="paramname">player</td><td>The player of which the unit belongs to </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a98d25f7b4b7f365402668bcfc03eff28"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a98d25f7b4b7f365402668bcfc03eff28">§ </a></span>animate()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Archer.animate </td> + <td>(</td> + <td class="paramtype">Direction </td> + <td class="paramname"><em>direction</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>animate sprite walking the direction specified </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">direction</td><td>The direction the unit is moving in </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">Model.Unit</a>.</p> + +</div> +</div> +<a id="aa643e878609d234a3fddca294d4d6756"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa643e878609d234a3fddca294d4d6756">§ </a></span>getButtonImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Archer.getButtonImage </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the button texture at index i </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">Model.Unit</a>.</p> + +</div> +</div> +<a id="a31d5c71c429ebedef4a23b84b93408ff"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a31d5c71c429ebedef4a23b84b93408ff">§ </a></span>getButtonOfType()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> Model.Archer.getButtonOfType </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button type </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">buttonType</td><td>The button to return (Move, Attack, Item, Wait, and attack confirm) </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">Model.Unit</a>.</p> + +</div> +</div> +<a id="a9bbc5e879beafc25e5a33ff80c59ae82"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9bbc5e879beafc25e5a33ff80c59ae82">§ </a></span>getButtons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> [] Model.Archer.getButtons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the dropdown menu buttons of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">Model.Unit</a>.</p> + +</div> +</div> +<a id="a9f123fc3a324eaf0041462dd40b5ae10"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9f123fc3a324eaf0041462dd40b5ae10">§ </a></span>getCharAttackInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Archer.getCharAttackInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char attack info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">Model.Unit</a>.</p> + +</div> +</div> +<a id="a4b1194492d3f9f83fe9842691fc110d9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4b1194492d3f9f83fe9842691fc110d9">§ </a></span>getCharInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Archer.getCharInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">Model.Unit</a>.</p> + +</div> +</div> +<a id="abd8b38fd96a6bf778cd635afd1ae13a4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#abd8b38fd96a6bf778cd635afd1ae13a4">§ </a></span>getClass()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> Model.Archer.getClass </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns unit's class (warrior, mage, archer) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">Model.Unit</a>.</p> + +</div> +</div> +<a id="a5fc8cd405796886cde8f15f3ad095ca2"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a5fc8cd405796886cde8f15f3ad095ca2">§ </a></span>getCurrentFrame()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Rectangle Model.Archer.getCurrentFrame </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the current sprite frame in animation sequence </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">Model.Unit</a>.</p> + +</div> +</div> +<a id="a7a0e7ac7aae02a3f7ceb19a5581f114b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a7a0e7ac7aae02a3f7ceb19a5581f114b">§ </a></span>getEquipableWeapons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] Model.Archer.getEquipableWeapons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns array of equipable weapons </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">Model.Unit</a>.</p> + +</div> +</div> +<a id="a29de04ac6f33498c7b0b11aa7000846d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a29de04ac6f33498c7b0b11aa7000846d">§ </a></span>getMovability()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.getMovability </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the unit's movability range on grid (number of spaces the unit can move in one turn) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">Model.Unit</a>.</p> + +</div> +</div> +<a id="a4efe27d91b20d37fee32b7144bbe4af2"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4efe27d91b20d37fee32b7144bbe4af2">§ </a></span>getSpriteImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Archer.getSpriteImage </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the sprite image of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">Model.Unit</a>.</p> + +</div> +</div> +<a id="a6b4732f3d000afcc82512e5e35ede43d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6b4732f3d000afcc82512e5e35ede43d">§ </a></span>getStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int [] Model.Archer.getStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns all stats as an array </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">Model.Unit</a>.</p> + +</div> +</div> +<a id="ae2eb6257593149ac06d4518e3ee52d5e"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae2eb6257593149ac06d4518e3ee52d5e">§ </a></span>isButtonActive()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Archer.isButtonActive </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>indicates whether a button has already been previously selected or not </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">Model.Unit</a>.</p> + +</div> +</div> +<a id="a18527b95d270412cf4e8c7500c6635fc"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a18527b95d270412cf4e8c7500c6635fc">§ </a></span>setButtonCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Archer.setButtonCoordinates </td> + <td>(</td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>pixelCoordinates</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets the coordinates of menu buttons </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">pixelCoordinates</td><td>The pixel coordinate of the button </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">Model.Unit</a>.</p> + +</div> +</div> +<a id="a4de690927cc791da8de82e7bedf13cf2"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4de690927cc791da8de82e7bedf13cf2">§ </a></span>setInitialStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Archer.setInitialStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets initial unit stats upon creation </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">Model.Unit</a>.</p> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="acfa916c37c6191050a84e51100f12f16"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acfa916c37c6191050a84e51100f12f16">§ </a></span>Alive</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Archer.Alive</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns whether or not unit is alive </p> + +</div> +</div> +<a id="a9aff46cc90c3542276c55ca22a37b113"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9aff46cc90c3542276c55ca22a37b113">§ </a></span>Def</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.Def</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Defense </p> + +</div> +</div> +<a id="ac45f0a6f72a9d629b36e1486e444a6c9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac45f0a6f72a9d629b36e1486e444a6c9">§ </a></span>equippedWeapon</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> Model.Archer.equippedWeapon</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns weapon the unit is currently equipping </p> + +</div> +</div> +<a id="af7364e7c13118293dac16c9caacd180f"></a> +<h2 class="memtitle"><span class="permalink"><a href="#af7364e7c13118293dac16c9caacd180f">§ </a></span>Hp</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.Hp</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's HP </p> + +</div> +</div> +<a id="ad2e43d0f3cf52494c703de0c7bfd8af6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad2e43d0f3cf52494c703de0c7bfd8af6">§ </a></span>Level</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.Level</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Level </p> + +</div> +</div> +<a id="aa923ebbd8825483f6d3ac8002c26b49e"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa923ebbd8825483f6d3ac8002c26b49e">§ </a></span>PixelCoordinates</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Vector2 Model.Archer.PixelCoordinates</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns the pixel coordinate of the unit <br /> + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) </p> + +</div> +</div> +<a id="a29c86df7ddc2c4cc8b31442f6e33f533"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a29c86df7ddc2c4cc8b31442f6e33f533">§ </a></span>Position</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Tuple<int, int> Model.Archer.Position</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>gets and sets unit's position by tile </p> + +</div> +</div> +<a id="a3310ec0b0903dbfb836be9663a8778d7"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a3310ec0b0903dbfb836be9663a8778d7">§ </a></span>Res</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.Res</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Resistance </p> + +</div> +</div> +<a id="a28caf09ef08983577d2f392c72055252"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a28caf09ef08983577d2f392c72055252">§ </a></span>Speed</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Archer.Speed</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Speed </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Archer.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_archer.html">Archer</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_archer.js b/Doc/MIS/html/class_model_1_1_archer.js new file mode 100644 index 0000000000000000000000000000000000000000..064da6030e64e8a62fb3c0e29abc0f0ad8e852a8 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_archer.js @@ -0,0 +1,31 @@ +var class_model_1_1_archer = +[ + [ "Archer", "class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d", null ], + [ "animate", "class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28", null ], + [ "getButtonImage", "class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756", null ], + [ "getButtonOfType", "class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff", null ], + [ "getButtons", "class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82", null ], + [ "getCharAttackInfo", "class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10", null ], + [ "getCharInfo", "class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9", null ], + [ "getClass", "class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4", null ], + [ "getCurrentFrame", "class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2", null ], + [ "getEquipableWeapons", "class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b", null ], + [ "getMovability", "class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d", null ], + [ "getSpriteImage", "class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2", null ], + [ "getStats", "class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d", null ], + [ "isButtonActive", "class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e", null ], + [ "setButtonCoordinates", "class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc", null ], + [ "setInitialStats", "class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2", null ], + [ "Alive", "class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16", null ], + [ "Def", "class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113", null ], + [ "equippedWeapon", "class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9", null ], + [ "Hp", "class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f", null ], + [ "Int", "class_model_1_1_archer.html#a2a62fe1362df536254e676fa4d294e9e", null ], + [ "Level", "class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6", null ], + [ "PixelCoordinates", "class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e", null ], + [ "Position", "class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533", null ], + [ "Res", "class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7", null ], + [ "Skill", "class_model_1_1_archer.html#ae89109c98b07771c74f25a75f4a5a76a", null ], + [ "Speed", "class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252", null ], + [ "Str", "class_model_1_1_archer.html#a149681510408d9e6aa130918480c1721", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_archer.png b/Doc/MIS/html/class_model_1_1_archer.png new file mode 100644 index 0000000000000000000000000000000000000000..7a0e0047015d22257c19ebb090bbb92c8d81bcc4 Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_archer.png differ diff --git a/Doc/MIS/html/class_model_1_1_bronze_bow-members.html b/Doc/MIS/html/class_model_1_1_bronze_bow-members.html new file mode 100644 index 0000000000000000000000000000000000000000..24b7398bc843dcd77811b405acf68c6284d54c49 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_bow-members.html @@ -0,0 +1,106 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_bronze_bow.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.BronzeBow Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6">BronzeBow</a>()</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modInt</b> (defined in <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>modSkill</b> (defined in <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modStr</b> (defined in <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>name</b> (defined in <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>range</b> (defined in <a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_bow.html">Model.BronzeBow</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_bronze_bow.html b/Doc/MIS/html/class_model_1_1_bronze_bow.html new file mode 100644 index 0000000000000000000000000000000000000000..2b25cb814910e8d955caa2d6d2288732ab65d805 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_bow.html @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.BronzeBow Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_bronze_bow.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_bronze_bow-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.BronzeBow Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Ranged physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. + <a href="class_model_1_1_bronze_bow.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.BronzeBow:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_bronze_bow.png" usemap="#Model.BronzeBow_map" alt=""/> + <map id="Model.BronzeBow_map" name="Model.BronzeBow_map"> +<area href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. " alt="Model.Weapon" shape="rect" coords="0,0,115,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a13a8963c53c07fe2d66c5428ab9c9bd6"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6">BronzeBow</a> ()</td></tr> +<tr class="separator:a13a8963c53c07fe2d66c5428ab9c9bd6"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a6caebba4edca56736464c5bfabe00b3b"><td class="memItemLeft" align="right" valign="top"><a id="a6caebba4edca56736464c5bfabe00b3b"></a> +int </td><td class="memItemRight" valign="bottom"><b>modStr</b><code> [get]</code></td></tr> +<tr class="separator:a6caebba4edca56736464c5bfabe00b3b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af5ee7e2b002745a57a50630031d4e81e"><td class="memItemLeft" align="right" valign="top"><a id="af5ee7e2b002745a57a50630031d4e81e"></a> +int </td><td class="memItemRight" valign="bottom"><b>modInt</b><code> [get]</code></td></tr> +<tr class="separator:af5ee7e2b002745a57a50630031d4e81e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a569fe9e160d98a9b68d6a107810d7d4a"><td class="memItemLeft" align="right" valign="top"><a id="a569fe9e160d98a9b68d6a107810d7d4a"></a> +int </td><td class="memItemRight" valign="bottom"><b>modSkill</b><code> [get]</code></td></tr> +<tr class="separator:a569fe9e160d98a9b68d6a107810d7d4a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae1cf127006911800db89aafcddf62851"><td class="memItemLeft" align="right" valign="top"><a id="ae1cf127006911800db89aafcddf62851"></a> +string </td><td class="memItemRight" valign="bottom"><b>name</b><code> [get]</code></td></tr> +<tr class="separator:ae1cf127006911800db89aafcddf62851"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae8e37042660fb1a2e5d98006405f81a7"><td class="memItemLeft" align="right" valign="top"><a id="ae8e37042660fb1a2e5d98006405f81a7"></a> +int [] </td><td class="memItemRight" valign="bottom"><b>range</b><code> [get]</code></td></tr> +<tr class="separator:ae8e37042660fb1a2e5d98006405f81a7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_weapon"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_weapon')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td></tr> +<tr class="memitem:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">name</a><code> [get]</code></td></tr> +<tr class="separator:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">modStr</a><code> [get]</code></td></tr> +<tr class="separator:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">modInt</a><code> [get]</code></td></tr> +<tr class="separator:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">modSkill</a><code> [get]</code></td></tr> +<tr class="separator:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">range</a><code> [get]</code></td></tr> +<tr class="separator:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Ranged physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </p> +<p>This class represents a ranged weapon. It implements the <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> interface. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a13a8963c53c07fe2d66c5428ab9c9bd6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a13a8963c53c07fe2d66c5428ab9c9bd6">§ </a></span>BronzeBow()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.BronzeBow.BronzeBow </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructs a Bronze Bow. </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/BronzeBow.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_bronze_bow.html">BronzeBow</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_bronze_bow.js b/Doc/MIS/html/class_model_1_1_bronze_bow.js new file mode 100644 index 0000000000000000000000000000000000000000..2956470a2f6bd0385366396cc91efd9fb54b921f --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_bow.js @@ -0,0 +1,9 @@ +var class_model_1_1_bronze_bow = +[ + [ "BronzeBow", "class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6", null ], + [ "modInt", "class_model_1_1_bronze_bow.html#af5ee7e2b002745a57a50630031d4e81e", null ], + [ "modSkill", "class_model_1_1_bronze_bow.html#a569fe9e160d98a9b68d6a107810d7d4a", null ], + [ "modStr", "class_model_1_1_bronze_bow.html#a6caebba4edca56736464c5bfabe00b3b", null ], + [ "name", "class_model_1_1_bronze_bow.html#ae1cf127006911800db89aafcddf62851", null ], + [ "range", "class_model_1_1_bronze_bow.html#ae8e37042660fb1a2e5d98006405f81a7", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_bronze_bow.png b/Doc/MIS/html/class_model_1_1_bronze_bow.png new file mode 100644 index 0000000000000000000000000000000000000000..65edaf99cb52c4d0d2fd678f777cf20b562757e4 Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_bronze_bow.png differ diff --git a/Doc/MIS/html/class_model_1_1_bronze_sword-members.html b/Doc/MIS/html/class_model_1_1_bronze_sword-members.html new file mode 100644 index 0000000000000000000000000000000000000000..3bb0831ebb4e68faef8e58af1afa20473820c298 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_sword-members.html @@ -0,0 +1,106 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_bronze_sword.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.BronzeSword Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778">BronzeSword</a>()</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modInt</b> (defined in <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>modSkill</b> (defined in <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modStr</b> (defined in <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>name</b> (defined in <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>range</b> (defined in <a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a>)</td><td class="entry"><a class="el" href="class_model_1_1_bronze_sword.html">Model.BronzeSword</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_bronze_sword.html b/Doc/MIS/html/class_model_1_1_bronze_sword.html new file mode 100644 index 0000000000000000000000000000000000000000..28c0b910e0577b7c06e22a362c5617069f09540f --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_sword.html @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.BronzeSword Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_bronze_sword.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_bronze_sword-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.BronzeSword Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Melee Physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. + <a href="class_model_1_1_bronze_sword.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.BronzeSword:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_bronze_sword.png" usemap="#Model.BronzeSword_map" alt=""/> + <map id="Model.BronzeSword_map" name="Model.BronzeSword_map"> +<area href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. " alt="Model.Weapon" shape="rect" coords="0,0,127,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a2b6859b3e48e9cc762a236c21a2b2778"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778">BronzeSword</a> ()</td></tr> +<tr class="separator:a2b6859b3e48e9cc762a236c21a2b2778"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:aa3fa8bf42493d699ebab0a71b49f790f"><td class="memItemLeft" align="right" valign="top"><a id="aa3fa8bf42493d699ebab0a71b49f790f"></a> +int </td><td class="memItemRight" valign="bottom"><b>modStr</b><code> [get]</code></td></tr> +<tr class="separator:aa3fa8bf42493d699ebab0a71b49f790f"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:adc76e86568c1cc4be336f3c565890040"><td class="memItemLeft" align="right" valign="top"><a id="adc76e86568c1cc4be336f3c565890040"></a> +int </td><td class="memItemRight" valign="bottom"><b>modInt</b><code> [get]</code></td></tr> +<tr class="separator:adc76e86568c1cc4be336f3c565890040"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:adbcbbba4083e38d4502b59847d739a4b"><td class="memItemLeft" align="right" valign="top"><a id="adbcbbba4083e38d4502b59847d739a4b"></a> +int </td><td class="memItemRight" valign="bottom"><b>modSkill</b><code> [get]</code></td></tr> +<tr class="separator:adbcbbba4083e38d4502b59847d739a4b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4a66267bbabf3a20bbf155225d2bf78e"><td class="memItemLeft" align="right" valign="top"><a id="a4a66267bbabf3a20bbf155225d2bf78e"></a> +string </td><td class="memItemRight" valign="bottom"><b>name</b><code> [get]</code></td></tr> +<tr class="separator:a4a66267bbabf3a20bbf155225d2bf78e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af13cc7a64cd1df9257977b9961b5bb21"><td class="memItemLeft" align="right" valign="top"><a id="af13cc7a64cd1df9257977b9961b5bb21"></a> +int [] </td><td class="memItemRight" valign="bottom"><b>range</b><code> [get]</code></td></tr> +<tr class="separator:af13cc7a64cd1df9257977b9961b5bb21"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_weapon"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_weapon')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td></tr> +<tr class="memitem:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">name</a><code> [get]</code></td></tr> +<tr class="separator:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">modStr</a><code> [get]</code></td></tr> +<tr class="separator:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">modInt</a><code> [get]</code></td></tr> +<tr class="separator:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">modSkill</a><code> [get]</code></td></tr> +<tr class="separator:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">range</a><code> [get]</code></td></tr> +<tr class="separator:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Melee Physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </p> +<p>This class represents a melee weapon. It implements the <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> interface. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a2b6859b3e48e9cc762a236c21a2b2778"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a2b6859b3e48e9cc762a236c21a2b2778">§ </a></span>BronzeSword()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.BronzeSword.BronzeSword </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructs a Bronze Sword. </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/BronzeSword.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_bronze_sword.html">BronzeSword</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_bronze_sword.js b/Doc/MIS/html/class_model_1_1_bronze_sword.js new file mode 100644 index 0000000000000000000000000000000000000000..b80c2755d5f168458b3805e6c17417d85e4bd90f --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_bronze_sword.js @@ -0,0 +1,9 @@ +var class_model_1_1_bronze_sword = +[ + [ "BronzeSword", "class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778", null ], + [ "modInt", "class_model_1_1_bronze_sword.html#adc76e86568c1cc4be336f3c565890040", null ], + [ "modSkill", "class_model_1_1_bronze_sword.html#adbcbbba4083e38d4502b59847d739a4b", null ], + [ "modStr", "class_model_1_1_bronze_sword.html#aa3fa8bf42493d699ebab0a71b49f790f", null ], + [ "name", "class_model_1_1_bronze_sword.html#a4a66267bbabf3a20bbf155225d2bf78e", null ], + [ "range", "class_model_1_1_bronze_sword.html#af13cc7a64cd1df9257977b9961b5bb21", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_bronze_sword.png b/Doc/MIS/html/class_model_1_1_bronze_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..15716474f6eec138b292f3e7fd83d49a3d2faceb Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_bronze_sword.png differ diff --git a/Doc/MIS/html/class_model_1_1_damage_calculations-members.html b/Doc/MIS/html/class_model_1_1_damage_calculations-members.html new file mode 100644 index 0000000000000000000000000000000000000000..2262ce6bc2a6f7511f36e799fef18d41c9c9f697 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_damage_calculations-members.html @@ -0,0 +1,105 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_damage_calculations.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.DamageCalculations Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b">finalDamage</a>(Unit attacker, Unit defender, bool physOrMagic)</td><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed">getCritRate</a>(Unit attacker, Unit defender)</td><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea">getDamageDealt</a>(Unit attacker, Unit defender, bool physOrMagic)</td><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa">getHitCount</a>(Unit attacker, Unit defender)</td><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8">getHitRate</a>(Unit attacker, Unit defender)</td><td class="entry"><a class="el" href="class_model_1_1_damage_calculations.html">Model.DamageCalculations</a></td><td class="entry"><span class="mlabel">static</span></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_damage_calculations.html b/Doc/MIS/html/class_model_1_1_damage_calculations.html new file mode 100644 index 0000000000000000000000000000000000000000..6c602f45dc80c969cf37da7fc33f5cf913ebf3bb --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_damage_calculations.html @@ -0,0 +1,353 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.DamageCalculations Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_damage_calculations.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-static-methods">Static Public Member Functions</a> | +<a href="class_model_1_1_damage_calculations-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.DamageCalculations Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This class calculates all damage related calculations + <a href="class_model_1_1_damage_calculations.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> +Static Public Member Functions</h2></td></tr> +<tr class="memitem:a40a09ac0e5901820aed5d66ccd2725ea"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea">getDamageDealt</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> attacker, <a class="el" href="interface_model_1_1_unit.html">Unit</a> defender, bool physOrMagic)</td></tr> +<tr class="separator:a40a09ac0e5901820aed5d66ccd2725ea"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a21e4eed0da4ff5c11ed59949f7a4a4f8"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8">getHitRate</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> attacker, <a class="el" href="interface_model_1_1_unit.html">Unit</a> defender)</td></tr> +<tr class="separator:a21e4eed0da4ff5c11ed59949f7a4a4f8"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8d8f1598155ed6d7719b9adc973831ed"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed">getCritRate</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> attacker, <a class="el" href="interface_model_1_1_unit.html">Unit</a> defender)</td></tr> +<tr class="separator:a8d8f1598155ed6d7719b9adc973831ed"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4f32191388e849f2f1dbaa6bac1015fa"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa">getHitCount</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> attacker, <a class="el" href="interface_model_1_1_unit.html">Unit</a> defender)</td></tr> +<tr class="separator:a4f32191388e849f2f1dbaa6bac1015fa"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3b2362132e274bc821c9c365511fc11b"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b">finalDamage</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> attacker, <a class="el" href="interface_model_1_1_unit.html">Unit</a> defender, bool physOrMagic)</td></tr> +<tr class="separator:a3b2362132e274bc821c9c365511fc11b"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>This class calculates all damage related calculations </p> +</div><h2 class="groupheader">Member Function Documentation</h2> +<a id="a3b2362132e274bc821c9c365511fc11b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a3b2362132e274bc821c9c365511fc11b">§ </a></span>finalDamage()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static int Model.DamageCalculations.finalDamage </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>attacker</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>defender</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"><em>physOrMagic</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>factors in damage dealt, hit rate, crit rate, and number of attacks (as in how above functions were calculated) to calculate actual damage dealt </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">attacker</td><td>The unit performing the attack </td></tr> + <tr><td class="paramname">defender</td><td>The unit defending against the attack </td></tr> + <tr><td class="paramname">physOrMagic</td><td>Boolean that tells the controller if it's physical or magical damage to be calculated </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a8d8f1598155ed6d7719b9adc973831ed"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a8d8f1598155ed6d7719b9adc973831ed">§ </a></span>getCritRate()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static int Model.DamageCalculations.getCritRate </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>attacker</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>defender</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>passes in the 2 units, and returns the crit rate as a percentage out of 100 by taking into account both unit's skill </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">attacker</td><td>The unit performing the attack </td></tr> + <tr><td class="paramname">defender</td><td>The unit defending against the attack </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a40a09ac0e5901820aed5d66ccd2725ea"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a40a09ac0e5901820aed5d66ccd2725ea">§ </a></span>getDamageDealt()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static int Model.DamageCalculations.getDamageDealt </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>attacker</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>defender</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"><em>physOrMagic</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>passes in the 2 units, and a boolean on whether attack is physical (false), or magical (true), and returns damage dealt by taking into account an attacker's str/int, and defender def/res </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">attacker</td><td>The unit performing the attack </td></tr> + <tr><td class="paramname">defender</td><td>The unit defending against the attack </td></tr> + <tr><td class="paramname">physOrMagic</td><td>Boolean that tells the controller if it's physical or magical damage to be calculated </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a4f32191388e849f2f1dbaa6bac1015fa"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4f32191388e849f2f1dbaa6bac1015fa">§ </a></span>getHitCount()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static int Model.DamageCalculations.getHitCount </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>attacker</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>defender</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>passes in then 2 units, and determines how many attacks the attacker makes by factoring in both unit's relative speed </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">attacker</td><td>The unit performing the attack </td></tr> + <tr><td class="paramname">defender</td><td>The unit defending against the attack </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a21e4eed0da4ff5c11ed59949f7a4a4f8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a21e4eed0da4ff5c11ed59949f7a4a4f8">§ </a></span>getHitRate()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">static int Model.DamageCalculations.getHitRate </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>attacker</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>defender</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>passes in the 2 units, and returns the hit rate as a percentage out of 100 by taking into account both unit's skill </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">attacker</td><td>The unit performing the attack </td></tr> + <tr><td class="paramname">defender</td><td>The unit defending against the attack </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/DamageCalculations.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_damage_calculations.html">DamageCalculations</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_damage_calculations.js b/Doc/MIS/html/class_model_1_1_damage_calculations.js new file mode 100644 index 0000000000000000000000000000000000000000..57b4a5faee70b1b7c21282f0648b5a36668bf122 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_damage_calculations.js @@ -0,0 +1,8 @@ +var class_model_1_1_damage_calculations = +[ + [ "finalDamage", "class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b", null ], + [ "getCritRate", "class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed", null ], + [ "getDamageDealt", "class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea", null ], + [ "getHitCount", "class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa", null ], + [ "getHitRate", "class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_fireball-members.html b/Doc/MIS/html/class_model_1_1_fireball-members.html new file mode 100644 index 0000000000000000000000000000000000000000..6775c7bdaf20978f8875b39dc6b2ba0ba6891523 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_fireball-members.html @@ -0,0 +1,106 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_fireball.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Fireball Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d">Fireball</a>()</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modInt</b> (defined in <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>)</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>modSkill</b> (defined in <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>)</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>modStr</b> (defined in <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>)</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>name</b> (defined in <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>)</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>range</b> (defined in <a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a>)</td><td class="entry"><a class="el" href="class_model_1_1_fireball.html">Model.Fireball</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_fireball.html b/Doc/MIS/html/class_model_1_1_fireball.html new file mode 100644 index 0000000000000000000000000000000000000000..ac6234aac3f5fa2eafac1cdbb32680e72a765663 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_fireball.html @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Fireball Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_fireball.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_fireball-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Fireball Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Ranged Magical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. + <a href="class_model_1_1_fireball.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Fireball:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_fireball.png" usemap="#Model.Fireball_map" alt=""/> + <map id="Model.Fireball_map" name="Model.Fireball_map"> +<area href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. " alt="Model.Weapon" shape="rect" coords="0,0,97,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a7d641800d5354711f67ce3554a2deb0d"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d">Fireball</a> ()</td></tr> +<tr class="separator:a7d641800d5354711f67ce3554a2deb0d"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a20558861ec4039883ee98f2cecbe3431"><td class="memItemLeft" align="right" valign="top"><a id="a20558861ec4039883ee98f2cecbe3431"></a> +int </td><td class="memItemRight" valign="bottom"><b>modStr</b><code> [get]</code></td></tr> +<tr class="separator:a20558861ec4039883ee98f2cecbe3431"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afd695fdcfffb1ffcbae41ed3656ebd34"><td class="memItemLeft" align="right" valign="top"><a id="afd695fdcfffb1ffcbae41ed3656ebd34"></a> +int </td><td class="memItemRight" valign="bottom"><b>modInt</b><code> [get]</code></td></tr> +<tr class="separator:afd695fdcfffb1ffcbae41ed3656ebd34"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4ff8c171340f4c6bf65bd3d6b73138f7"><td class="memItemLeft" align="right" valign="top"><a id="a4ff8c171340f4c6bf65bd3d6b73138f7"></a> +int </td><td class="memItemRight" valign="bottom"><b>modSkill</b><code> [get]</code></td></tr> +<tr class="separator:a4ff8c171340f4c6bf65bd3d6b73138f7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa5053d42f6a4432ef58a7666ce4e6736"><td class="memItemLeft" align="right" valign="top"><a id="aa5053d42f6a4432ef58a7666ce4e6736"></a> +string </td><td class="memItemRight" valign="bottom"><b>name</b><code> [get]</code></td></tr> +<tr class="separator:aa5053d42f6a4432ef58a7666ce4e6736"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a406360fd3901b7a5ade3a8bc35c9423d"><td class="memItemLeft" align="right" valign="top"><a id="a406360fd3901b7a5ade3a8bc35c9423d"></a> +int [] </td><td class="memItemRight" valign="bottom"><b>range</b><code> [get]</code></td></tr> +<tr class="separator:a406360fd3901b7a5ade3a8bc35c9423d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_weapon"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_weapon')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td></tr> +<tr class="memitem:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">name</a><code> [get]</code></td></tr> +<tr class="separator:a09f71c2dd3100e08a5d9cfc685e990e8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">modStr</a><code> [get]</code></td></tr> +<tr class="separator:ae257017428d45a9d5d0de7071565c027 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">modInt</a><code> [get]</code></td></tr> +<tr class="separator:a1ef41fea09be5beda6c21594fd648a5c inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">modSkill</a><code> [get]</code></td></tr> +<tr class="separator:ab9c4d1b5151aedba51ddfd187d2b98ab inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">range</a><code> [get]</code></td></tr> +<tr class="separator:acb042377d7f54c710d4f1e4a7299a2b8 inherit properties_interface_model_1_1_weapon"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Ranged Magical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </p> +<p>This class represents a magic based weapon. It implements the <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> interface. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a7d641800d5354711f67ce3554a2deb0d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a7d641800d5354711f67ce3554a2deb0d">§ </a></span>Fireball()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Fireball.Fireball </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructs a <a class="el" href="class_model_1_1_fireball.html" title="Ranged Magical Weapon. ">Fireball</a>. </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Fireball.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_fireball.html">Fireball</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_fireball.js b/Doc/MIS/html/class_model_1_1_fireball.js new file mode 100644 index 0000000000000000000000000000000000000000..296cff4f71400ebcfbaf67bafc26097424604e5a --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_fireball.js @@ -0,0 +1,9 @@ +var class_model_1_1_fireball = +[ + [ "Fireball", "class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d", null ], + [ "modInt", "class_model_1_1_fireball.html#afd695fdcfffb1ffcbae41ed3656ebd34", null ], + [ "modSkill", "class_model_1_1_fireball.html#a4ff8c171340f4c6bf65bd3d6b73138f7", null ], + [ "modStr", "class_model_1_1_fireball.html#a20558861ec4039883ee98f2cecbe3431", null ], + [ "name", "class_model_1_1_fireball.html#aa5053d42f6a4432ef58a7666ce4e6736", null ], + [ "range", "class_model_1_1_fireball.html#a406360fd3901b7a5ade3a8bc35c9423d", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_fireball.png b/Doc/MIS/html/class_model_1_1_fireball.png new file mode 100644 index 0000000000000000000000000000000000000000..38a88bf86fe7f365dff2ae6e238a81eca0e100fd Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_fireball.png differ diff --git a/Doc/MIS/html/class_model_1_1_game_state-members.html b/Doc/MIS/html/class_model_1_1_game_state-members.html new file mode 100644 index 0000000000000000000000000000000000000000..b7672cb95e4f1ff4f133ee9ec0ce4d1db588aa61 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_game_state-members.html @@ -0,0 +1,112 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_game_state.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.GameState Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_game_state.html">Model.GameState</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c">attackConfirmOpen</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7">beforeMove</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de">currentPlayer</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a">dropDownMenuOpen</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3">enemyPlayer</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>isAnimating</b> (defined in <a class="el" href="class_model_1_1_game_state.html">Model.GameState</a>)</td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>moveableNodes</b> (defined in <a class="el" href="class_model_1_1_game_state.html">Model.GameState</a>)</td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9">playableUnitSelected</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SCREEN_HEIGHT</b> (defined in <a class="el" href="class_model_1_1_game_state.html">Model.GameState</a>)</td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>SCREEN_WIDTH</b> (defined in <a class="el" href="class_model_1_1_game_state.html">Model.GameState</a>)</td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9">selectedUnit</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed">unitToAttack</a></td><td class="entry"><a class="el" href="class_model_1_1_game_state.html">Model.GameState</a></td><td class="entry"><span class="mlabel">static</span></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_game_state.html b/Doc/MIS/html/class_model_1_1_game_state.html new file mode 100644 index 0000000000000000000000000000000000000000..6ab5b4808dac6b0e20bab72c0b7742f4dade8ef2 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_game_state.html @@ -0,0 +1,330 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.GameState Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_game_state.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-static-attribs">Static Public Attributes</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_game_state-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.GameState Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This class holds states in the scope of the entire gameplay + <a href="class_model_1_1_game_state.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a> +Static Public Attributes</h2></td></tr> +<tr class="memitem:a4ca2649ffbcf39f72b5373889fc87137"><td class="memItemLeft" align="right" valign="top"><a id="a4ca2649ffbcf39f72b5373889fc87137"></a> +static readonly int </td><td class="memItemRight" valign="bottom"><b>SCREEN_HEIGHT</b> = 640</td></tr> +<tr class="separator:a4ca2649ffbcf39f72b5373889fc87137"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad3b13fdcad1e5b05176da2f3d554fa20"><td class="memItemLeft" align="right" valign="top"><a id="ad3b13fdcad1e5b05176da2f3d554fa20"></a> +static readonly int </td><td class="memItemRight" valign="bottom"><b>SCREEN_WIDTH</b> = 960</td></tr> +<tr class="separator:ad3b13fdcad1e5b05176da2f3d554fa20"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:ac5ac5083088be3636da64ac0a3eb3ac9"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9">playableUnitSelected</a><code> [get, set]</code></td></tr> +<tr class="separator:ac5ac5083088be3636da64ac0a3eb3ac9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab163d599e6e1f46c470d0835d8053ad9"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="interface_model_1_1_unit.html">Unit</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9">selectedUnit</a><code> [get, set]</code></td></tr> +<tr class="separator:ab163d599e6e1f46c470d0835d8053ad9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af352baaca46aaf95b984980ca55693ed"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="interface_model_1_1_unit.html">Unit</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed">unitToAttack</a><code> [get, set]</code></td></tr> +<tr class="separator:af352baaca46aaf95b984980ca55693ed"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa541a7b45ea55484db8a3357d8e680de"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="class_model_1_1_player.html">Player</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de">currentPlayer</a><code> [get, set]</code></td></tr> +<tr class="separator:aa541a7b45ea55484db8a3357d8e680de"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae276234c4a6b2b182b13f125abb61ba3"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="class_model_1_1_player.html">Player</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3">enemyPlayer</a><code> [get, set]</code></td></tr> +<tr class="separator:ae276234c4a6b2b182b13f125abb61ba3"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6e723d6c3b99e1c235c6d214ee17929a"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a">dropDownMenuOpen</a><code> [get, set]</code></td></tr> +<tr class="separator:a6e723d6c3b99e1c235c6d214ee17929a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab5781c1403edc30064ae2a8cbaad4c4c"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c">attackConfirmOpen</a><code> [get, set]</code></td></tr> +<tr class="separator:ab5781c1403edc30064ae2a8cbaad4c4c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af546cfa01e29773b5260cd6bfe8132b7"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7">beforeMove</a><code> [get, set]</code></td></tr> +<tr class="separator:af546cfa01e29773b5260cd6bfe8132b7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ac8c6a53641aafa5d57a9dff8f958a904"><td class="memItemLeft" align="right" valign="top"><a id="ac8c6a53641aafa5d57a9dff8f958a904"></a> +static bool </td><td class="memItemRight" valign="bottom"><b>isAnimating</b><code> [get, set]</code></td></tr> +<tr class="separator:ac8c6a53641aafa5d57a9dff8f958a904"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa2e325332a755c971d36c7c388d136d2"><td class="memItemLeft" align="right" valign="top"><a id="aa2e325332a755c971d36c7c388d136d2"></a> +static LinkedList< <a class="el" href="class_model_1_1_node.html">Node</a> > </td><td class="memItemRight" valign="bottom"><b>moveableNodes</b><code> [get, set]</code></td></tr> +<tr class="separator:aa2e325332a755c971d36c7c388d136d2"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>This class holds states in the scope of the entire gameplay </p> +</div><h2 class="groupheader">Property Documentation</h2> +<a id="ab5781c1403edc30064ae2a8cbaad4c4c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab5781c1403edc30064ae2a8cbaad4c4c">§ </a></span>attackConfirmOpen</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.GameState.attackConfirmOpen</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets whether attackConfirm menu should be open </p> + +</div> +</div> +<a id="af546cfa01e29773b5260cd6bfe8132b7"></a> +<h2 class="memtitle"><span class="permalink"><a href="#af546cfa01e29773b5260cd6bfe8132b7">§ </a></span>beforeMove</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.GameState.beforeMove</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets if a unit has moved yet or not. beforeMOve is true before unit moves, false after it moves. Used to determine what tiles are highlighted </p> + +</div> +</div> +<a id="aa541a7b45ea55484db8a3357d8e680de"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa541a7b45ea55484db8a3357d8e680de">§ </a></span>currentPlayer</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_model_1_1_player.html">Player</a> Model.GameState.currentPlayer</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets the current player </p> + +</div> +</div> +<a id="a6e723d6c3b99e1c235c6d214ee17929a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6e723d6c3b99e1c235c6d214ee17929a">§ </a></span>dropDownMenuOpen</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.GameState.dropDownMenuOpen</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets whether drop down menu should be open </p> + +</div> +</div> +<a id="ae276234c4a6b2b182b13f125abb61ba3"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae276234c4a6b2b182b13f125abb61ba3">§ </a></span>enemyPlayer</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_model_1_1_player.html">Player</a> Model.GameState.enemyPlayer</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets the enemy player </p> + +</div> +</div> +<a id="ac5ac5083088be3636da64ac0a3eb3ac9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac5ac5083088be3636da64ac0a3eb3ac9">§ </a></span>playableUnitSelected</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.GameState.playableUnitSelected</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets if a playable unit is selected </p> + +</div> +</div> +<a id="ab163d599e6e1f46c470d0835d8053ad9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab163d599e6e1f46c470d0835d8053ad9">§ </a></span>selectedUnit</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_unit.html">Unit</a> Model.GameState.selectedUnit</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets a unit </p> + +</div> +</div> +<a id="af352baaca46aaf95b984980ca55693ed"></a> +<h2 class="memtitle"><span class="permalink"><a href="#af352baaca46aaf95b984980ca55693ed">§ </a></span>unitToAttack</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_unit.html">Unit</a> Model.GameState.unitToAttack</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and gets the unit to attack </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/GameState.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_game_state.html">GameState</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_game_state.js b/Doc/MIS/html/class_model_1_1_game_state.js new file mode 100644 index 0000000000000000000000000000000000000000..06d8696db41b51740ee17fef111c12e2e338c240 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_game_state.js @@ -0,0 +1,15 @@ +var class_model_1_1_game_state = +[ + [ "SCREEN_HEIGHT", "class_model_1_1_game_state.html#a4ca2649ffbcf39f72b5373889fc87137", null ], + [ "SCREEN_WIDTH", "class_model_1_1_game_state.html#ad3b13fdcad1e5b05176da2f3d554fa20", null ], + [ "attackConfirmOpen", "class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c", null ], + [ "beforeMove", "class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7", null ], + [ "currentPlayer", "class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de", null ], + [ "dropDownMenuOpen", "class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a", null ], + [ "enemyPlayer", "class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3", null ], + [ "isAnimating", "class_model_1_1_game_state.html#ac8c6a53641aafa5d57a9dff8f958a904", null ], + [ "moveableNodes", "class_model_1_1_game_state.html#aa2e325332a755c971d36c7c388d136d2", null ], + [ "playableUnitSelected", "class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9", null ], + [ "selectedUnit", "class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9", null ], + [ "unitToAttack", "class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_graph-members.html b/Doc/MIS/html/class_model_1_1_graph-members.html new file mode 100644 index 0000000000000000000000000000000000000000..7cd6dd4af3121d8a878e77cec68ffde9e0a38da5 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_graph-members.html @@ -0,0 +1,108 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_graph.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Graph Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_graph.html">Model.Graph</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19">getNode</a>(int x, int y)</td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936">getNode</a>(Vector2 pixelCoordinates)</td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a">getNode</a>(Tuple< int, int > position)</td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c">Graph</a>(int x, int y)</td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068">Height</a></td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544">NumberOfNodes</a></td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4">setNode</a>(Node node, int x, int y)</td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695">Width</a></td><td class="entry"><a class="el" href="class_model_1_1_graph.html">Model.Graph</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_graph.html b/Doc/MIS/html/class_model_1_1_graph.html new file mode 100644 index 0000000000000000000000000000000000000000..1d7d251962ce553e3638b45694f314f784135c7e --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_graph.html @@ -0,0 +1,366 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Graph Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_graph.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_graph-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Graph Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Structure that represents the game map. + <a href="class_model_1_1_graph.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a70e0c2327268c051423e64454fd63c1c"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c">Graph</a> (int x, int y)</td></tr> +<tr class="separator:a70e0c2327268c051423e64454fd63c1c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1ea50115c6a9535a1040c336d7cd8d19"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_model_1_1_node.html">Node</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19">getNode</a> (int x, int y)</td></tr> +<tr class="separator:a1ea50115c6a9535a1040c336d7cd8d19"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a7acc189afb46afd8b3ca2525a231d936"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_model_1_1_node.html">Node</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936">getNode</a> (Vector2 pixelCoordinates)</td></tr> +<tr class="separator:a7acc189afb46afd8b3ca2525a231d936"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab52a2f2957dec95ebb923ef3f6af607a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_model_1_1_node.html">Node</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a">getNode</a> (Tuple< int, int > position)</td></tr> +<tr class="separator:ab52a2f2957dec95ebb923ef3f6af607a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bd131e174df6cf21a64cf5af0cde0d4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4">setNode</a> (<a class="el" href="class_model_1_1_node.html">Node</a> node, int x, int y)</td></tr> +<tr class="separator:a9bd131e174df6cf21a64cf5af0cde0d4"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:ae4dd5d130ea173ac6a38e15f6fa53544"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544">NumberOfNodes</a><code> [get]</code></td></tr> +<tr class="separator:ae4dd5d130ea173ac6a38e15f6fa53544"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ac3b8b0d5608f48b36c624108dca52695"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695">Width</a><code> [get]</code></td></tr> +<tr class="separator:ac3b8b0d5608f48b36c624108dca52695"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad80b7be893e46c9149552ef8bfc18068"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068">Height</a><code> [get]</code></td></tr> +<tr class="separator:ad80b7be893e46c9149552ef8bfc18068"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Structure that represents the game map. </p> +<p>Programmatical representation of the map grid. Composed of Nodes that represent each tile on the grid. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a70e0c2327268c051423e64454fd63c1c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a70e0c2327268c051423e64454fd63c1c">§ </a></span>Graph()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Graph.Graph </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"><em>x</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>y</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Creates a graph. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">x</td><td>Width of the graph. </td></tr> + <tr><td class="paramname">y</td><td>Height of the graph. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a1ea50115c6a9535a1040c336d7cd8d19"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a1ea50115c6a9535a1040c336d7cd8d19">§ </a></span>getNode() <span class="overload">[1/3]</span></h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_model_1_1_node.html">Node</a> Model.Graph.getNode </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"><em>x</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>y</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the node on the graph at the specified position (by nodes). </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">x</td><td>X position of the node (by nodes). </td></tr> + <tr><td class="paramname">y</td><td>Y position of the node (by nodes). </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a7acc189afb46afd8b3ca2525a231d936"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a7acc189afb46afd8b3ca2525a231d936">§ </a></span>getNode() <span class="overload">[2/3]</span></h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_model_1_1_node.html">Node</a> Model.Graph.getNode </td> + <td>(</td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>pixelCoordinates</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the node on the graph at the specified position (by pixel coordinates). </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">pixelCoordinates</td><td>Pixel coordinates of the node, which contains the X coordinate and Y coordinate. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="ab52a2f2957dec95ebb923ef3f6af607a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab52a2f2957dec95ebb923ef3f6af607a">§ </a></span>getNode() <span class="overload">[3/3]</span></h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_model_1_1_node.html">Node</a> Model.Graph.getNode </td> + <td>(</td> + <td class="paramtype">Tuple< int, int > </td> + <td class="paramname"><em>position</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the node on the graph at the specified position (by nodes). </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">position</td><td>Position of the node, which contains the X position and Y position (by nodes). </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a9bd131e174df6cf21a64cf5af0cde0d4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9bd131e174df6cf21a64cf5af0cde0d4">§ </a></span>setNode()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Graph.setNode </td> + <td>(</td> + <td class="paramtype"><a class="el" href="class_model_1_1_node.html">Node</a> </td> + <td class="paramname"><em>node</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>x</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>y</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Sets the node at the specified position on the graph to the specified node. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">node</td><td><a class="el" href="class_model_1_1_node.html" title="Structure that represents a tile on the game map grid. ">Node</a> to set. </td></tr> + <tr><td class="paramname">x</td><td>X position of the node (by nodes). </td></tr> + <tr><td class="paramname">y</td><td>Y position of the node (by nodes). </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="ad80b7be893e46c9149552ef8bfc18068"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad80b7be893e46c9149552ef8bfc18068">§ </a></span>Height</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Graph.Height</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the height of the graph (by number of nodes). </p> + +</div> +</div> +<a id="ae4dd5d130ea173ac6a38e15f6fa53544"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae4dd5d130ea173ac6a38e15f6fa53544">§ </a></span>NumberOfNodes</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Graph.NumberOfNodes</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the total number of nodes in the graph. </p> + +</div> +</div> +<a id="ac3b8b0d5608f48b36c624108dca52695"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac3b8b0d5608f48b36c624108dca52695">§ </a></span>Width</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Graph.Width</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the width of the graph (by number of nodes). </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Graph.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_graph.html">Graph</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_graph.js b/Doc/MIS/html/class_model_1_1_graph.js new file mode 100644 index 0000000000000000000000000000000000000000..d02fdb36a645a347fd0ce9f98e849b0a4889736d --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_graph.js @@ -0,0 +1,11 @@ +var class_model_1_1_graph = +[ + [ "Graph", "class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c", null ], + [ "getNode", "class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19", null ], + [ "getNode", "class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936", null ], + [ "getNode", "class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a", null ], + [ "setNode", "class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4", null ], + [ "Height", "class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068", null ], + [ "NumberOfNodes", "class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544", null ], + [ "Width", "class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_mage-members.html b/Doc/MIS/html/class_model_1_1_mage-members.html new file mode 100644 index 0000000000000000000000000000000000000000..69609497aa1fb844c920bc41128f6f94a9930e98 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_mage-members.html @@ -0,0 +1,128 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_mage.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Mage Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_mage.html">Model.Mage</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679">Alive</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9">animate</a>(Direction direction)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373">Def</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63">equippedWeapon</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d">getButtonImage</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c">getButtonOfType</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0">getButtons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92">getCharAttackInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810">getCharInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab">getClass</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167">getCurrentFrame</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef">getEquipableWeapons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2">getMovability</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f">getSpriteImage</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f">getStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce">Hp</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Int</b> (defined in <a class="el" href="class_model_1_1_mage.html">Model.Mage</a>)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914">isButtonActive</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af">Level</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16">Mage</a>(Texture2D spriteImage, Button attackButton, Button moveButton, Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa">PixelCoordinates</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8">Position</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27">Res</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1">setButtonCoordinates</a>(Vector2 pixelCoordinates)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d">setInitialStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Skill</b> (defined in <a class="el" href="class_model_1_1_mage.html">Model.Mage</a>)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60">Speed</a></td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>Str</b> (defined in <a class="el" href="class_model_1_1_mage.html">Model.Mage</a>)</td><td class="entry"><a class="el" href="class_model_1_1_mage.html">Model.Mage</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_mage.html b/Doc/MIS/html/class_model_1_1_mage.html new file mode 100644 index 0000000000000000000000000000000000000000..697c7c783adc0ef32ddb0b50af5e47af6cb242f1 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_mage.html @@ -0,0 +1,834 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Mage Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_mage.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_mage-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Mage Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <br /> + This <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats + <a href="class_model_1_1_mage.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Mage:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_mage.png" usemap="#Model.Mage_map" alt=""/> + <map id="Model.Mage_map" name="Model.Mage_map"> +<area href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer " alt="Model.Unit" shape="rect" coords="0,0,83,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a0b3127050836fcc51e07d18f9e6b9b16"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16">Mage</a> (Texture2D spriteImage, <a class="el" href="class_view_1_1_button.html">Button</a> attackButton, <a class="el" href="class_view_1_1_button.html">Button</a> moveButton, <a class="el" href="class_view_1_1_button.html">Button</a> itemButton, <a class="el" href="class_view_1_1_button.html">Button</a> waitButton, <a class="el" href="class_view_1_1_button.html">Button</a> confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td></tr> +<tr class="separator:a0b3127050836fcc51e07d18f9e6b9b16"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ac9fb76a259c754214a3b9cc84c1da58d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d">setInitialStats</a> ()</td></tr> +<tr class="separator:ac9fb76a259c754214a3b9cc84c1da58d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a90c0cbd19877be1cb16be4300e7413b2"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2">getMovability</a> ()</td></tr> +<tr class="separator:a90c0cbd19877be1cb16be4300e7413b2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a226ae9e107258aca2485b887a9f2015f"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f">getStats</a> ()</td></tr> +<tr class="separator:a226ae9e107258aca2485b887a9f2015f"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a5735ecc56cf62b4dccaf218560458bef"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef">getEquipableWeapons</a> ()</td></tr> +<tr class="separator:a5735ecc56cf62b4dccaf218560458bef"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa8290998eb8b6db8fd6544478771b4ab"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab">getClass</a> ()</td></tr> +<tr class="separator:aa8290998eb8b6db8fd6544478771b4ab"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af32359315cd33ca16d78c83d3f898e8f"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f">getSpriteImage</a> ()</td></tr> +<tr class="separator:af32359315cd33ca16d78c83d3f898e8f"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6c34591377675f0643fa36a2d1cb378d"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d">getButtonImage</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a6c34591377675f0643fa36a2d1cb378d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad4c42c550ad5993ee7fd773e896fc914"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914">isButtonActive</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:ad4c42c550ad5993ee7fd773e896fc914"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae6256780be01124c7c9864f4f44b9810"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810">getCharInfo</a> ()</td></tr> +<tr class="separator:ae6256780be01124c7c9864f4f44b9810"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa7c9dac02c4b3c6cd7c6de256c3b2f92"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92">getCharAttackInfo</a> ()</td></tr> +<tr class="separator:aa7c9dac02c4b3c6cd7c6de256c3b2f92"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a57c850c709b509cf0e23f8ebf24da6f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0">getButtons</a> ()</td></tr> +<tr class="separator:a57c850c709b509cf0e23f8ebf24da6f0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:adeea72218aed1013de839d04e5bde84c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c">getButtonOfType</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:adeea72218aed1013de839d04e5bde84c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4bada92e977b0edd41cb054a44f6d2e1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1">setButtonCoordinates</a> (Vector2 pixelCoordinates)</td></tr> +<tr class="separator:a4bada92e977b0edd41cb054a44f6d2e1"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1da4d9ee53db7b09e338bdab37a57167"><td class="memItemLeft" align="right" valign="top">Rectangle </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167">getCurrentFrame</a> ()</td></tr> +<tr class="separator:a1da4d9ee53db7b09e338bdab37a57167"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a392e364fdf2970caec5941366cfdc6f9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9">animate</a> (Direction direction)</td></tr> +<tr class="separator:a392e364fdf2970caec5941366cfdc6f9"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a50c531809941d6831b578fcbdf5d3679"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a50c531809941d6831b578fcbdf5d3679"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:abf7607506d325e0c08ba41a7b7d831ce"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:abf7607506d325e0c08ba41a7b7d831ce"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a5bd9d7d272350503a3a8c921c9d5bb60"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:a5bd9d7d272350503a3a8c921c9d5bb60"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a84857d68772ac3b466a64123fde94373"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:a84857d68772ac3b466a64123fde94373"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab858284f5c8814471d756f5637de8f27"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:ab858284f5c8814471d756f5637de8f27"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a2af40b60ebdb327efc277a1e920a82af"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:a2af40b60ebdb327efc277a1e920a82af"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a127db923ebfd0b232d8aa7cdcf5d8b63"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a127db923ebfd0b232d8aa7cdcf5d8b63"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad2815a69a4f3b3b192552f6738f2163c"><td class="memItemLeft" align="right" valign="top"><a id="ad2815a69a4f3b3b192552f6738f2163c"></a> +int </td><td class="memItemRight" valign="bottom"><b>Str</b><code> [get, set]</code></td></tr> +<tr class="separator:ad2815a69a4f3b3b192552f6738f2163c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad53c88e6f9d1842a8367fc5dd646f03d"><td class="memItemLeft" align="right" valign="top"><a id="ad53c88e6f9d1842a8367fc5dd646f03d"></a> +int </td><td class="memItemRight" valign="bottom"><b>Int</b><code> [get, set]</code></td></tr> +<tr class="separator:ad53c88e6f9d1842a8367fc5dd646f03d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a753872f2aaed6e495019540a88178cb8"><td class="memItemLeft" align="right" valign="top"><a id="a753872f2aaed6e495019540a88178cb8"></a> +int </td><td class="memItemRight" valign="bottom"><b>Skill</b><code> [get, set]</code></td></tr> +<tr class="separator:a753872f2aaed6e495019540a88178cb8"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a05ff43cdf2f71db0ea0486c49c59c8a8"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a05ff43cdf2f71db0ea0486c49c59c8a8"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4eccff4c1472a462c35b3d92bce315aa"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a4eccff4c1472a462c35b3d92bce315aa"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_unit"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_unit')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td></tr> +<tr class="memitem:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Str</a><code> [get, set]</code></td></tr> +<tr class="separator:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Int</a><code> [get, set]</code></td></tr> +<tr class="separator:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Skill</a><code> [get, set]</code></td></tr> +<tr class="separator:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <br /> + This <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a0b3127050836fcc51e07d18f9e6b9b16"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0b3127050836fcc51e07d18f9e6b9b16">§ </a></span>Mage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Mage.Mage </td> + <td>(</td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>spriteImage</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>attackButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>moveButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>itemButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>waitButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>confirmButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charAttackInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>coordinates</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>player</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>The constructor for <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">spriteImage</td><td>The character sprite </td></tr> + <tr><td class="paramname">attackButton</td><td>The dropdownmenu attack button texture </td></tr> + <tr><td class="paramname">moveButton</td><td>The dropdownmenu move button texture </td></tr> + <tr><td class="paramname">itemButton</td><td>The dropdownmenu item button texture </td></tr> + <tr><td class="paramname">waitButton</td><td>The dropdownmenu wait button texture </td></tr> + <tr><td class="paramname">confirmButton</td><td>The attack confirm button texture </td></tr> + <tr><td class="paramname">charInfo</td><td>The character info popup texture </td></tr> + <tr><td class="paramname">charAttackInfo</td><td>The character attack menu popup texture </td></tr> + <tr><td class="paramname">coordinates</td><td>The unit's current coordinate on screen </td></tr> + <tr><td class="paramname">player</td><td>The player of which the unit belongs to </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a392e364fdf2970caec5941366cfdc6f9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a392e364fdf2970caec5941366cfdc6f9">§ </a></span>animate()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Mage.animate </td> + <td>(</td> + <td class="paramtype">Direction </td> + <td class="paramname"><em>direction</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>animate sprite walking the direction specified </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">direction</td><td>The direction the unit is moving in </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">Model.Unit</a>.</p> + +</div> +</div> +<a id="a6c34591377675f0643fa36a2d1cb378d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6c34591377675f0643fa36a2d1cb378d">§ </a></span>getButtonImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Mage.getButtonImage </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the button texture at index i </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">Model.Unit</a>.</p> + +</div> +</div> +<a id="adeea72218aed1013de839d04e5bde84c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#adeea72218aed1013de839d04e5bde84c">§ </a></span>getButtonOfType()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> Model.Mage.getButtonOfType </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button type </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">buttonType</td><td>The button to return (Move, Attack, Item, Wait, and attack confirm) </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">Model.Unit</a>.</p> + +</div> +</div> +<a id="a57c850c709b509cf0e23f8ebf24da6f0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a57c850c709b509cf0e23f8ebf24da6f0">§ </a></span>getButtons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> [] Model.Mage.getButtons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the dropdown menu buttons of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">Model.Unit</a>.</p> + +</div> +</div> +<a id="aa7c9dac02c4b3c6cd7c6de256c3b2f92"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa7c9dac02c4b3c6cd7c6de256c3b2f92">§ </a></span>getCharAttackInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Mage.getCharAttackInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char attack info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">Model.Unit</a>.</p> + +</div> +</div> +<a id="ae6256780be01124c7c9864f4f44b9810"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae6256780be01124c7c9864f4f44b9810">§ </a></span>getCharInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Mage.getCharInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">Model.Unit</a>.</p> + +</div> +</div> +<a id="aa8290998eb8b6db8fd6544478771b4ab"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa8290998eb8b6db8fd6544478771b4ab">§ </a></span>getClass()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> Model.Mage.getClass </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns unit's class (warrior, mage, archer) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">Model.Unit</a>.</p> + +</div> +</div> +<a id="a1da4d9ee53db7b09e338bdab37a57167"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a1da4d9ee53db7b09e338bdab37a57167">§ </a></span>getCurrentFrame()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Rectangle Model.Mage.getCurrentFrame </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the current sprite frame in animation sequence </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">Model.Unit</a>.</p> + +</div> +</div> +<a id="a5735ecc56cf62b4dccaf218560458bef"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a5735ecc56cf62b4dccaf218560458bef">§ </a></span>getEquipableWeapons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] Model.Mage.getEquipableWeapons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns array of equipable weapons </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">Model.Unit</a>.</p> + +</div> +</div> +<a id="a90c0cbd19877be1cb16be4300e7413b2"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a90c0cbd19877be1cb16be4300e7413b2">§ </a></span>getMovability()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.getMovability </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the unit's movability range on grid (number of spaces the unit can move in one turn) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">Model.Unit</a>.</p> + +</div> +</div> +<a id="af32359315cd33ca16d78c83d3f898e8f"></a> +<h2 class="memtitle"><span class="permalink"><a href="#af32359315cd33ca16d78c83d3f898e8f">§ </a></span>getSpriteImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Mage.getSpriteImage </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the sprite image of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">Model.Unit</a>.</p> + +</div> +</div> +<a id="a226ae9e107258aca2485b887a9f2015f"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a226ae9e107258aca2485b887a9f2015f">§ </a></span>getStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int [] Model.Mage.getStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns all stats as an array </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">Model.Unit</a>.</p> + +</div> +</div> +<a id="ad4c42c550ad5993ee7fd773e896fc914"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad4c42c550ad5993ee7fd773e896fc914">§ </a></span>isButtonActive()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Mage.isButtonActive </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>indicates whether a button has already been previously selected or not </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">Model.Unit</a>.</p> + +</div> +</div> +<a id="a4bada92e977b0edd41cb054a44f6d2e1"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4bada92e977b0edd41cb054a44f6d2e1">§ </a></span>setButtonCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Mage.setButtonCoordinates </td> + <td>(</td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>pixelCoordinates</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets the coordinates of menu buttons </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">pixelCoordinates</td><td>The pixel coordinate of the button </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">Model.Unit</a>.</p> + +</div> +</div> +<a id="ac9fb76a259c754214a3b9cc84c1da58d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ac9fb76a259c754214a3b9cc84c1da58d">§ </a></span>setInitialStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Mage.setInitialStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets initial unit stats upon creation </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">Model.Unit</a>.</p> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="a50c531809941d6831b578fcbdf5d3679"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a50c531809941d6831b578fcbdf5d3679">§ </a></span>Alive</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Mage.Alive</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns whether or not unit is alive </p> + +</div> +</div> +<a id="a84857d68772ac3b466a64123fde94373"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a84857d68772ac3b466a64123fde94373">§ </a></span>Def</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.Def</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Defense </p> + +</div> +</div> +<a id="a127db923ebfd0b232d8aa7cdcf5d8b63"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a127db923ebfd0b232d8aa7cdcf5d8b63">§ </a></span>equippedWeapon</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> Model.Mage.equippedWeapon</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns weapon the unit is currently equipping </p> + +</div> +</div> +<a id="abf7607506d325e0c08ba41a7b7d831ce"></a> +<h2 class="memtitle"><span class="permalink"><a href="#abf7607506d325e0c08ba41a7b7d831ce">§ </a></span>Hp</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.Hp</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's HP </p> + +</div> +</div> +<a id="a2af40b60ebdb327efc277a1e920a82af"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a2af40b60ebdb327efc277a1e920a82af">§ </a></span>Level</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.Level</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Level </p> + +</div> +</div> +<a id="a4eccff4c1472a462c35b3d92bce315aa"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4eccff4c1472a462c35b3d92bce315aa">§ </a></span>PixelCoordinates</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Vector2 Model.Mage.PixelCoordinates</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns the pixel coordinate of the unit <br /> + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) </p> + +</div> +</div> +<a id="a05ff43cdf2f71db0ea0486c49c59c8a8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a05ff43cdf2f71db0ea0486c49c59c8a8">§ </a></span>Position</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Tuple<int, int> Model.Mage.Position</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>gets and sets unit's position by tile </p> + +</div> +</div> +<a id="ab858284f5c8814471d756f5637de8f27"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab858284f5c8814471d756f5637de8f27">§ </a></span>Res</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.Res</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Resistance </p> + +</div> +</div> +<a id="a5bd9d7d272350503a3a8c921c9d5bb60"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a5bd9d7d272350503a3a8c921c9d5bb60">§ </a></span>Speed</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Mage.Speed</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Speed </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Mage.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_mage.html">Mage</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_mage.js b/Doc/MIS/html/class_model_1_1_mage.js new file mode 100644 index 0000000000000000000000000000000000000000..ddea4ffbcc5f15c3da11baad9442d7d54a5a94e8 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_mage.js @@ -0,0 +1,31 @@ +var class_model_1_1_mage = +[ + [ "Mage", "class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16", null ], + [ "animate", "class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9", null ], + [ "getButtonImage", "class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d", null ], + [ "getButtonOfType", "class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c", null ], + [ "getButtons", "class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0", null ], + [ "getCharAttackInfo", "class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92", null ], + [ "getCharInfo", "class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810", null ], + [ "getClass", "class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab", null ], + [ "getCurrentFrame", "class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167", null ], + [ "getEquipableWeapons", "class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef", null ], + [ "getMovability", "class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2", null ], + [ "getSpriteImage", "class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f", null ], + [ "getStats", "class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f", null ], + [ "isButtonActive", "class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914", null ], + [ "setButtonCoordinates", "class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1", null ], + [ "setInitialStats", "class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d", null ], + [ "Alive", "class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679", null ], + [ "Def", "class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373", null ], + [ "equippedWeapon", "class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63", null ], + [ "Hp", "class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce", null ], + [ "Int", "class_model_1_1_mage.html#ad53c88e6f9d1842a8367fc5dd646f03d", null ], + [ "Level", "class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af", null ], + [ "PixelCoordinates", "class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa", null ], + [ "Position", "class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8", null ], + [ "Res", "class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27", null ], + [ "Skill", "class_model_1_1_mage.html#a753872f2aaed6e495019540a88178cb8", null ], + [ "Speed", "class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60", null ], + [ "Str", "class_model_1_1_mage.html#ad2815a69a4f3b3b192552f6738f2163c", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_mage.png b/Doc/MIS/html/class_model_1_1_mage.png new file mode 100644 index 0000000000000000000000000000000000000000..f537ea46bb813118dc6828aba7a3d91a937a8703 Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_mage.png differ diff --git a/Doc/MIS/html/class_model_1_1_node-members.html b/Doc/MIS/html/class_model_1_1_node-members.html new file mode 100644 index 0000000000000000000000000000000000000000..a15cf60dd404945545f66e24d17223708c5f00d9 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_node-members.html @@ -0,0 +1,108 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_node.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Node Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_node.html">Model.Node</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35">getPosition</a>()</td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c">getPositionX</a>()</td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819">getPositionY</a>()</td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34">isObstacle</a></td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4">isOccupied</a>()</td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632">movabilityObstruction</a></td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4">Node</a>(int x, int y)</td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_node.html#a82ca414242eee3d8542a935149049427">unitOnNode</a></td><td class="entry"><a class="el" href="class_model_1_1_node.html">Model.Node</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_node.html b/Doc/MIS/html/class_model_1_1_node.html new file mode 100644 index 0000000000000000000000000000000000000000..3e4aa6ba7ed06f8df7a11f75906e382c83435041 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_node.html @@ -0,0 +1,313 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Node Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_node.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_node-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Node Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Structure that represents a tile on the game map grid. + <a href="class_model_1_1_node.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:aa89ec584d03eab67ea243753c15dbbb4"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4">Node</a> (int x, int y)</td></tr> +<tr class="separator:aa89ec584d03eab67ea243753c15dbbb4"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a83a08bcb71d957094e9bc5661f6f4c35"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35">getPosition</a> ()</td></tr> +<tr class="separator:a83a08bcb71d957094e9bc5661f6f4c35"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab846e889c97ad9a5f7db27142e48f58c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c">getPositionX</a> ()</td></tr> +<tr class="separator:ab846e889c97ad9a5f7db27142e48f58c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a852b1840bbb35cdd5ce1e4eba2e43819"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819">getPositionY</a> ()</td></tr> +<tr class="separator:a852b1840bbb35cdd5ce1e4eba2e43819"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a470e31a9c20caf629e6922eb5c3688e4"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4">isOccupied</a> ()</td></tr> +<tr class="separator:a470e31a9c20caf629e6922eb5c3688e4"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a71c12ee4c3e1d8eecbf757dd4f6d8632"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632">movabilityObstruction</a><code> [get, set]</code></td></tr> +<tr class="separator:a71c12ee4c3e1d8eecbf757dd4f6d8632"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a93438af5996ee894fafd4e70b572af34"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34">isObstacle</a><code> [get, set]</code></td></tr> +<tr class="separator:a93438af5996ee894fafd4e70b572af34"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a82ca414242eee3d8542a935149049427"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html#a82ca414242eee3d8542a935149049427">unitOnNode</a><code> [get, set]</code></td></tr> +<tr class="separator:a82ca414242eee3d8542a935149049427"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Structure that represents a tile on the game map grid. </p> +<p>Programmatical representation of a tile on the map grid. Holds information pertaining to the tile. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="aa89ec584d03eab67ea243753c15dbbb4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa89ec584d03eab67ea243753c15dbbb4">§ </a></span>Node()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Node.Node </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"><em>x</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>y</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Creates a node. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">x</td><td>X position of the node on the graph (by node). </td></tr> + <tr><td class="paramname">y</td><td>Y position of the node on the graph (by node). </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a83a08bcb71d957094e9bc5661f6f4c35"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a83a08bcb71d957094e9bc5661f6f4c35">§ </a></span>getPosition()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Vector2 Model.Node.getPosition </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the position of the node on the graph. </p> + +</div> +</div> +<a id="ab846e889c97ad9a5f7db27142e48f58c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab846e889c97ad9a5f7db27142e48f58c">§ </a></span>getPositionX()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Node.getPositionX </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the X position of the node on the graph. </p> + +</div> +</div> +<a id="a852b1840bbb35cdd5ce1e4eba2e43819"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a852b1840bbb35cdd5ce1e4eba2e43819">§ </a></span>getPositionY()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Node.getPositionY </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the Y position of the node on the graph. </p> + +</div> +</div> +<a id="a470e31a9c20caf629e6922eb5c3688e4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a470e31a9c20caf629e6922eb5c3688e4">§ </a></span>isOccupied()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Node.isOccupied </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Indicates whether the node is occupied by a unit. </p> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="a93438af5996ee894fafd4e70b572af34"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a93438af5996ee894fafd4e70b572af34">§ </a></span>isObstacle</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Node.isObstacle</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Indicates whether a unit can stand inside the tile. </p> + +</div> +</div> +<a id="a71c12ee4c3e1d8eecbf757dd4f6d8632"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a71c12ee4c3e1d8eecbf757dd4f6d8632">§ </a></span>movabilityObstruction</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Node.movabilityObstruction</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Index for hindrance of the movability of a unit. The higher the index, the less a unit can move through the tile. Set to 0 by default (no hindrance). </p> + +</div> +</div> +<a id="a82ca414242eee3d8542a935149049427"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a82ca414242eee3d8542a935149049427">§ </a></span>unitOnNode</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_unit.html">Unit</a> Model.Node.unitOnNode</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Gets and sets the unit that is on the node. </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Node.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_node.html">Node</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_node.js b/Doc/MIS/html/class_model_1_1_node.js new file mode 100644 index 0000000000000000000000000000000000000000..4e2020da15b9a556d410ef91fb2ad948a701ba80 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_node.js @@ -0,0 +1,11 @@ +var class_model_1_1_node = +[ + [ "Node", "class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4", null ], + [ "getPosition", "class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35", null ], + [ "getPositionX", "class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c", null ], + [ "getPositionY", "class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819", null ], + [ "isOccupied", "class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4", null ], + [ "isObstacle", "class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34", null ], + [ "movabilityObstruction", "class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632", null ], + [ "unitOnNode", "class_model_1_1_node.html#a82ca414242eee3d8542a935149049427", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_player-members.html b/Doc/MIS/html/class_model_1_1_player-members.html new file mode 100644 index 0000000000000000000000000000000000000000..77b0fd397c515dba06dd54e125117e5843c51b19 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_player-members.html @@ -0,0 +1,105 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_player.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Player Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_player.html">Model.Player</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0">addUnit</a>(Unit unit)</td><td class="entry"><a class="el" href="class_model_1_1_player.html">Model.Player</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56">getNumOfUnits</a>()</td><td class="entry"><a class="el" href="class_model_1_1_player.html">Model.Player</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a">getUnits</a>()</td><td class="entry"><a class="el" href="class_model_1_1_player.html">Model.Player</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e">ownsUnit</a>(Unit unit)</td><td class="entry"><a class="el" href="class_model_1_1_player.html">Model.Player</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170">Player</a>()</td><td class="entry"><a class="el" href="class_model_1_1_player.html">Model.Player</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_player.html b/Doc/MIS/html/class_model_1_1_player.html new file mode 100644 index 0000000000000000000000000000000000000000..8258c9042b143cd6801931423fcd6f4a7a210d59 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_player.html @@ -0,0 +1,228 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Player Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_player.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="class_model_1_1_player-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Player Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Represents a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. + <a href="class_model_1_1_player.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a7d58b47184f288c3e9edffbbe1580170"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170">Player</a> ()</td></tr> +<tr class="separator:a7d58b47184f288c3e9edffbbe1580170"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3c61df9a7f3755ed7355e4a3cd4e685a"><td class="memItemLeft" align="right" valign="top">LinkedList< <a class="el" href="interface_model_1_1_unit.html">Unit</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a">getUnits</a> ()</td></tr> +<tr class="separator:a3c61df9a7f3755ed7355e4a3cd4e685a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad128636680b101f6c4462d6630368a56"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56">getNumOfUnits</a> ()</td></tr> +<tr class="separator:ad128636680b101f6c4462d6630368a56"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a13d973c52472d7f54e4a3451ae16236e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e">ownsUnit</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a13d973c52472d7f54e4a3451ae16236e"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6eb0891c6c56bc41c87b3ebd4bbe3cb0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0">addUnit</a> (<a class="el" href="interface_model_1_1_unit.html">Unit</a> unit)</td></tr> +<tr class="separator:a6eb0891c6c56bc41c87b3ebd4bbe3cb0"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Represents a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. </p> +<p>Holds information pertaining to a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a7d58b47184f288c3e9edffbbe1580170"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a7d58b47184f288c3e9edffbbe1580170">§ </a></span>Player()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Player.Player </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Creates a player. Initializes a list of player owned units. </p> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a6eb0891c6c56bc41c87b3ebd4bbe3cb0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6eb0891c6c56bc41c87b3ebd4bbe3cb0">§ </a></span>addUnit()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Player.addUnit </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Adds the specified unit to the player's units. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">unit</td><td><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> to be added. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="ad128636680b101f6c4462d6630368a56"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad128636680b101f6c4462d6630368a56">§ </a></span>getNumOfUnits()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Player.getNumOfUnits </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the total number of player owned units. </p> + +</div> +</div> +<a id="a3c61df9a7f3755ed7355e4a3cd4e685a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a3c61df9a7f3755ed7355e4a3cd4e685a">§ </a></span>getUnits()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">LinkedList<<a class="el" href="interface_model_1_1_unit.html">Unit</a>> Model.Player.getUnits </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns all player owned units. </p> + +</div> +</div> +<a id="a13d973c52472d7f54e4a3451ae16236e"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a13d973c52472d7f54e4a3451ae16236e">§ </a></span>ownsUnit()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Player.ownsUnit </td> + <td>(</td> + <td class="paramtype"><a class="el" href="interface_model_1_1_unit.html">Unit</a> </td> + <td class="paramname"><em>unit</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Indicates whether the player owns the specified unit. </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">unit</td><td>Specified unit. </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Player.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_player.html">Player</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_player.js b/Doc/MIS/html/class_model_1_1_player.js new file mode 100644 index 0000000000000000000000000000000000000000..4cb3421379b08aa0a0fa535ed5b4382aa486634c --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_player.js @@ -0,0 +1,8 @@ +var class_model_1_1_player = +[ + [ "Player", "class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170", null ], + [ "addUnit", "class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0", null ], + [ "getNumOfUnits", "class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56", null ], + [ "getUnits", "class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a", null ], + [ "ownsUnit", "class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_warrior-members.html b/Doc/MIS/html/class_model_1_1_warrior-members.html new file mode 100644 index 0000000000000000000000000000000000000000..f43ec4fe5207c03aaf420916935f8c52bda72324 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_warrior-members.html @@ -0,0 +1,128 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_warrior.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Warrior Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0">Alive</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688">animate</a>(Direction direction)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d">Def</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea">equippedWeapon</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007">getButtonImage</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6">getButtonOfType</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24">getButtons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9">getCharAttackInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5">getCharInfo</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968">getClass</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a">getCurrentFrame</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344">getEquipableWeapons</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75">getMovability</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a">getSpriteImage</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a">getStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735">Hp</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Int</b> (defined in <a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a>)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2">isButtonActive</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6">Level</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa">PixelCoordinates</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5">Position</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6">Res</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a">setButtonCoordinates</a>(Vector2 pixelCoordinates)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd">setInitialStats</a>()</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Skill</b> (defined in <a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a>)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4">Speed</a></td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Str</b> (defined in <a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a>)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7">Warrior</a>(Texture2D spriteImage, Button attackButton, Button moveButton, Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td><td class="entry"><a class="el" href="class_model_1_1_warrior.html">Model.Warrior</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_warrior.html b/Doc/MIS/html/class_model_1_1_warrior.html new file mode 100644 index 0000000000000000000000000000000000000000..c436918e3bc20c730534c51fa573a33f009c50a2 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_warrior.html @@ -0,0 +1,832 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Warrior Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_model_1_1_warrior.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_model_1_1_warrior-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Warrior Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance + <a href="class_model_1_1_warrior.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Warrior:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_model_1_1_warrior.png" usemap="#Model.Warrior_map" alt=""/> + <map id="Model.Warrior_map" name="Model.Warrior_map"> +<area href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer " alt="Model.Unit" shape="rect" coords="0,0,94,24"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:ab78e2fbb3c55ddcf59c81457c1aa97f7"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7">Warrior</a> (Texture2D spriteImage, <a class="el" href="class_view_1_1_button.html">Button</a> attackButton, <a class="el" href="class_view_1_1_button.html">Button</a> moveButton, <a class="el" href="class_view_1_1_button.html">Button</a> itemButton, <a class="el" href="class_view_1_1_button.html">Button</a> waitButton, <a class="el" href="class_view_1_1_button.html">Button</a> confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player)</td></tr> +<tr class="separator:ab78e2fbb3c55ddcf59c81457c1aa97f7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8b774a43312fc8594725578630b27dfd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd">setInitialStats</a> ()</td></tr> +<tr class="separator:a8b774a43312fc8594725578630b27dfd"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0810e8a8317bf596b2368100fcc6ca75"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75">getMovability</a> ()</td></tr> +<tr class="separator:a0810e8a8317bf596b2368100fcc6ca75"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6361e8105573a09d8f29935b41d2a59a"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a">getStats</a> ()</td></tr> +<tr class="separator:a6361e8105573a09d8f29935b41d2a59a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8f611698ecb5f6b287fd68863462a344"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344">getEquipableWeapons</a> ()</td></tr> +<tr class="separator:a8f611698ecb5f6b287fd68863462a344"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0b8ae1e95b8b00d7da976330db80b968"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968">getClass</a> ()</td></tr> +<tr class="separator:a0b8ae1e95b8b00d7da976330db80b968"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:abcbb2031c3f28d0a4c3509aa30b6308a"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a">getSpriteImage</a> ()</td></tr> +<tr class="separator:abcbb2031c3f28d0a4c3509aa30b6308a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a113fc7c767ebae89aa0968f2b467a007"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007">getButtonImage</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a113fc7c767ebae89aa0968f2b467a007"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a10925eec2f2749a02bcee78c273646f2"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2">isButtonActive</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a10925eec2f2749a02bcee78c273646f2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a243b4ba6d7657e5275c0d74c1e9800e5"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5">getCharInfo</a> ()</td></tr> +<tr class="separator:a243b4ba6d7657e5275c0d74c1e9800e5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40dcd822abdd36758035af6c6d08c0b9"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9">getCharAttackInfo</a> ()</td></tr> +<tr class="separator:a40dcd822abdd36758035af6c6d08c0b9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acfd43847689bf1dc0d58429688c33b24"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24">getButtons</a> ()</td></tr> +<tr class="separator:acfd43847689bf1dc0d58429688c33b24"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0f5a9c6f5e550f44c84ca64ce022e9a6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6">getButtonOfType</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a0f5a9c6f5e550f44c84ca64ce022e9a6"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acdc442170e6d92c84dadcd7e49b90a7a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a">setButtonCoordinates</a> (Vector2 pixelCoordinates)</td></tr> +<tr class="separator:acdc442170e6d92c84dadcd7e49b90a7a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8e10a65906547abdc55aabb7852eb34a"><td class="memItemLeft" align="right" valign="top">Rectangle </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a">getCurrentFrame</a> ()</td></tr> +<tr class="separator:a8e10a65906547abdc55aabb7852eb34a"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0e4d364c551d62c4c9b8993f299e5688"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688">animate</a> (Direction direction)</td></tr> +<tr class="separator:a0e4d364c551d62c4c9b8993f299e5688"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a064845f1f36d363cb12089743eb277d0"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a064845f1f36d363cb12089743eb277d0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0d8ed534eedb08e75884fedb14277735"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:a0d8ed534eedb08e75884fedb14277735"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a39a53eedbc5f1580b18ac206626e76e4"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:a39a53eedbc5f1580b18ac206626e76e4"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aadd627830a738fc79a32da54a1349d4d"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:aadd627830a738fc79a32da54a1349d4d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6fb225addb43acf799fefb5177b690f6"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:a6fb225addb43acf799fefb5177b690f6"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40ebb67fd534b727ceb63cfdbe5e1af6"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:a40ebb67fd534b727ceb63cfdbe5e1af6"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a78b6ebe81e84bf816401c766fc5366ea"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a78b6ebe81e84bf816401c766fc5366ea"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa2f0b023e247a47fc5e270c279467108"><td class="memItemLeft" align="right" valign="top"><a id="aa2f0b023e247a47fc5e270c279467108"></a> +int </td><td class="memItemRight" valign="bottom"><b>Str</b><code> [get, set]</code></td></tr> +<tr class="separator:aa2f0b023e247a47fc5e270c279467108"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a05f268c3fbd9ae3152fd31d4549926a3"><td class="memItemLeft" align="right" valign="top"><a id="a05f268c3fbd9ae3152fd31d4549926a3"></a> +int </td><td class="memItemRight" valign="bottom"><b>Int</b><code> [get, set]</code></td></tr> +<tr class="separator:a05f268c3fbd9ae3152fd31d4549926a3"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa6346f9549e6512ddf8491250acf54d9"><td class="memItemLeft" align="right" valign="top"><a id="aa6346f9549e6512ddf8491250acf54d9"></a> +int </td><td class="memItemRight" valign="bottom"><b>Skill</b><code> [get, set]</code></td></tr> +<tr class="separator:aa6346f9549e6512ddf8491250acf54d9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8d72341804e201466fede9543cf6b9a5"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a8d72341804e201466fede9543cf6b9a5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0cf0d3bc4998616c193a836237bd56aa"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a0cf0d3bc4998616c193a836237bd56aa"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="inherit_header properties_interface_model_1_1_unit"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_model_1_1_unit')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td></tr> +<tr class="memitem:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a9ec349169a911cbd3400fd8ac805bbc9 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:add5c3b029398346c448bfa3a64f278f1 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Str</a><code> [get, set]</code></td></tr> +<tr class="separator:a3d1d61e9c50cb7e005343a17bd9eff17 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Int</a><code> [get, set]</code></td></tr> +<tr class="separator:a9bef9ff10e4fb3d643632c431f1d3cfa inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Skill</a><code> [get, set]</code></td></tr> +<tr class="separator:aacecaa31661bd95dcc36bde480a2ea81 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:aecee4e038fc518751386c525331ac920 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:afca346077df4376dc519435f3a192949 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:acc73a95a98cadd660da4df26aa1dab22 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:afdbcc5ed513f2d2ac9b1817b542dcce5 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a6768928c4a12dfd60675b830bdc70167 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a090b11590e5dbfa1a064c21d831d0a3b inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a40c0baa06bc651953048d73599070425 inherit properties_interface_model_1_1_unit"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="ab78e2fbb3c55ddcf59c81457c1aa97f7"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab78e2fbb3c55ddcf59c81457c1aa97f7">§ </a></span>Warrior()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Model.Warrior.Warrior </td> + <td>(</td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>spriteImage</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>attackButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>moveButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>itemButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>waitButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="class_view_1_1_button.html">Button</a> </td> + <td class="paramname"><em>confirmButton</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>charAttackInfo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>coordinates</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>player</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>The constructor for <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">spriteImage</td><td>The character sprite </td></tr> + <tr><td class="paramname">attackButton</td><td>The dropdownmenu attack button texture </td></tr> + <tr><td class="paramname">moveButton</td><td>The dropdownmenu move button texture </td></tr> + <tr><td class="paramname">itemButton</td><td>The dropdownmenu item button texture </td></tr> + <tr><td class="paramname">waitButton</td><td>The dropdownmenu wait button texture </td></tr> + <tr><td class="paramname">confirmButton</td><td>The attack confirm button texture </td></tr> + <tr><td class="paramname">charInfo</td><td>The character info popup texture </td></tr> + <tr><td class="paramname">charAttackInfo</td><td>The character attack menu popup texture </td></tr> + <tr><td class="paramname">coordinates</td><td>The unit's current coordinate on screen </td></tr> + <tr><td class="paramname">player</td><td>The player of which the unit belongs to </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a0e4d364c551d62c4c9b8993f299e5688"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0e4d364c551d62c4c9b8993f299e5688">§ </a></span>animate()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Warrior.animate </td> + <td>(</td> + <td class="paramtype">Direction </td> + <td class="paramname"><em>direction</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>animate sprite walking the direction specified </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">direction</td><td>The direction the unit is moving in </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">Model.Unit</a>.</p> + +</div> +</div> +<a id="a113fc7c767ebae89aa0968f2b467a007"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a113fc7c767ebae89aa0968f2b467a007">§ </a></span>getButtonImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Warrior.getButtonImage </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the button texture at index i </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">Model.Unit</a>.</p> + +</div> +</div> +<a id="a0f5a9c6f5e550f44c84ca64ce022e9a6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0f5a9c6f5e550f44c84ca64ce022e9a6">§ </a></span>getButtonOfType()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> Model.Warrior.getButtonOfType </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button type </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">buttonType</td><td>The button to return (Move, Attack, Item, Wait, and attack confirm) </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">Model.Unit</a>.</p> + +</div> +</div> +<a id="acfd43847689bf1dc0d58429688c33b24"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acfd43847689bf1dc0d58429688c33b24">§ </a></span>getButtons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> [] Model.Warrior.getButtons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the dropdown menu buttons of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">Model.Unit</a>.</p> + +</div> +</div> +<a id="a40dcd822abdd36758035af6c6d08c0b9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a40dcd822abdd36758035af6c6d08c0b9">§ </a></span>getCharAttackInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Warrior.getCharAttackInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char attack info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">Model.Unit</a>.</p> + +</div> +</div> +<a id="a243b4ba6d7657e5275c0d74c1e9800e5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a243b4ba6d7657e5275c0d74c1e9800e5">§ </a></span>getCharInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Warrior.getCharInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char info screen texture </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">Model.Unit</a>.</p> + +</div> +</div> +<a id="a0b8ae1e95b8b00d7da976330db80b968"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0b8ae1e95b8b00d7da976330db80b968">§ </a></span>getClass()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> Model.Warrior.getClass </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns unit's class (warrior, mage, archer) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">Model.Unit</a>.</p> + +</div> +</div> +<a id="a8e10a65906547abdc55aabb7852eb34a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a8e10a65906547abdc55aabb7852eb34a">§ </a></span>getCurrentFrame()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Rectangle Model.Warrior.getCurrentFrame </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the current sprite frame in animation sequence </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">Model.Unit</a>.</p> + +</div> +</div> +<a id="a8f611698ecb5f6b287fd68863462a344"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a8f611698ecb5f6b287fd68863462a344">§ </a></span>getEquipableWeapons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] Model.Warrior.getEquipableWeapons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns array of equipable weapons </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">Model.Unit</a>.</p> + +</div> +</div> +<a id="a0810e8a8317bf596b2368100fcc6ca75"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0810e8a8317bf596b2368100fcc6ca75">§ </a></span>getMovability()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.getMovability </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the unit's movability range on grid (number of spaces the unit can move in one turn) </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">Model.Unit</a>.</p> + +</div> +</div> +<a id="abcbb2031c3f28d0a4c3509aa30b6308a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#abcbb2031c3f28d0a4c3509aa30b6308a">§ </a></span>getSpriteImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Warrior.getSpriteImage </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the sprite image of the unit </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">Model.Unit</a>.</p> + +</div> +</div> +<a id="a6361e8105573a09d8f29935b41d2a59a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6361e8105573a09d8f29935b41d2a59a">§ </a></span>getStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int [] Model.Warrior.getStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns all stats as an array </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">Model.Unit</a>.</p> + +</div> +</div> +<a id="a10925eec2f2749a02bcee78c273646f2"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a10925eec2f2749a02bcee78c273646f2">§ </a></span>isButtonActive()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Warrior.isButtonActive </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>indicates whether a button has already been previously selected or not </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">Model.Unit</a>.</p> + +</div> +</div> +<a id="acdc442170e6d92c84dadcd7e49b90a7a"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acdc442170e6d92c84dadcd7e49b90a7a">§ </a></span>setButtonCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Warrior.setButtonCoordinates </td> + <td>(</td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>pixelCoordinates</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets the coordinates of menu buttons </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">pixelCoordinates</td><td>The pixel coordinate of the button </td></tr> + </table> + </dd> +</dl> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">Model.Unit</a>.</p> + +</div> +</div> +<a id="a8b774a43312fc8594725578630b27dfd"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a8b774a43312fc8594725578630b27dfd">§ </a></span>setInitialStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Warrior.setInitialStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets initial unit stats upon creation </p> + +<p>Implements <a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">Model.Unit</a>.</p> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="a064845f1f36d363cb12089743eb277d0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a064845f1f36d363cb12089743eb277d0">§ </a></span>Alive</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Warrior.Alive</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns whether or not unit is alive </p> + +</div> +</div> +<a id="aadd627830a738fc79a32da54a1349d4d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aadd627830a738fc79a32da54a1349d4d">§ </a></span>Def</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.Def</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Defense </p> + +</div> +</div> +<a id="a78b6ebe81e84bf816401c766fc5366ea"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a78b6ebe81e84bf816401c766fc5366ea">§ </a></span>equippedWeapon</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> Model.Warrior.equippedWeapon</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns weapon the unit is currently equipping </p> + +</div> +</div> +<a id="a0d8ed534eedb08e75884fedb14277735"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0d8ed534eedb08e75884fedb14277735">§ </a></span>Hp</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.Hp</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's HP </p> + +</div> +</div> +<a id="a40ebb67fd534b727ceb63cfdbe5e1af6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a40ebb67fd534b727ceb63cfdbe5e1af6">§ </a></span>Level</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.Level</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Level </p> + +</div> +</div> +<a id="a0cf0d3bc4998616c193a836237bd56aa"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0cf0d3bc4998616c193a836237bd56aa">§ </a></span>PixelCoordinates</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Vector2 Model.Warrior.PixelCoordinates</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns the pixel coordinate of the unit <br /> + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) </p> + +</div> +</div> +<a id="a8d72341804e201466fede9543cf6b9a5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a8d72341804e201466fede9543cf6b9a5">§ </a></span>Position</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Tuple<int, int> Model.Warrior.Position</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>gets and sets unit's position by tile </p> + +</div> +</div> +<a id="a6fb225addb43acf799fefb5177b690f6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6fb225addb43acf799fefb5177b690f6">§ </a></span>Res</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.Res</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Resistance </p> + +</div> +</div> +<a id="a39a53eedbc5f1580b18ac206626e76e4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a39a53eedbc5f1580b18ac206626e76e4">§ </a></span>Speed</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Warrior.Speed</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Speed </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Warrior.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="class_model_1_1_warrior.html">Warrior</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_model_1_1_warrior.js b/Doc/MIS/html/class_model_1_1_warrior.js new file mode 100644 index 0000000000000000000000000000000000000000..5a10f2aa8095a419a47804d1f24625303480ab76 --- /dev/null +++ b/Doc/MIS/html/class_model_1_1_warrior.js @@ -0,0 +1,31 @@ +var class_model_1_1_warrior = +[ + [ "Warrior", "class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7", null ], + [ "animate", "class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688", null ], + [ "getButtonImage", "class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007", null ], + [ "getButtonOfType", "class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6", null ], + [ "getButtons", "class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24", null ], + [ "getCharAttackInfo", "class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9", null ], + [ "getCharInfo", "class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5", null ], + [ "getClass", "class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968", null ], + [ "getCurrentFrame", "class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a", null ], + [ "getEquipableWeapons", "class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344", null ], + [ "getMovability", "class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75", null ], + [ "getSpriteImage", "class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a", null ], + [ "getStats", "class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a", null ], + [ "isButtonActive", "class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2", null ], + [ "setButtonCoordinates", "class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a", null ], + [ "setInitialStats", "class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd", null ], + [ "Alive", "class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0", null ], + [ "Def", "class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d", null ], + [ "equippedWeapon", "class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea", null ], + [ "Hp", "class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735", null ], + [ "Int", "class_model_1_1_warrior.html#a05f268c3fbd9ae3152fd31d4549926a3", null ], + [ "Level", "class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6", null ], + [ "PixelCoordinates", "class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa", null ], + [ "Position", "class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5", null ], + [ "Res", "class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6", null ], + [ "Skill", "class_model_1_1_warrior.html#aa6346f9549e6512ddf8491250acf54d9", null ], + [ "Speed", "class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4", null ], + [ "Str", "class_model_1_1_warrior.html#aa2f0b023e247a47fc5e270c279467108", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_model_1_1_warrior.png b/Doc/MIS/html/class_model_1_1_warrior.png new file mode 100644 index 0000000000000000000000000000000000000000..b1075ef0c2c66cd42da88d9b7096d326511bbfdb Binary files /dev/null and b/Doc/MIS/html/class_model_1_1_warrior.png differ diff --git a/Doc/MIS/html/class_view_1_1_button-members.html b/Doc/MIS/html/class_view_1_1_button-members.html new file mode 100644 index 0000000000000000000000000000000000000000..c8a3bb75b0a405d31a8651c56c8e2a7bb10805bf --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_button-members.html @@ -0,0 +1,106 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_button.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">View.Button Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_view_1_1_button.html">View.Button</a>, including all inherited members.</p> +<table class="directory"> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Active</b> (defined in <a class="el" href="class_view_1_1_button.html">View.Button</a>)</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_button.html#af1811d9154063453744af47950aeefc0">Button</a>(ButtonType type, Vector2 coordinates, Texture2D image)</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755">getButtonType</a>()</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576">getImage</a>()</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148">getPixelCoordinates</a>()</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d">setPixelCoordinates</a>(int x, int y)</td><td class="entry"><a class="el" href="class_view_1_1_button.html">View.Button</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_button.html b/Doc/MIS/html/class_view_1_1_button.html new file mode 100644 index 0000000000000000000000000000000000000000..21e5de33756b9a22fb516570d235b57ece8dc3ec --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_button.html @@ -0,0 +1,263 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View.Button Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_button.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="class_view_1_1_button-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">View.Button Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Buttons for the drop down menu buttons when selecting units + <a href="class_view_1_1_button.html#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:af1811d9154063453744af47950aeefc0"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html#af1811d9154063453744af47950aeefc0">Button</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> type, Vector2 coordinates, Texture2D image)</td></tr> +<tr class="separator:af1811d9154063453744af47950aeefc0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab5af522cf14ccd4b5cb98db22b3d2148"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148">getPixelCoordinates</a> ()</td></tr> +<tr class="separator:ab5af522cf14ccd4b5cb98db22b3d2148"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad4e4d38e1b9292cfca0640d28b40e755"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755">getButtonType</a> ()</td></tr> +<tr class="separator:ad4e4d38e1b9292cfca0640d28b40e755"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a78a9a7b0a48dddfe30553e964a39e576"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576">getImage</a> ()</td></tr> +<tr class="separator:a78a9a7b0a48dddfe30553e964a39e576"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a74efddb86bfe8f4a765bd124c0fa492d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d">setPixelCoordinates</a> (int x, int y)</td></tr> +<tr class="separator:a74efddb86bfe8f4a765bd124c0fa492d"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a86f649f99a4418c2cdc544690f74ad1d"><td class="memItemLeft" align="right" valign="top"><a id="a86f649f99a4418c2cdc544690f74ad1d"></a> +bool </td><td class="memItemRight" valign="bottom"><b>Active</b><code> [get, set]</code></td></tr> +<tr class="separator:a86f649f99a4418c2cdc544690f74ad1d"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>Buttons for the drop down menu buttons when selecting units </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="af1811d9154063453744af47950aeefc0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#af1811d9154063453744af47950aeefc0">§ </a></span>Button()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">View.Button.Button </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>type</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>coordinates</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Texture2D </td> + <td class="paramname"><em>image</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructor for button </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">type</td><td>Which button type </td></tr> + <tr><td class="paramname">coordinates</td><td>The pixel coordinate of the button </td></tr> + <tr><td class="paramname">image</td><td>The texture for the button </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="ad4e4d38e1b9292cfca0640d28b40e755"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad4e4d38e1b9292cfca0640d28b40e755">§ </a></span>getButtonType()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> View.Button.getButtonType </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button type </p> + +</div> +</div> +<a id="a78a9a7b0a48dddfe30553e964a39e576"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a78a9a7b0a48dddfe30553e964a39e576">§ </a></span>getImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D View.Button.getImage </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button image </p> + +</div> +</div> +<a id="ab5af522cf14ccd4b5cb98db22b3d2148"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab5af522cf14ccd4b5cb98db22b3d2148">§ </a></span>getPixelCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Vector2 View.Button.getPixelCoordinates </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the pixel coordinate of the button </p> + +</div> +</div> +<a id="a74efddb86bfe8f4a765bd124c0fa492d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a74efddb86bfe8f4a765bd124c0fa492d">§ </a></span>setPixelCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.Button.setPixelCoordinates </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"><em>x</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>y</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Sets the pixelCoordinate </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">x</td><td>The x coordinate of the button </td></tr> + <tr><td class="paramname">y</td><td>the y coordinate of the button </td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<hr/>The documentation for this class was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Button.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li><li class="navelem"><a class="el" href="class_view_1_1_button.html">Button</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_button.js b/Doc/MIS/html/class_view_1_1_button.js new file mode 100644 index 0000000000000000000000000000000000000000..446db25e21fbc3648e797f185eddb59cc677019f --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_button.js @@ -0,0 +1,9 @@ +var class_view_1_1_button = +[ + [ "Button", "class_view_1_1_button.html#af1811d9154063453744af47950aeefc0", null ], + [ "getButtonType", "class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755", null ], + [ "getImage", "class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576", null ], + [ "getPixelCoordinates", "class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148", null ], + [ "setPixelCoordinates", "class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d", null ], + [ "Active", "class_view_1_1_button.html#a86f649f99a4418c2cdc544690f74ad1d", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_view_1_1_how_to_play-members.html b/Doc/MIS/html/class_view_1_1_how_to_play-members.html new file mode 100644 index 0000000000000000000000000000000000000000..8d0dc4cebe8fec9a540343050a47d778fe1359f9 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play-members.html @@ -0,0 +1,108 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">View.HowToPlay Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8">Dispose</a>(bool disposing)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba">getNext</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27">getQuit</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960">HowToPlay</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>next</b> (defined in <a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a>)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>quit</b> (defined in <a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a>)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973">setNextFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59">setQuitFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play.html">View.HowToPlay</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play.html b/Doc/MIS/html/class_view_1_1_how_to_play.html new file mode 100644 index 0000000000000000000000000000000000000000..5a6f4b6f0e1c4dee80c2f8dc83654fdb4ea15372 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play.html @@ -0,0 +1,275 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View.HowToPlay Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#pub-attribs">Public Attributes</a> | +<a href="#pro-methods">Protected Member Functions</a> | +<a href="class_view_1_1_how_to_play-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">View.HowToPlay Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>How to Play Menu + <a href="class_view_1_1_how_to_play.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for View.HowToPlay:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_view_1_1_how_to_play.png" usemap="#View.HowToPlay_map" alt=""/> + <map id="View.HowToPlay_map" name="View.HowToPlay_map"> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a5c24309243dd0682ad9e25ecaf15e960"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960">HowToPlay</a> ()</td></tr> +<tr class="separator:a5c24309243dd0682ad9e25ecaf15e960"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3c3a75e8e633b002acee5565578cca59"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59">setQuitFalse</a> ()</td></tr> +<tr class="separator:a3c3a75e8e633b002acee5565578cca59"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a271b045914c0603653a830098b806f27"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27">getQuit</a> ()</td></tr> +<tr class="separator:a271b045914c0603653a830098b806f27"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acbd92ee6af1908ac5fe90e19fbc9e973"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973">setNextFalse</a> ()</td></tr> +<tr class="separator:acbd92ee6af1908ac5fe90e19fbc9e973"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0381eec7136accb054e37dea55e949ba"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba">getNext</a> ()</td></tr> +<tr class="separator:a0381eec7136accb054e37dea55e949ba"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a> +Public Attributes</h2></td></tr> +<tr class="memitem:ac9ab59e74d788e2bf98b96eb904b34a5"><td class="memItemLeft" align="right" valign="top"><a id="ac9ab59e74d788e2bf98b96eb904b34a5"></a> +bool </td><td class="memItemRight" valign="bottom"><b>quit</b> = false</td></tr> +<tr class="separator:ac9ab59e74d788e2bf98b96eb904b34a5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a29e4237501cdc8a6294a73aebd69f8f4"><td class="memItemLeft" align="right" valign="top"><a id="a29e4237501cdc8a6294a73aebd69f8f4"></a> +bool </td><td class="memItemRight" valign="bottom"><b>next</b> = false</td></tr> +<tr class="separator:a29e4237501cdc8a6294a73aebd69f8f4"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> +Protected Member Functions</h2></td></tr> +<tr class="memitem:a459b97062e80b85abff7660bbee504c8"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8">Dispose</a> (bool disposing)</td></tr> +<tr class="memdesc:a459b97062e80b85abff7660bbee504c8"><td class="mdescLeft"> </td><td class="mdescRight">Clean up any resources being used. <a href="#a459b97062e80b85abff7660bbee504c8">More...</a><br /></td></tr> +<tr class="separator:a459b97062e80b85abff7660bbee504c8"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>How to Play Menu </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a5c24309243dd0682ad9e25ecaf15e960"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a5c24309243dd0682ad9e25ecaf15e960">§ </a></span>HowToPlay()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">View.HowToPlay.HowToPlay </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructor for <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> window </p> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a459b97062e80b85abff7660bbee504c8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a459b97062e80b85abff7660bbee504c8">§ </a></span>Dispose()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void View.HowToPlay.Dispose </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"><em>disposing</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> + +<p>Clean up any resources being used. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">disposing</td><td>true if managed resources should be disposed; otherwise, false.</td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a0381eec7136accb054e37dea55e949ba"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0381eec7136accb054e37dea55e949ba">§ </a></span>getNext()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.HowToPlay.getNext </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns if quit button is currently clicked </p> + +</div> +</div> +<a id="a271b045914c0603653a830098b806f27"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a271b045914c0603653a830098b806f27">§ </a></span>getQuit()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.HowToPlay.getQuit </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns if quit button is currently clicked </p> + +</div> +</div> +<a id="acbd92ee6af1908ac5fe90e19fbc9e973"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acbd92ee6af1908ac5fe90e19fbc9e973">§ </a></span>setNextFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.HowToPlay.setNextFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>checks if Game State is no longer inside How To Play </p> + +</div> +</div> +<a id="a3c3a75e8e633b002acee5565578cca59"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a3c3a75e8e633b002acee5565578cca59">§ </a></span>setQuitFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.HowToPlay.setQuitFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>checks if Game State is no longer inside How To Play </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following files:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.cs</li> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.Designer.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li><li class="navelem"><a class="el" href="class_view_1_1_how_to_play.html">HowToPlay</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play.js b/Doc/MIS/html/class_view_1_1_how_to_play.js new file mode 100644 index 0000000000000000000000000000000000000000..9cb1a6a8626047ddd34826a9e03f8a92f5e85c0c --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play.js @@ -0,0 +1,11 @@ +var class_view_1_1_how_to_play = +[ + [ "HowToPlay", "class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960", null ], + [ "Dispose", "class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8", null ], + [ "getNext", "class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba", null ], + [ "getQuit", "class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27", null ], + [ "setNextFalse", "class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973", null ], + [ "setQuitFalse", "class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59", null ], + [ "next", "class_view_1_1_how_to_play.html#a29e4237501cdc8a6294a73aebd69f8f4", null ], + [ "quit", "class_view_1_1_how_to_play.html#ac9ab59e74d788e2bf98b96eb904b34a5", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_view_1_1_how_to_play.png b/Doc/MIS/html/class_view_1_1_how_to_play.png new file mode 100644 index 0000000000000000000000000000000000000000..59e09b87acb854dd4ba7410d129adbe6f3d73370 Binary files /dev/null and b/Doc/MIS/html/class_view_1_1_how_to_play.png differ diff --git a/Doc/MIS/html/class_view_1_1_how_to_play2-members.html b/Doc/MIS/html/class_view_1_1_how_to_play2-members.html new file mode 100644 index 0000000000000000000000000000000000000000..86d1ce014cf6df5e39c94a9966f0f7eaa3ee8671 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play2-members.html @@ -0,0 +1,108 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play2.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">View.HowToPlay2 Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac">Dispose</a>(bool disposing)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb">getNext</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28">getQuit</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0">HowToPlay2</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>next</b> (defined in <a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a>)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>quit</b> (defined in <a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a>)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d">setNextFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5">setQuitFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play2.html">View.HowToPlay2</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play2.html b/Doc/MIS/html/class_view_1_1_how_to_play2.html new file mode 100644 index 0000000000000000000000000000000000000000..7c5d9922cc994be7bea3f0e6a61be6a7a2efebc0 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play2.html @@ -0,0 +1,275 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View.HowToPlay2 Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play2.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#pub-attribs">Public Attributes</a> | +<a href="#pro-methods">Protected Member Functions</a> | +<a href="class_view_1_1_how_to_play2-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">View.HowToPlay2 Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>How to Play Menu 2 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu + <a href="class_view_1_1_how_to_play2.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for View.HowToPlay2:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_view_1_1_how_to_play2.png" usemap="#View.HowToPlay2_map" alt=""/> + <map id="View.HowToPlay2_map" name="View.HowToPlay2_map"> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a275238cab088650a4930ba6e0f1ba7b0"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0">HowToPlay2</a> ()</td></tr> +<tr class="separator:a275238cab088650a4930ba6e0f1ba7b0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa9f430897069f4ed3921a0d9452052c5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5">setQuitFalse</a> ()</td></tr> +<tr class="separator:aa9f430897069f4ed3921a0d9452052c5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a199c1bf8e53a56e23c14ea81e5900c28"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28">getQuit</a> ()</td></tr> +<tr class="separator:a199c1bf8e53a56e23c14ea81e5900c28"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae730b191665b52e780b0313f4906719d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d">setNextFalse</a> ()</td></tr> +<tr class="separator:ae730b191665b52e780b0313f4906719d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acc5864615b7fce1f8cb3b46af0ea8abb"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb">getNext</a> ()</td></tr> +<tr class="separator:acc5864615b7fce1f8cb3b46af0ea8abb"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a> +Public Attributes</h2></td></tr> +<tr class="memitem:a3068d75dc47a323787741aac8edb8ad2"><td class="memItemLeft" align="right" valign="top"><a id="a3068d75dc47a323787741aac8edb8ad2"></a> +bool </td><td class="memItemRight" valign="bottom"><b>quit</b> = false</td></tr> +<tr class="separator:a3068d75dc47a323787741aac8edb8ad2"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3aa2ade52076ef9417b31c0b701dad0b"><td class="memItemLeft" align="right" valign="top"><a id="a3aa2ade52076ef9417b31c0b701dad0b"></a> +bool </td><td class="memItemRight" valign="bottom"><b>next</b> = false</td></tr> +<tr class="separator:a3aa2ade52076ef9417b31c0b701dad0b"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> +Protected Member Functions</h2></td></tr> +<tr class="memitem:abf387c99fbdd073bae8f6134235904ac"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac">Dispose</a> (bool disposing)</td></tr> +<tr class="memdesc:abf387c99fbdd073bae8f6134235904ac"><td class="mdescLeft"> </td><td class="mdescRight">Clean up any resources being used. <a href="#abf387c99fbdd073bae8f6134235904ac">More...</a><br /></td></tr> +<tr class="separator:abf387c99fbdd073bae8f6134235904ac"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>How to Play Menu 2 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a275238cab088650a4930ba6e0f1ba7b0"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a275238cab088650a4930ba6e0f1ba7b0">§ </a></span>HowToPlay2()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">View.HowToPlay2.HowToPlay2 </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructor for <a class="el" href="class_view_1_1_how_to_play2.html" title="How to Play Menu 2 is opened with next is clicked on HowToPlay Menu ">HowToPlay2</a> window </p> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="abf387c99fbdd073bae8f6134235904ac"></a> +<h2 class="memtitle"><span class="permalink"><a href="#abf387c99fbdd073bae8f6134235904ac">§ </a></span>Dispose()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void View.HowToPlay2.Dispose </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"><em>disposing</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> + +<p>Clean up any resources being used. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">disposing</td><td>true if managed resources should be disposed; otherwise, false.</td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="acc5864615b7fce1f8cb3b46af0ea8abb"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acc5864615b7fce1f8cb3b46af0ea8abb">§ </a></span>getNext()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.HowToPlay2.getNext </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns if quit button is currently clicked </p> + +</div> +</div> +<a id="a199c1bf8e53a56e23c14ea81e5900c28"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a199c1bf8e53a56e23c14ea81e5900c28">§ </a></span>getQuit()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.HowToPlay2.getQuit </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns if quit button is currently clicked </p> + +</div> +</div> +<a id="ae730b191665b52e780b0313f4906719d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae730b191665b52e780b0313f4906719d">§ </a></span>setNextFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.HowToPlay2.setNextFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>checks if Game State is no longer inside How To Play </p> + +</div> +</div> +<a id="aa9f430897069f4ed3921a0d9452052c5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa9f430897069f4ed3921a0d9452052c5">§ </a></span>setQuitFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.HowToPlay2.setQuitFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>checks if Game State is no longer inside How To Play </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following files:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.cs</li> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.Designer.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li><li class="navelem"><a class="el" href="class_view_1_1_how_to_play2.html">HowToPlay2</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play2.js b/Doc/MIS/html/class_view_1_1_how_to_play2.js new file mode 100644 index 0000000000000000000000000000000000000000..a8ec8965cb40e3b91cf96fdfb4a9531e6bf8d6be --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play2.js @@ -0,0 +1,11 @@ +var class_view_1_1_how_to_play2 = +[ + [ "HowToPlay2", "class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0", null ], + [ "Dispose", "class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac", null ], + [ "getNext", "class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb", null ], + [ "getQuit", "class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28", null ], + [ "setNextFalse", "class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d", null ], + [ "setQuitFalse", "class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5", null ], + [ "next", "class_view_1_1_how_to_play2.html#a3aa2ade52076ef9417b31c0b701dad0b", null ], + [ "quit", "class_view_1_1_how_to_play2.html#a3068d75dc47a323787741aac8edb8ad2", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_view_1_1_how_to_play2.png b/Doc/MIS/html/class_view_1_1_how_to_play2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0679a7e2d866f7c4143d813829762dbbe667a7f Binary files /dev/null and b/Doc/MIS/html/class_view_1_1_how_to_play2.png differ diff --git a/Doc/MIS/html/class_view_1_1_how_to_play3-members.html b/Doc/MIS/html/class_view_1_1_how_to_play3-members.html new file mode 100644 index 0000000000000000000000000000000000000000..8a33801d8fdb84c03c07b17499d6321e9f664f00 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play3-members.html @@ -0,0 +1,105 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play3.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">View.HowToPlay3 Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54">Dispose</a>(bool disposing)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539">getQuit</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1">HowToPlay3</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>quit</b> (defined in <a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a>)</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6">setQuitFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_how_to_play3.html">View.HowToPlay3</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play3.html b/Doc/MIS/html/class_view_1_1_how_to_play3.html new file mode 100644 index 0000000000000000000000000000000000000000..13f01ac1b280f4b1d2b7ab078a2ad97d187ec25f --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play3.html @@ -0,0 +1,232 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View.HowToPlay3 Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_how_to_play3.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#pub-attribs">Public Attributes</a> | +<a href="#pro-methods">Protected Member Functions</a> | +<a href="class_view_1_1_how_to_play3-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">View.HowToPlay3 Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>How to Play Menu 3 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu 2 + <a href="class_view_1_1_how_to_play3.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for View.HowToPlay3:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_view_1_1_how_to_play3.png" usemap="#View.HowToPlay3_map" alt=""/> + <map id="View.HowToPlay3_map" name="View.HowToPlay3_map"> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a55470f85b01b5025cc11d7f75655f9d1"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1">HowToPlay3</a> ()</td></tr> +<tr class="separator:a55470f85b01b5025cc11d7f75655f9d1"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ad31d606a58cd810afbfb12b45f3b4ca6"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6">setQuitFalse</a> ()</td></tr> +<tr class="separator:ad31d606a58cd810afbfb12b45f3b4ca6"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a0e08141a83247c96907d6677ac0da539"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539">getQuit</a> ()</td></tr> +<tr class="separator:a0e08141a83247c96907d6677ac0da539"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a> +Public Attributes</h2></td></tr> +<tr class="memitem:a8fb21d6afb8a5af33571c8d66bdf2c92"><td class="memItemLeft" align="right" valign="top"><a id="a8fb21d6afb8a5af33571c8d66bdf2c92"></a> +bool </td><td class="memItemRight" valign="bottom"><b>quit</b> = false</td></tr> +<tr class="separator:a8fb21d6afb8a5af33571c8d66bdf2c92"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> +Protected Member Functions</h2></td></tr> +<tr class="memitem:a9383ffca40f40f1554ee919b72b6af54"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54">Dispose</a> (bool disposing)</td></tr> +<tr class="memdesc:a9383ffca40f40f1554ee919b72b6af54"><td class="mdescLeft"> </td><td class="mdescRight">Clean up any resources being used. <a href="#a9383ffca40f40f1554ee919b72b6af54">More...</a><br /></td></tr> +<tr class="separator:a9383ffca40f40f1554ee919b72b6af54"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>How to Play Menu 3 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu 2 </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a55470f85b01b5025cc11d7f75655f9d1"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a55470f85b01b5025cc11d7f75655f9d1">§ </a></span>HowToPlay3()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">View.HowToPlay3.HowToPlay3 </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructor for <a class="el" href="class_view_1_1_how_to_play3.html" title="How to Play Menu 3 is opened with next is clicked on HowToPlay Menu 2 ">HowToPlay3</a> window </p> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="a9383ffca40f40f1554ee919b72b6af54"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9383ffca40f40f1554ee919b72b6af54">§ </a></span>Dispose()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void View.HowToPlay3.Dispose </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"><em>disposing</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> + +<p>Clean up any resources being used. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">disposing</td><td>true if managed resources should be disposed; otherwise, false.</td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="a0e08141a83247c96907d6677ac0da539"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a0e08141a83247c96907d6677ac0da539">§ </a></span>getQuit()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.HowToPlay3.getQuit </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns if quit button is currently clicked </p> + +</div> +</div> +<a id="ad31d606a58cd810afbfb12b45f3b4ca6"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ad31d606a58cd810afbfb12b45f3b4ca6">§ </a></span>setQuitFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.HowToPlay3.setQuitFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>checks if Game State is no longer inside How To Play </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following files:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs</li> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.Designer.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li><li class="navelem"><a class="el" href="class_view_1_1_how_to_play3.html">HowToPlay3</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_how_to_play3.js b/Doc/MIS/html/class_view_1_1_how_to_play3.js new file mode 100644 index 0000000000000000000000000000000000000000..eff6f73618bf147e6303e762ee16cd59772887f3 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_how_to_play3.js @@ -0,0 +1,8 @@ +var class_view_1_1_how_to_play3 = +[ + [ "HowToPlay3", "class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1", null ], + [ "Dispose", "class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54", null ], + [ "getQuit", "class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539", null ], + [ "setQuitFalse", "class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6", null ], + [ "quit", "class_view_1_1_how_to_play3.html#a8fb21d6afb8a5af33571c8d66bdf2c92", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_view_1_1_how_to_play3.png b/Doc/MIS/html/class_view_1_1_how_to_play3.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc7e9e87f1b7aa22029558536139159c442939b Binary files /dev/null and b/Doc/MIS/html/class_view_1_1_how_to_play3.png differ diff --git a/Doc/MIS/html/class_view_1_1_main_menu-members.html b/Doc/MIS/html/class_view_1_1_main_menu-members.html new file mode 100644 index 0000000000000000000000000000000000000000..d1b135c5c7ffdab12e8d843ac3eed54d1fc389b6 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_main_menu-members.html @@ -0,0 +1,108 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_main_menu.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">View.MainMenu Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b">Dispose</a>(bool disposing)</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> + <tr><td class="entry"><a class="el" href="class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f">getInstruct</a>()</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>instruct</b> (defined in <a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a>)</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>load</b> (defined in <a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a>)</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32">MainMenu</a>()</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>quit</b> (defined in <a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a>)</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5">setInstructFalse</a>()</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>start</b> (defined in <a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a>)</td><td class="entry"><a class="el" href="class_view_1_1_main_menu.html">View.MainMenu</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_main_menu.html b/Doc/MIS/html/class_view_1_1_main_menu.html new file mode 100644 index 0000000000000000000000000000000000000000..5d3dce205ea85b19b1fb3462cf0e7460b08a52d0 --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_main_menu.html @@ -0,0 +1,241 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View.MainMenu Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('class_view_1_1_main_menu.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#pub-attribs">Public Attributes</a> | +<a href="#pro-methods">Protected Member Functions</a> | +<a href="class_view_1_1_main_menu-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">View.MainMenu Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The Main Menu class. This window is displayed upon starting game, and can link you to <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> playing the Game. + <a href="class_view_1_1_main_menu.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for View.MainMenu:</div> +<div class="dyncontent"> + <div class="center"> + <img src="class_view_1_1_main_menu.png" usemap="#View.MainMenu_map" alt=""/> + <map id="View.MainMenu_map" name="View.MainMenu_map"> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a148c2fad834c39e44eab811b9bf7cb32"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32">MainMenu</a> ()</td></tr> +<tr class="separator:a148c2fad834c39e44eab811b9bf7cb32"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a2efeeb76551d4eceeb90f7245ad096d5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5">setInstructFalse</a> ()</td></tr> +<tr class="separator:a2efeeb76551d4eceeb90f7245ad096d5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae90536ff5fa8f90ebe1d99623021817f"><td class="memItemLeft" align="right" valign="top">Boolean </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f">getInstruct</a> ()</td></tr> +<tr class="separator:ae90536ff5fa8f90ebe1d99623021817f"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a> +Public Attributes</h2></td></tr> +<tr class="memitem:a2d10e8525ae3bd27a593869a2683626f"><td class="memItemLeft" align="right" valign="top"><a id="a2d10e8525ae3bd27a593869a2683626f"></a> +bool </td><td class="memItemRight" valign="bottom"><b>start</b> = false</td></tr> +<tr class="separator:a2d10e8525ae3bd27a593869a2683626f"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af50efe2ac722b8efdee208268f9089be"><td class="memItemLeft" align="right" valign="top"><a id="af50efe2ac722b8efdee208268f9089be"></a> +bool </td><td class="memItemRight" valign="bottom"><b>instruct</b> = false</td></tr> +<tr class="separator:af50efe2ac722b8efdee208268f9089be"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a81bfa25099d184c99353ad06f9e1ff7b"><td class="memItemLeft" align="right" valign="top"><a id="a81bfa25099d184c99353ad06f9e1ff7b"></a> +bool </td><td class="memItemRight" valign="bottom"><b>quit</b> = false</td></tr> +<tr class="separator:a81bfa25099d184c99353ad06f9e1ff7b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af64c58a5e627a7d1de10d4d365a640a4"><td class="memItemLeft" align="right" valign="top"><a id="af64c58a5e627a7d1de10d4d365a640a4"></a> +bool </td><td class="memItemRight" valign="bottom"><b>load</b> = false</td></tr> +<tr class="separator:af64c58a5e627a7d1de10d4d365a640a4"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> +Protected Member Functions</h2></td></tr> +<tr class="memitem:aa2671453d4e5063258fb3cef3b125a9b"><td class="memItemLeft" align="right" valign="top">override void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b">Dispose</a> (bool disposing)</td></tr> +<tr class="memdesc:aa2671453d4e5063258fb3cef3b125a9b"><td class="mdescLeft"> </td><td class="mdescRight">Clean up any resources being used. <a href="#aa2671453d4e5063258fb3cef3b125a9b">More...</a><br /></td></tr> +<tr class="separator:aa2671453d4e5063258fb3cef3b125a9b"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The Main Menu class. This window is displayed upon starting game, and can link you to <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> playing the Game. </p> +</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> +<a id="a148c2fad834c39e44eab811b9bf7cb32"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a148c2fad834c39e44eab811b9bf7cb32">§ </a></span>MainMenu()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">View.MainMenu.MainMenu </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Constructor for Main Menu window </p> + +</div> +</div> +<h2 class="groupheader">Member Function Documentation</h2> +<a id="aa2671453d4e5063258fb3cef3b125a9b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa2671453d4e5063258fb3cef3b125a9b">§ </a></span>Dispose()</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">override void View.MainMenu.Dispose </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"><em>disposing</em></td><td>)</td> + <td></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">protected</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> + +<p>Clean up any resources being used. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">disposing</td><td>true if managed resources should be disposed; otherwise, false.</td></tr> + </table> + </dd> +</dl> + +</div> +</div> +<a id="ae90536ff5fa8f90ebe1d99623021817f"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae90536ff5fa8f90ebe1d99623021817f">§ </a></span>getInstruct()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Boolean View.MainMenu.getInstruct </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns current instruct boolean </p> + +</div> +</div> +<a id="a2efeeb76551d4eceeb90f7245ad096d5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a2efeeb76551d4eceeb90f7245ad096d5">§ </a></span>setInstructFalse()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void View.MainMenu.setInstructFalse </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets instruct to false when no longer on how-to-play gameState </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following files:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/MainMenu.cs</li> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/MainMenu.Designer.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li><li class="navelem"><a class="el" href="class_view_1_1_main_menu.html">MainMenu</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/class_view_1_1_main_menu.js b/Doc/MIS/html/class_view_1_1_main_menu.js new file mode 100644 index 0000000000000000000000000000000000000000..110755efdf33bbf8f31f8640067faa8e9dd8982f --- /dev/null +++ b/Doc/MIS/html/class_view_1_1_main_menu.js @@ -0,0 +1,11 @@ +var class_view_1_1_main_menu = +[ + [ "MainMenu", "class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32", null ], + [ "Dispose", "class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b", null ], + [ "getInstruct", "class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f", null ], + [ "setInstructFalse", "class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5", null ], + [ "instruct", "class_view_1_1_main_menu.html#af50efe2ac722b8efdee208268f9089be", null ], + [ "load", "class_view_1_1_main_menu.html#af64c58a5e627a7d1de10d4d365a640a4", null ], + [ "quit", "class_view_1_1_main_menu.html#a81bfa25099d184c99353ad06f9e1ff7b", null ], + [ "start", "class_view_1_1_main_menu.html#a2d10e8525ae3bd27a593869a2683626f", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/class_view_1_1_main_menu.png b/Doc/MIS/html/class_view_1_1_main_menu.png new file mode 100644 index 0000000000000000000000000000000000000000..cb683b45f53ab12353d9cd847abceb626a300217 Binary files /dev/null and b/Doc/MIS/html/class_view_1_1_main_menu.png differ diff --git a/Doc/MIS/html/classes.html b/Doc/MIS/html/classes.html new file mode 100644 index 0000000000000000000000000000000000000000..60c49ede476d8b5857bfc526c38d2c2b54ffad2b --- /dev/null +++ b/Doc/MIS/html/classes.html @@ -0,0 +1,124 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class Index</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('classes.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Class Index</div> </div> +</div><!--header--> +<div class="contents"> +<div class="qindex"><a class="qindex" href="#letter_a">a</a> | <a class="qindex" href="#letter_b">b</a> | <a class="qindex" href="#letter_d">d</a> | <a class="qindex" href="#letter_f">f</a> | <a class="qindex" href="#letter_g">g</a> | <a class="qindex" href="#letter_h">h</a> | <a class="qindex" href="#letter_m">m</a> | <a class="qindex" href="#letter_n">n</a> | <a class="qindex" href="#letter_p">p</a> | <a class="qindex" href="#letter_u">u</a> | <a class="qindex" href="#letter_w">w</a></div> +<table class="classindex"> +<tr><td rowspan="2" valign="bottom"><a name="letter_a"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  a  </div></td></tr></table> +</td><td rowspan="2" valign="bottom"><a name="letter_f"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  f  </div></td></tr></table> +</td><td rowspan="2" valign="bottom"><a name="letter_h"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  h  </div></td></tr></table> +</td><td valign="top"><a class="el" href="class_controller_1_1_mouse_handler.html">MouseHandler</a> (<a class="el" href="namespace_controller.html">Controller</a>)   </td><td rowspan="2" valign="bottom"><a name="letter_w"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  w  </div></td></tr></table> +</td></tr> +<tr><td rowspan="2" valign="bottom"><a name="letter_n"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  n  </div></td></tr></table> +</td></tr> +<tr><td valign="top"><a class="el" href="class_model_1_1_archer.html">Archer</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_fireball.html">Fireball</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_view_1_1_how_to_play.html">HowToPlay</a> (<a class="el" href="namespace_view.html">View</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_warrior.html">Warrior</a> (<a class="el" href="namespace_model.html">Model</a>)   </td></tr> +<tr><td rowspan="2" valign="bottom"><a name="letter_b"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  b  </div></td></tr></table> +</td><td rowspan="2" valign="bottom"><a name="letter_g"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  g  </div></td></tr></table> +</td><td valign="top"><a class="el" href="class_view_1_1_how_to_play2.html">HowToPlay2</a> (<a class="el" href="namespace_view.html">View</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_node.html">Node</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> (<a class="el" href="namespace_model.html">Model</a>)   </td></tr> +<tr><td valign="top"><a class="el" href="class_view_1_1_how_to_play3.html">HowToPlay3</a> (<a class="el" href="namespace_view.html">View</a>)   </td><td rowspan="2" valign="bottom"><a name="letter_p"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  p  </div></td></tr></table> +</td><td></td></tr> +<tr><td valign="top"><a class="el" href="class_model_1_1_bronze_bow.html">BronzeBow</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_controller_1_1_game.html">Game</a> (<a class="el" href="namespace_controller.html">Controller</a>)   </td><td rowspan="2" valign="bottom"><a name="letter_m"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  m  </div></td></tr></table> +</td><td></td></tr> +<tr><td valign="top"><a class="el" href="class_model_1_1_bronze_sword.html">BronzeSword</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_controller_1_1_game_function.html">GameFunction</a> (<a class="el" href="namespace_controller.html">Controller</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_player.html">Player</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td></td></tr> +<tr><td valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> (<a class="el" href="namespace_view.html">View</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_game_state.html">GameState</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_model_1_1_mage.html">Mage</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td rowspan="2" valign="bottom"><a name="letter_u"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  u  </div></td></tr></table> +</td><td></td></tr> +<tr><td rowspan="2" valign="bottom"><a name="letter_d"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  d  </div></td></tr></table> +</td><td valign="top"><a class="el" href="class_model_1_1_graph.html">Graph</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td valign="top"><a class="el" href="class_view_1_1_main_menu.html">MainMenu</a> (<a class="el" href="namespace_view.html">View</a>)   </td><td></td></tr> +<tr><td></td><td></td><td valign="top"><a class="el" href="interface_model_1_1_unit.html">Unit</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td></td></tr> +<tr><td valign="top"><a class="el" href="class_model_1_1_damage_calculations.html">DamageCalculations</a> (<a class="el" href="namespace_model.html">Model</a>)   </td><td></td><td></td><td></td><td></td></tr> +<tr><td></td><td></td><td></td><td></td><td></td></tr> +</table> +<div class="qindex"><a class="qindex" href="#letter_a">a</a> | <a class="qindex" href="#letter_b">b</a> | <a class="qindex" href="#letter_d">d</a> | <a class="qindex" href="#letter_f">f</a> | <a class="qindex" href="#letter_g">g</a> | <a class="qindex" href="#letter_h">h</a> | <a class="qindex" href="#letter_m">m</a> | <a class="qindex" href="#letter_n">n</a> | <a class="qindex" href="#letter_p">p</a> | <a class="qindex" href="#letter_u">u</a> | <a class="qindex" href="#letter_w">w</a></div> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/closed.png b/Doc/MIS/html/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..98cc2c909da37a6df914fbf67780eebd99c597f5 Binary files /dev/null and b/Doc/MIS/html/closed.png differ diff --git a/Doc/MIS/html/dir_5a26ab1ce369faa82acd5f0b51159ad1.html b/Doc/MIS/html/dir_5a26ab1ce369faa82acd5f0b51159ad1.html new file mode 100644 index 0000000000000000000000000000000000000000..afcb9f78098fdfab2eec93d329a0309f6adb33d2 --- /dev/null +++ b/Doc/MIS/html/dir_5a26ab1ce369faa82acd5f0b51159ad1.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: C:/Users/chaos/Documents/Blaze-Brigade/src Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('dir_5a26ab1ce369faa82acd5f0b51159ad1.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">src Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="dir_f396504afdc959660871b003fa10164d.html">Documents</a></li><li class="navelem"><a class="el" href="dir_f5b08de23b1ad7da5319369ec8d0bafb.html">Blaze-Brigade</a></li><li class="navelem"><a class="el" href="dir_5a26ab1ce369faa82acd5f0b51159ad1.html">src</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/dir_664b3d9a87f45d7efdffa54e174fbdaa.html b/Doc/MIS/html/dir_664b3d9a87f45d7efdffa54e174fbdaa.html new file mode 100644 index 0000000000000000000000000000000000000000..76e1657540928fe7da6354d43f38eed877e1e43d --- /dev/null +++ b/Doc/MIS/html/dir_664b3d9a87f45d7efdffa54e174fbdaa.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('dir_664b3d9a87f45d7efdffa54e174fbdaa.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Blaze_Brigade Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="dir_f396504afdc959660871b003fa10164d.html">Documents</a></li><li class="navelem"><a class="el" href="dir_f5b08de23b1ad7da5319369ec8d0bafb.html">Blaze-Brigade</a></li><li class="navelem"><a class="el" href="dir_5a26ab1ce369faa82acd5f0b51159ad1.html">src</a></li><li class="navelem"><a class="el" href="dir_fa16f34da8dda09f0142eeff21fed967.html">Blaze-Brigade</a></li><li class="navelem"><a class="el" href="dir_664b3d9a87f45d7efdffa54e174fbdaa.html">Blaze_Brigade</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/dir_f396504afdc959660871b003fa10164d.html b/Doc/MIS/html/dir_f396504afdc959660871b003fa10164d.html new file mode 100644 index 0000000000000000000000000000000000000000..f0ebf03ff601d5daf4e6fbe07998a643c2c65827 --- /dev/null +++ b/Doc/MIS/html/dir_f396504afdc959660871b003fa10164d.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: C:/Users/chaos/Documents Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('dir_f396504afdc959660871b003fa10164d.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Documents Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="dir_f396504afdc959660871b003fa10164d.html">Documents</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/dir_f5b08de23b1ad7da5319369ec8d0bafb.html b/Doc/MIS/html/dir_f5b08de23b1ad7da5319369ec8d0bafb.html new file mode 100644 index 0000000000000000000000000000000000000000..ba8a05be6ddd1567e08a7425e49c174c5b2f49cc --- /dev/null +++ b/Doc/MIS/html/dir_f5b08de23b1ad7da5319369ec8d0bafb.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: C:/Users/chaos/Documents/Blaze-Brigade Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('dir_f5b08de23b1ad7da5319369ec8d0bafb.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Blaze-Brigade Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="dir_f396504afdc959660871b003fa10164d.html">Documents</a></li><li class="navelem"><a class="el" href="dir_f5b08de23b1ad7da5319369ec8d0bafb.html">Blaze-Brigade</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/dir_fa16f34da8dda09f0142eeff21fed967.html b/Doc/MIS/html/dir_fa16f34da8dda09f0142eeff21fed967.html new file mode 100644 index 0000000000000000000000000000000000000000..2eaea9fc767ddb06d98010c46389f14948a0c411 --- /dev/null +++ b/Doc/MIS/html/dir_fa16f34da8dda09f0142eeff21fed967.html @@ -0,0 +1,102 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('dir_fa16f34da8dda09f0142eeff21fed967.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Blaze-Brigade Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="subdirs"></a> +Directories</h2></td></tr> +</table> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="dir_f396504afdc959660871b003fa10164d.html">Documents</a></li><li class="navelem"><a class="el" href="dir_f5b08de23b1ad7da5319369ec8d0bafb.html">Blaze-Brigade</a></li><li class="navelem"><a class="el" href="dir_5a26ab1ce369faa82acd5f0b51159ad1.html">src</a></li><li class="navelem"><a class="el" href="dir_fa16f34da8dda09f0142eeff21fed967.html">Blaze-Brigade</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/doc.png b/Doc/MIS/html/doc.png new file mode 100644 index 0000000000000000000000000000000000000000..17edabff95f7b8da13c9516a04efe05493c29501 Binary files /dev/null and b/Doc/MIS/html/doc.png differ diff --git a/Doc/MIS/html/doxygen.css b/Doc/MIS/html/doxygen.css new file mode 100644 index 0000000000000000000000000000000000000000..a2cf15fa876f9e7dafd5e61bb78619908bf6da27 --- /dev/null +++ b/Doc/MIS/html/doxygen.css @@ -0,0 +1,1508 @@ +/* The standard CSS for doxygen 1.8.12 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #ffffff; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0px; + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +dl +{ + padding: 0 0 0 10px; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ +dl.section +{ + margin-left: 0px; + padding-left: 0px; +} + +dl.note +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00D000; +} + +dl.deprecated +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #505050; +} + +dl.todo +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00C0E0; +} + +dl.test +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #3030E0; +} + +dl.bug +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + diff --git a/Doc/MIS/html/doxygen.png b/Doc/MIS/html/doxygen.png new file mode 100644 index 0000000000000000000000000000000000000000..3ff17d807fd8aa003bed8bb2a69e8f0909592fd1 Binary files /dev/null and b/Doc/MIS/html/doxygen.png differ diff --git a/Doc/MIS/html/dynsections.js b/Doc/MIS/html/dynsections.js new file mode 100644 index 0000000000000000000000000000000000000000..85e183690954af49931335b87a063b2c078d4546 --- /dev/null +++ b/Doc/MIS/html/dynsections.js @@ -0,0 +1,97 @@ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l<level+1) { + i.removeClass('iconfopen iconfclosed').addClass('iconfopen'); + a.html('▼'); + $(this).show(); + } else if (l==level+1) { + i.removeClass('iconfclosed iconfopen').addClass('iconfclosed'); + a.html('►'); + $(this).show(); + } else { + $(this).hide(); + } + }); + updateStripes(); +} + +function toggleFolder(id) +{ + // the clicked row + var currentRow = $('#row_'+id); + + // all rows after the clicked row + var rows = currentRow.nextAll("tr"); + + var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub + + // only match elements AFTER this one (can't hide elements before) + var childRows = rows.filter(function() { return this.id.match(re); }); + + // first row is visible we are HIDING + if (childRows.filter(':first').is(':visible')===true) { + // replace down arrow by right arrow for current row + var currentRowSpans = currentRow.find("span"); + currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); + currentRowSpans.filter(".arrow").html('►'); + rows.filter("[id^=row_"+id+"]").hide(); // hide all children + } else { // we are SHOWING + // replace right arrow by down arrow for current row + var currentRowSpans = currentRow.find("span"); + currentRowSpans.filter(".iconfclosed").removeClass("iconfclosed").addClass("iconfopen"); + currentRowSpans.filter(".arrow").html('▼'); + // replace down arrows by right arrows for child rows + var childRowsSpans = childRows.find("span"); + childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); + childRowsSpans.filter(".arrow").html('►'); + childRows.show(); //show all children + } + updateStripes(); +} + + +function toggleInherit(id) +{ + var rows = $('tr.inherit.'+id); + var img = $('tr.inherit_header.'+id+' img'); + var src = $(img).attr('src'); + if (rows.filter(':first').is(':visible')===true) { + rows.css('display','none'); + $(img).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + rows.css('display','table-row'); // using show() causes jump in firefox + $(img).attr('src',src.substring(0,src.length-10)+'open.png'); + } +} + diff --git a/Doc/MIS/html/folderclosed.png b/Doc/MIS/html/folderclosed.png new file mode 100644 index 0000000000000000000000000000000000000000..bb8ab35edce8e97554e360005ee9fc5bffb36e66 Binary files /dev/null and b/Doc/MIS/html/folderclosed.png differ diff --git a/Doc/MIS/html/folderopen.png b/Doc/MIS/html/folderopen.png new file mode 100644 index 0000000000000000000000000000000000000000..d6c7f676a3b3ef8c2c307d319dff3c6a604eb227 Binary files /dev/null and b/Doc/MIS/html/folderopen.png differ diff --git a/Doc/MIS/html/functions.html b/Doc/MIS/html/functions.html new file mode 100644 index 0000000000000000000000000000000000000000..05d2faaef8da7f1b555cff8f17eddeec4fef6b3c --- /dev/null +++ b/Doc/MIS/html/functions.html @@ -0,0 +1,552 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class Members</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('functions.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +<div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> + +<h3><a id="index_a"></a>- a -</h3><ul> +<li>addUnit() +: <a class="el" href="class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0">Model.Player</a> +</li> +<li>Alive +: <a class="el" href="class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0">Model.Warrior</a> +</li> +<li>animate() +: <a class="el" href="class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688">Model.Warrior</a> +</li> +<li>Archer() +: <a class="el" href="class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d">Model.Archer</a> +</li> +<li>attackConfirmOpen +: <a class="el" href="class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_b"></a>- b -</h3><ul> +<li>beforeMove +: <a class="el" href="class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7">Model.GameState</a> +</li> +<li>BronzeBow() +: <a class="el" href="class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6">Model.BronzeBow</a> +</li> +<li>BronzeSword() +: <a class="el" href="class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778">Model.BronzeSword</a> +</li> +<li>Button() +: <a class="el" href="class_view_1_1_button.html#af1811d9154063453744af47950aeefc0">View.Button</a> +</li> +</ul> + + +<h3><a id="index_c"></a>- c -</h3><ul> +<li>currentPlayer +: <a class="el" href="class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_d"></a>- d -</h3><ul> +<li>Def +: <a class="el" href="class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d">Model.Warrior</a> +</li> +<li>Dispose() +: <a class="el" href="class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54">View.HowToPlay3</a> +, <a class="el" href="class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b">View.MainMenu</a> +</li> +<li>Draw() +: <a class="el" href="class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f">Controller.Game</a> +</li> +<li>dropDownMenuOpen +: <a class="el" href="class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_e"></a>- e -</h3><ul> +<li>enemyPlayer +: <a class="el" href="class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3">Model.GameState</a> +</li> +<li>enemyUnitsInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0">Controller.GameFunction</a> +</li> +<li>equippedWeapon +: <a class="el" href="class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_f"></a>- f -</h3><ul> +<li>finalDamage() +: <a class="el" href="class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b">Model.DamageCalculations</a> +</li> +<li>Fireball() +: <a class="el" href="class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d">Model.Fireball</a> +</li> +</ul> + + +<h3><a id="index_g"></a>- g -</h3><ul> +<li>getAttackableNodes() +: <a class="el" href="class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50">Controller.GameFunction</a> +</li> +<li>getAttackRangeAfterMoving() +: <a class="el" href="class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5">Controller.GameFunction</a> +</li> +<li>getButtonImage() +: <a class="el" href="class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007">Model.Warrior</a> +</li> +<li>getButtonOfType() +: <a class="el" href="class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6">Model.Warrior</a> +</li> +<li>getButtons() +: <a class="el" href="class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24">Model.Warrior</a> +</li> +<li>getButtonType() +: <a class="el" href="class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755">View.Button</a> +</li> +<li>getCharAttackInfo() +: <a class="el" href="class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9">Model.Warrior</a> +</li> +<li>getCharInfo() +: <a class="el" href="class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5">Model.Warrior</a> +</li> +<li>getClass() +: <a class="el" href="class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968">Model.Warrior</a> +</li> +<li>getCritRate() +: <a class="el" href="class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed">Model.DamageCalculations</a> +</li> +<li>getCurrentFrame() +: <a class="el" href="class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a">Model.Warrior</a> +</li> +<li>getDamageDealt() +: <a class="el" href="class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea">Model.DamageCalculations</a> +</li> +<li>getEquipableWeapons() +: <a class="el" href="class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344">Model.Warrior</a> +</li> +<li>getHitCount() +: <a class="el" href="class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa">Model.DamageCalculations</a> +</li> +<li>getHitRate() +: <a class="el" href="class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8">Model.DamageCalculations</a> +</li> +<li>getImage() +: <a class="el" href="class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576">View.Button</a> +</li> +<li>getInstruct() +: <a class="el" href="class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f">View.MainMenu</a> +</li> +<li>getMovability() +: <a class="el" href="class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75">Model.Warrior</a> +</li> +<li>getNext() +: <a class="el" href="class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb">View.HowToPlay2</a> +</li> +<li>getNode() +: <a class="el" href="class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19">Model.Graph</a> +</li> +<li>getNumOfUnits() +: <a class="el" href="class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56">Model.Player</a> +</li> +<li>getPixelCoordinates() +: <a class="el" href="class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148">View.Button</a> +</li> +<li>getPosition() +: <a class="el" href="class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35">Model.Node</a> +</li> +<li>getPositionX() +: <a class="el" href="class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c">Model.Node</a> +</li> +<li>getPositionY() +: <a class="el" href="class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819">Model.Node</a> +</li> +<li>getQuit() +: <a class="el" href="class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539">View.HowToPlay3</a> +</li> +<li>getSpriteImage() +: <a class="el" href="class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a">Model.Warrior</a> +</li> +<li>getStats() +: <a class="el" href="class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a">Model.Warrior</a> +</li> +<li>getUnits() +: <a class="el" href="class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a">Model.Player</a> +</li> +<li>Graph() +: <a class="el" href="class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c">Model.Graph</a> +</li> +</ul> + + +<h3><a id="index_h"></a>- h -</h3><ul> +<li>hasUnitFinishedActions() +: <a class="el" href="class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab">Controller.GameFunction</a> +</li> +<li>Height +: <a class="el" href="class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068">Model.Graph</a> +</li> +<li>HowToPlay() +: <a class="el" href="class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960">View.HowToPlay</a> +</li> +<li>HowToPlay2() +: <a class="el" href="class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0">View.HowToPlay2</a> +</li> +<li>HowToPlay3() +: <a class="el" href="class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1">View.HowToPlay3</a> +</li> +<li>Hp +: <a class="el" href="class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_i"></a>- i -</h3><ul> +<li>Initialize() +: <a class="el" href="class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608">Controller.Game</a> +</li> +<li>Int +: <a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Model.Unit</a> +</li> +<li>isAnEnemyUnitInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c">Controller.GameFunction</a> +</li> +<li>isButtonActive() +: <a class="el" href="class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2">Model.Warrior</a> +</li> +<li>isEnemyUnitInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517">Controller.GameFunction</a> +</li> +<li>isGameOver() +: <a class="el" href="class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43">Controller.GameFunction</a> +</li> +<li>isObstacle +: <a class="el" href="class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34">Model.Node</a> +</li> +<li>isOccupied() +: <a class="el" href="class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4">Model.Node</a> +</li> +<li>isTurnOver() +: <a class="el" href="class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385">Controller.GameFunction</a> +</li> +</ul> + + +<h3><a id="index_l"></a>- l -</h3><ul> +<li>Level +: <a class="el" href="class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6">Model.Warrior</a> +</li> +<li>LoadContent() +: <a class="el" href="class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770">Controller.Game</a> +</li> +</ul> + + +<h3><a id="index_m"></a>- m -</h3><ul> +<li>Mage() +: <a class="el" href="class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16">Model.Mage</a> +</li> +<li>MainMenu() +: <a class="el" href="class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32">View.MainMenu</a> +</li> +<li>modInt +: <a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">Model.Weapon</a> +</li> +<li>modSkill +: <a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">Model.Weapon</a> +</li> +<li>modStr +: <a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">Model.Weapon</a> +</li> +<li>movabilityObstruction +: <a class="el" href="class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632">Model.Node</a> +</li> +</ul> + + +<h3><a id="index_n"></a>- n -</h3><ul> +<li>name +: <a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">Model.Weapon</a> +</li> +<li>Node() +: <a class="el" href="class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4">Model.Node</a> +</li> +<li>NumberOfNodes +: <a class="el" href="class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544">Model.Graph</a> +</li> +</ul> + + +<h3><a id="index_o"></a>- o -</h3><ul> +<li>ownsUnit() +: <a class="el" href="class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e">Model.Player</a> +</li> +</ul> + + +<h3><a id="index_p"></a>- p -</h3><ul> +<li>pathFinder() +: <a class="el" href="class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8">Controller.GameFunction</a> +</li> +<li>PixelCoordinates +: <a class="el" href="class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa">Model.Warrior</a> +</li> +<li>playableUnitSelected +: <a class="el" href="class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9">Model.GameState</a> +</li> +<li>Player() +: <a class="el" href="class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170">Model.Player</a> +</li> +<li>Position +: <a class="el" href="class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_r"></a>- r -</h3><ul> +<li>range +: <a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">Model.Weapon</a> +</li> +<li>Res +: <a class="el" href="class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_s"></a>- s -</h3><ul> +<li>selectedUnit +: <a class="el" href="class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9">Model.GameState</a> +</li> +<li>setButtonCoordinates() +: <a class="el" href="class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a">Model.Warrior</a> +</li> +<li>setInitialStats() +: <a class="el" href="class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd">Model.Warrior</a> +</li> +<li>setInstructFalse() +: <a class="el" href="class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5">View.MainMenu</a> +</li> +<li>setMovableNodes() +: <a class="el" href="class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93">Controller.GameFunction</a> +</li> +<li>setNextFalse() +: <a class="el" href="class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d">View.HowToPlay2</a> +</li> +<li>setNode() +: <a class="el" href="class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4">Model.Graph</a> +</li> +<li>setPixelCoordinates() +: <a class="el" href="class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d">View.Button</a> +</li> +<li>setQuitFalse() +: <a class="el" href="class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6">View.HowToPlay3</a> +</li> +<li>Skill +: <a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Model.Unit</a> +</li> +<li>Speed +: <a class="el" href="class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4">Model.Warrior</a> +</li> +<li>startTurn() +: <a class="el" href="class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5">Controller.GameFunction</a> +</li> +<li>Str +: <a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Model.Unit</a> +</li> +</ul> + + +<h3><a id="index_u"></a>- u -</h3><ul> +<li>unitOnNode +: <a class="el" href="class_model_1_1_node.html#a82ca414242eee3d8542a935149049427">Model.Node</a> +</li> +<li>unitToAttack +: <a class="el" href="class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed">Model.GameState</a> +</li> +<li>Update() +: <a class="el" href="class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3">Controller.Game</a> +</li> +<li>updateMouse() +: <a class="el" href="class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6">Controller.MouseHandler</a> +</li> +</ul> + + +<h3><a id="index_w"></a>- w -</h3><ul> +<li>Warrior() +: <a class="el" href="class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7">Model.Warrior</a> +</li> +<li>Width +: <a class="el" href="class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695">Model.Graph</a> +</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/functions_func.html b/Doc/MIS/html/functions_func.html new file mode 100644 index 0000000000000000000000000000000000000000..c4e2ac583e3cac79df65d8ce6d623e13b5175beb --- /dev/null +++ b/Doc/MIS/html/functions_func.html @@ -0,0 +1,424 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class Members - Functions</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('functions_func.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +  + +<h3><a id="index_a"></a>- a -</h3><ul> +<li>addUnit() +: <a class="el" href="class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0">Model.Player</a> +</li> +<li>animate() +: <a class="el" href="class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688">Model.Warrior</a> +</li> +<li>Archer() +: <a class="el" href="class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d">Model.Archer</a> +</li> +</ul> + + +<h3><a id="index_b"></a>- b -</h3><ul> +<li>BronzeBow() +: <a class="el" href="class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6">Model.BronzeBow</a> +</li> +<li>BronzeSword() +: <a class="el" href="class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778">Model.BronzeSword</a> +</li> +<li>Button() +: <a class="el" href="class_view_1_1_button.html#af1811d9154063453744af47950aeefc0">View.Button</a> +</li> +</ul> + + +<h3><a id="index_d"></a>- d -</h3><ul> +<li>Dispose() +: <a class="el" href="class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54">View.HowToPlay3</a> +, <a class="el" href="class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b">View.MainMenu</a> +</li> +<li>Draw() +: <a class="el" href="class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f">Controller.Game</a> +</li> +</ul> + + +<h3><a id="index_e"></a>- e -</h3><ul> +<li>enemyUnitsInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0">Controller.GameFunction</a> +</li> +</ul> + + +<h3><a id="index_f"></a>- f -</h3><ul> +<li>finalDamage() +: <a class="el" href="class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b">Model.DamageCalculations</a> +</li> +<li>Fireball() +: <a class="el" href="class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d">Model.Fireball</a> +</li> +</ul> + + +<h3><a id="index_g"></a>- g -</h3><ul> +<li>getAttackableNodes() +: <a class="el" href="class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50">Controller.GameFunction</a> +</li> +<li>getAttackRangeAfterMoving() +: <a class="el" href="class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5">Controller.GameFunction</a> +</li> +<li>getButtonImage() +: <a class="el" href="class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007">Model.Warrior</a> +</li> +<li>getButtonOfType() +: <a class="el" href="class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6">Model.Warrior</a> +</li> +<li>getButtons() +: <a class="el" href="class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24">Model.Warrior</a> +</li> +<li>getButtonType() +: <a class="el" href="class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755">View.Button</a> +</li> +<li>getCharAttackInfo() +: <a class="el" href="class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9">Model.Warrior</a> +</li> +<li>getCharInfo() +: <a class="el" href="class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5">Model.Warrior</a> +</li> +<li>getClass() +: <a class="el" href="class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968">Model.Warrior</a> +</li> +<li>getCritRate() +: <a class="el" href="class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed">Model.DamageCalculations</a> +</li> +<li>getCurrentFrame() +: <a class="el" href="class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a">Model.Warrior</a> +</li> +<li>getDamageDealt() +: <a class="el" href="class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea">Model.DamageCalculations</a> +</li> +<li>getEquipableWeapons() +: <a class="el" href="class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344">Model.Warrior</a> +</li> +<li>getHitCount() +: <a class="el" href="class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa">Model.DamageCalculations</a> +</li> +<li>getHitRate() +: <a class="el" href="class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8">Model.DamageCalculations</a> +</li> +<li>getImage() +: <a class="el" href="class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576">View.Button</a> +</li> +<li>getInstruct() +: <a class="el" href="class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f">View.MainMenu</a> +</li> +<li>getMovability() +: <a class="el" href="class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75">Model.Warrior</a> +</li> +<li>getNext() +: <a class="el" href="class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb">View.HowToPlay2</a> +</li> +<li>getNode() +: <a class="el" href="class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19">Model.Graph</a> +</li> +<li>getNumOfUnits() +: <a class="el" href="class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56">Model.Player</a> +</li> +<li>getPixelCoordinates() +: <a class="el" href="class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148">View.Button</a> +</li> +<li>getPosition() +: <a class="el" href="class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35">Model.Node</a> +</li> +<li>getPositionX() +: <a class="el" href="class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c">Model.Node</a> +</li> +<li>getPositionY() +: <a class="el" href="class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819">Model.Node</a> +</li> +<li>getQuit() +: <a class="el" href="class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539">View.HowToPlay3</a> +</li> +<li>getSpriteImage() +: <a class="el" href="class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a">Model.Warrior</a> +</li> +<li>getStats() +: <a class="el" href="class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a">Model.Warrior</a> +</li> +<li>getUnits() +: <a class="el" href="class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a">Model.Player</a> +</li> +<li>Graph() +: <a class="el" href="class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c">Model.Graph</a> +</li> +</ul> + + +<h3><a id="index_h"></a>- h -</h3><ul> +<li>hasUnitFinishedActions() +: <a class="el" href="class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab">Controller.GameFunction</a> +</li> +<li>HowToPlay() +: <a class="el" href="class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960">View.HowToPlay</a> +</li> +<li>HowToPlay2() +: <a class="el" href="class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0">View.HowToPlay2</a> +</li> +<li>HowToPlay3() +: <a class="el" href="class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1">View.HowToPlay3</a> +</li> +</ul> + + +<h3><a id="index_i"></a>- i -</h3><ul> +<li>Initialize() +: <a class="el" href="class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608">Controller.Game</a> +</li> +<li>isAnEnemyUnitInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c">Controller.GameFunction</a> +</li> +<li>isButtonActive() +: <a class="el" href="class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2">Model.Warrior</a> +</li> +<li>isEnemyUnitInRange() +: <a class="el" href="class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517">Controller.GameFunction</a> +</li> +<li>isGameOver() +: <a class="el" href="class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43">Controller.GameFunction</a> +</li> +<li>isOccupied() +: <a class="el" href="class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4">Model.Node</a> +</li> +<li>isTurnOver() +: <a class="el" href="class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385">Controller.GameFunction</a> +</li> +</ul> + + +<h3><a id="index_l"></a>- l -</h3><ul> +<li>LoadContent() +: <a class="el" href="class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770">Controller.Game</a> +</li> +</ul> + + +<h3><a id="index_m"></a>- m -</h3><ul> +<li>Mage() +: <a class="el" href="class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16">Model.Mage</a> +</li> +<li>MainMenu() +: <a class="el" href="class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32">View.MainMenu</a> +</li> +</ul> + + +<h3><a id="index_n"></a>- n -</h3><ul> +<li>Node() +: <a class="el" href="class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4">Model.Node</a> +</li> +</ul> + + +<h3><a id="index_o"></a>- o -</h3><ul> +<li>ownsUnit() +: <a class="el" href="class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e">Model.Player</a> +</li> +</ul> + + +<h3><a id="index_p"></a>- p -</h3><ul> +<li>pathFinder() +: <a class="el" href="class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8">Controller.GameFunction</a> +</li> +<li>Player() +: <a class="el" href="class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170">Model.Player</a> +</li> +</ul> + + +<h3><a id="index_s"></a>- s -</h3><ul> +<li>setButtonCoordinates() +: <a class="el" href="class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a">Model.Warrior</a> +</li> +<li>setInitialStats() +: <a class="el" href="class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd">Model.Warrior</a> +</li> +<li>setInstructFalse() +: <a class="el" href="class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5">View.MainMenu</a> +</li> +<li>setMovableNodes() +: <a class="el" href="class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93">Controller.GameFunction</a> +</li> +<li>setNextFalse() +: <a class="el" href="class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d">View.HowToPlay2</a> +</li> +<li>setNode() +: <a class="el" href="class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4">Model.Graph</a> +</li> +<li>setPixelCoordinates() +: <a class="el" href="class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d">View.Button</a> +</li> +<li>setQuitFalse() +: <a class="el" href="class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59">View.HowToPlay</a> +, <a class="el" href="class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5">View.HowToPlay2</a> +, <a class="el" href="class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6">View.HowToPlay3</a> +</li> +<li>startTurn() +: <a class="el" href="class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5">Controller.GameFunction</a> +</li> +</ul> + + +<h3><a id="index_u"></a>- u -</h3><ul> +<li>Update() +: <a class="el" href="class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3">Controller.Game</a> +</li> +<li>updateMouse() +: <a class="el" href="class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6">Controller.MouseHandler</a> +</li> +</ul> + + +<h3><a id="index_w"></a>- w -</h3><ul> +<li>Warrior() +: <a class="el" href="class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7">Model.Warrior</a> +</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/functions_prop.html b/Doc/MIS/html/functions_prop.html new file mode 100644 index 0000000000000000000000000000000000000000..6ca21b967936281b5c724e6518427a45c9c36398 --- /dev/null +++ b/Doc/MIS/html/functions_prop.html @@ -0,0 +1,273 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class Members - Properties</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('functions_prop.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +  + +<h3><a id="index_a"></a>- a -</h3><ul> +<li>Alive +: <a class="el" href="class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0">Model.Warrior</a> +</li> +<li>attackConfirmOpen +: <a class="el" href="class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_b"></a>- b -</h3><ul> +<li>beforeMove +: <a class="el" href="class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_c"></a>- c -</h3><ul> +<li>currentPlayer +: <a class="el" href="class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_d"></a>- d -</h3><ul> +<li>Def +: <a class="el" href="class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d">Model.Warrior</a> +</li> +<li>dropDownMenuOpen +: <a class="el" href="class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_e"></a>- e -</h3><ul> +<li>enemyPlayer +: <a class="el" href="class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3">Model.GameState</a> +</li> +<li>equippedWeapon +: <a class="el" href="class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_h"></a>- h -</h3><ul> +<li>Height +: <a class="el" href="class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068">Model.Graph</a> +</li> +<li>Hp +: <a class="el" href="class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_i"></a>- i -</h3><ul> +<li>Int +: <a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Model.Unit</a> +</li> +<li>isObstacle +: <a class="el" href="class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34">Model.Node</a> +</li> +</ul> + + +<h3><a id="index_l"></a>- l -</h3><ul> +<li>Level +: <a class="el" href="class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_m"></a>- m -</h3><ul> +<li>modInt +: <a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">Model.Weapon</a> +</li> +<li>modSkill +: <a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">Model.Weapon</a> +</li> +<li>modStr +: <a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">Model.Weapon</a> +</li> +<li>movabilityObstruction +: <a class="el" href="class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632">Model.Node</a> +</li> +</ul> + + +<h3><a id="index_n"></a>- n -</h3><ul> +<li>name +: <a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">Model.Weapon</a> +</li> +<li>NumberOfNodes +: <a class="el" href="class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544">Model.Graph</a> +</li> +</ul> + + +<h3><a id="index_p"></a>- p -</h3><ul> +<li>PixelCoordinates +: <a class="el" href="class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa">Model.Warrior</a> +</li> +<li>playableUnitSelected +: <a class="el" href="class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9">Model.GameState</a> +</li> +<li>Position +: <a class="el" href="class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_r"></a>- r -</h3><ul> +<li>range +: <a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">Model.Weapon</a> +</li> +<li>Res +: <a class="el" href="class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6">Model.Warrior</a> +</li> +</ul> + + +<h3><a id="index_s"></a>- s -</h3><ul> +<li>selectedUnit +: <a class="el" href="class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9">Model.GameState</a> +</li> +<li>Skill +: <a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Model.Unit</a> +</li> +<li>Speed +: <a class="el" href="class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252">Model.Archer</a> +, <a class="el" href="class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60">Model.Mage</a> +, <a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Model.Unit</a> +, <a class="el" href="class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4">Model.Warrior</a> +</li> +<li>Str +: <a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Model.Unit</a> +</li> +</ul> + + +<h3><a id="index_u"></a>- u -</h3><ul> +<li>unitOnNode +: <a class="el" href="class_model_1_1_node.html#a82ca414242eee3d8542a935149049427">Model.Node</a> +</li> +<li>unitToAttack +: <a class="el" href="class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed">Model.GameState</a> +</li> +</ul> + + +<h3><a id="index_w"></a>- w -</h3><ul> +<li>Width +: <a class="el" href="class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695">Model.Graph</a> +</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/hierarchy.html b/Doc/MIS/html/hierarchy.html new file mode 100644 index 0000000000000000000000000000000000000000..12c3bdbf2dd1ea4ccd0ad723ae86ccc76db67010 --- /dev/null +++ b/Doc/MIS/html/hierarchy.html @@ -0,0 +1,125 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Class Hierarchy</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('hierarchy.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Class Hierarchy</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">This inheritance list is sorted roughly, but not completely, alphabetically:</div><div class="directory"> +<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_button.html" target="_self">View.Button</a></td><td class="desc">Buttons for the drop down menu buttons when selecting units </td></tr> +<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_damage_calculations.html" target="_self">Model.DamageCalculations</a></td><td class="desc">This class calculates all damage related calculations </td></tr> +<tr id="row_2_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_2_" class="arrow" onclick="toggleFolder('2_')">▼</span><span class="icona"><span class="icon">C</span></span><b>Form</b></td><td class="desc"></td></tr> +<tr id="row_2_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play.html" target="_self">View.HowToPlay</a></td><td class="desc">How to Play Menu </td></tr> +<tr id="row_2_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play2.html" target="_self">View.HowToPlay2</a></td><td class="desc">How to Play Menu 2 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu </td></tr> +<tr id="row_2_2_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_how_to_play3.html" target="_self">View.HowToPlay3</a></td><td class="desc">How to Play Menu 3 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu 2 </td></tr> +<tr id="row_2_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_view_1_1_main_menu.html" target="_self">View.MainMenu</a></td><td class="desc">The Main Menu class. This window is displayed upon starting game, and can link you to <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> playing the Game. </td></tr> +<tr id="row_3_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_3_" class="arrow" onclick="toggleFolder('3_')">▼</span><span class="icona"><span class="icon">C</span></span><b>Game</b></td><td class="desc"></td></tr> +<tr id="row_3_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_game.html" target="_self">Controller.Game</a></td><td class="desc">Main <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a> for game </td></tr> +<tr id="row_4_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_game_function.html" target="_self">Controller.GameFunction</a></td><td class="desc">Contains functions pertaining to the general game. </td></tr> +<tr id="row_5_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_game_state.html" target="_self">Model.GameState</a></td><td class="desc">This class holds states in the scope of the entire gameplay </td></tr> +<tr id="row_6_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_graph.html" target="_self">Model.Graph</a></td><td class="desc">Structure that represents the game map. </td></tr> +<tr id="row_7_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_controller_1_1_mouse_handler.html" target="_self">Controller.MouseHandler</a></td><td class="desc">Handles all user mouse input. </td></tr> +<tr id="row_8_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_node.html" target="_self">Model.Node</a></td><td class="desc">Structure that represents a tile on the game map grid. </td></tr> +<tr id="row_9_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_player.html" target="_self">Model.Player</a></td><td class="desc">Represents a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. </td></tr> +<tr id="row_10_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_10_" class="arrow" onclick="toggleFolder('10_')">▼</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interface_model_1_1_unit.html" target="_self">Model.Unit</a></td><td class="desc"><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> Interface for <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a>, <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a>, and <a class="el" href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc...">Archer</a> </td></tr> +<tr id="row_10_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_archer.html" target="_self">Model.Archer</a></td><td class="desc">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. </td></tr> +<tr id="row_10_1_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_mage.html" target="_self">Model.Mage</a></td><td class="desc">The <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <br /> + This <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats </td></tr> +<tr id="row_10_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_warrior.html" target="_self">Model.Warrior</a></td><td class="desc">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance </td></tr> +<tr id="row_11_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_11_" class="arrow" onclick="toggleFolder('11_')">▼</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interface_model_1_1_weapon.html" target="_self">Model.Weapon</a></td><td class="desc"><a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> Interface to be implemented when creating new weapons. </td></tr> +<tr id="row_11_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_bronze_bow.html" target="_self">Model.BronzeBow</a></td><td class="desc">Ranged physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +<tr id="row_11_1_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_bronze_sword.html" target="_self">Model.BronzeSword</a></td><td class="desc">Melee Physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +<tr id="row_11_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_model_1_1_fireball.html" target="_self">Model.Fireball</a></td><td class="desc">Ranged Magical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. </td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/hierarchy.js b/Doc/MIS/html/hierarchy.js new file mode 100644 index 0000000000000000000000000000000000000000..d5bcc0c09ab12b3d1527bbfb4a683bee8333b146 --- /dev/null +++ b/Doc/MIS/html/hierarchy.js @@ -0,0 +1,30 @@ +var hierarchy = +[ + [ "View.Button", "class_view_1_1_button.html", null ], + [ "Model.DamageCalculations", "class_model_1_1_damage_calculations.html", null ], + [ "Form", null, [ + [ "View.HowToPlay", "class_view_1_1_how_to_play.html", null ], + [ "View.HowToPlay2", "class_view_1_1_how_to_play2.html", null ], + [ "View.HowToPlay3", "class_view_1_1_how_to_play3.html", null ], + [ "View.MainMenu", "class_view_1_1_main_menu.html", null ] + ] ], + [ "Game", null, [ + [ "Controller.Game", "class_controller_1_1_game.html", null ] + ] ], + [ "Controller.GameFunction", "class_controller_1_1_game_function.html", null ], + [ "Model.GameState", "class_model_1_1_game_state.html", null ], + [ "Model.Graph", "class_model_1_1_graph.html", null ], + [ "Controller.MouseHandler", "class_controller_1_1_mouse_handler.html", null ], + [ "Model.Node", "class_model_1_1_node.html", null ], + [ "Model.Player", "class_model_1_1_player.html", null ], + [ "Model.Unit", "interface_model_1_1_unit.html", [ + [ "Model.Archer", "class_model_1_1_archer.html", null ], + [ "Model.Mage", "class_model_1_1_mage.html", null ], + [ "Model.Warrior", "class_model_1_1_warrior.html", null ] + ] ], + [ "Model.Weapon", "interface_model_1_1_weapon.html", [ + [ "Model.BronzeBow", "class_model_1_1_bronze_bow.html", null ], + [ "Model.BronzeSword", "class_model_1_1_bronze_sword.html", null ], + [ "Model.Fireball", "class_model_1_1_fireball.html", null ] + ] ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/index.html b/Doc/MIS/html/index.html new file mode 100644 index 0000000000000000000000000000000000000000..d9c39aef1a2282d14050e313aa0a6a79ba342455 --- /dev/null +++ b/Doc/MIS/html/index.html @@ -0,0 +1,97 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Main Page</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('index.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Blaze Brigade Documentation</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/interface_model_1_1_unit-members.html b/Doc/MIS/html/interface_model_1_1_unit-members.html new file mode 100644 index 0000000000000000000000000000000000000000..b9902fd17259170ebb8c2371d49d6908e9ecdfda --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_unit-members.html @@ -0,0 +1,127 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('interface_model_1_1_unit.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Unit Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="interface_model_1_1_unit.html">Model.Unit</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Alive</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">animate</a>(Direction direction)</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Def</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">equippedWeapon</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">getButtonImage</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">getButtonOfType</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">getButtons</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">getCharAttackInfo</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">getCharInfo</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">getClass</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">getCurrentFrame</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">getEquipableWeapons</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">getMovability</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">getSpriteImage</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">getStats</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Hp</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Int</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">isButtonActive</a>(ButtonType buttonType)</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Level</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">PixelCoordinates</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Position</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Res</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">setButtonCoordinates</a>(Vector2 pixelCoordinates)</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">setInitialStats</a>()</td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Skill</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Speed</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Str</a></td><td class="entry"><a class="el" href="interface_model_1_1_unit.html">Model.Unit</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/interface_model_1_1_unit.html b/Doc/MIS/html/interface_model_1_1_unit.html new file mode 100644 index 0000000000000000000000000000000000000000..4c920ce88d696550064bbcc9e17a244bc96b39d4 --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_unit.html @@ -0,0 +1,781 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Unit Interface Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('interface_model_1_1_unit.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="#properties">Properties</a> | +<a href="interface_model_1_1_unit-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Unit Interface Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> Interface for <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a>, <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a>, and <a class="el" href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc...">Archer</a> + <a href="interface_model_1_1_unit.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Unit:</div> +<div class="dyncontent"> + <div class="center"> + <img src="interface_model_1_1_unit.png" usemap="#Model.Unit_map" alt=""/> + <map id="Model.Unit_map" name="Model.Unit_map"> +<area href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc..." alt="Model.Archer" shape="rect" coords="0,56,94,80"/> +<area href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow..." alt="Model.Mage" shape="rect" coords="104,56,198,80"/> +<area href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance " alt="Model.Warrior" shape="rect" coords="208,56,302,80"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:afc43169b2f01f5015540c220bc9d2b9c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c">getMovability</a> ()</td></tr> +<tr class="separator:afc43169b2f01f5015540c220bc9d2b9c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a52301b538035cebd1ac9bc76bb09948b"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b">getStats</a> ()</td></tr> +<tr class="separator:a52301b538035cebd1ac9bc76bb09948b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a56e3ad622997f6c49e10f4b695644eb5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5">setInitialStats</a> ()</td></tr> +<tr class="separator:a56e3ad622997f6c49e10f4b695644eb5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae9cd223ee338da82906a99bd32e72bb4"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4">isButtonActive</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:ae9cd223ee338da82906a99bd32e72bb4"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9fe162206435e50e8da130388ab50fdb"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb">setButtonCoordinates</a> (Vector2 pixelCoordinates)</td></tr> +<tr class="separator:a9fe162206435e50e8da130388ab50fdb"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae8e7d85dbf553f53c6a97a69a131e302"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302">animate</a> (Direction direction)</td></tr> +<tr class="separator:ae8e7d85dbf553f53c6a97a69a131e302"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a7c076427c8ef933d33ae50c76ea995b3"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3">getSpriteImage</a> ()</td></tr> +<tr class="separator:a7c076427c8ef933d33ae50c76ea995b3"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a626820d6c1777ab3e3c2f3a2ce272e80"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80">getButtonImage</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a626820d6c1777ab3e3c2f3a2ce272e80"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:adc54c0be5f1b657e30b56255a918f32b"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b">getCharInfo</a> ()</td></tr> +<tr class="separator:adc54c0be5f1b657e30b56255a918f32b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aeb30a63287028d9e2d123805b62d3208"><td class="memItemLeft" align="right" valign="top">Texture2D </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208">getCharAttackInfo</a> ()</td></tr> +<tr class="separator:aeb30a63287028d9e2d123805b62d3208"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a99c8b10dfe133f56582ca11c1dbd230d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d">getButtons</a> ()</td></tr> +<tr class="separator:a99c8b10dfe133f56582ca11c1dbd230d"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a4988717b894a45723cca1a8b4dac5060"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_view_1_1_button.html">Button</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060">getButtonOfType</a> (<a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> buttonType)</td></tr> +<tr class="separator:a4988717b894a45723cca1a8b4dac5060"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aecb5510d53b67568a17e89b40cdadda7"><td class="memItemLeft" align="right" valign="top">Rectangle </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7">getCurrentFrame</a> ()</td></tr> +<tr class="separator:aecb5510d53b67568a17e89b40cdadda7"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aa57825903df804dda77d78eb2ca90201"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201">getEquipableWeapons</a> ()</td></tr> +<tr class="separator:aa57825903df804dda77d78eb2ca90201"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aab6dc07db093c4bb9f5a7beb0ac02480"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480">getClass</a> ()</td></tr> +<tr class="separator:aab6dc07db093c4bb9f5a7beb0ac02480"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a9ec349169a911cbd3400fd8ac805bbc9"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9">Alive</a><code> [get, set]</code></td></tr> +<tr class="separator:a9ec349169a911cbd3400fd8ac805bbc9"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:add5c3b029398346c448bfa3a64f278f1"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1">Hp</a><code> [get, set]</code></td></tr> +<tr class="separator:add5c3b029398346c448bfa3a64f278f1"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a3d1d61e9c50cb7e005343a17bd9eff17"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17">Str</a><code> [get, set]</code></td></tr> +<tr class="separator:a3d1d61e9c50cb7e005343a17bd9eff17"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a9bef9ff10e4fb3d643632c431f1d3cfa"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa">Int</a><code> [get, set]</code></td></tr> +<tr class="separator:a9bef9ff10e4fb3d643632c431f1d3cfa"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aacecaa31661bd95dcc36bde480a2ea81"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81">Skill</a><code> [get, set]</code></td></tr> +<tr class="separator:aacecaa31661bd95dcc36bde480a2ea81"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aecee4e038fc518751386c525331ac920"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920">Speed</a><code> [get, set]</code></td></tr> +<tr class="separator:aecee4e038fc518751386c525331ac920"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afca346077df4376dc519435f3a192949"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949">Def</a><code> [get, set]</code></td></tr> +<tr class="separator:afca346077df4376dc519435f3a192949"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acc73a95a98cadd660da4df26aa1dab22"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22">Res</a><code> [get, set]</code></td></tr> +<tr class="separator:acc73a95a98cadd660da4df26aa1dab22"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:afdbcc5ed513f2d2ac9b1817b542dcce5"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5">Level</a><code> [get, set]</code></td></tr> +<tr class="separator:afdbcc5ed513f2d2ac9b1817b542dcce5"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a6768928c4a12dfd60675b830bdc70167"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167">equippedWeapon</a><code> [get, set]</code></td></tr> +<tr class="separator:a6768928c4a12dfd60675b830bdc70167"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a090b11590e5dbfa1a064c21d831d0a3b"><td class="memItemLeft" align="right" valign="top">Tuple< int, int > </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b">Position</a><code> [get, set]</code></td></tr> +<tr class="separator:a090b11590e5dbfa1a064c21d831d0a3b"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a40c0baa06bc651953048d73599070425"><td class="memItemLeft" align="right" valign="top">Vector2 </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425">PixelCoordinates</a><code> [get, set]</code></td></tr> +<tr class="separator:a40c0baa06bc651953048d73599070425"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> Interface for <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a>, <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a>, and <a class="el" href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc...">Archer</a> </p> +<p>This is the interface for the 3 playable unit classes, where the only differences in the units will be their statistics and graphical assets </p> +</div><h2 class="groupheader">Member Function Documentation</h2> +<a id="ae8e7d85dbf553f53c6a97a69a131e302"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae8e7d85dbf553f53c6a97a69a131e302">§ </a></span>animate()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Unit.animate </td> + <td>(</td> + <td class="paramtype">Direction </td> + <td class="paramname"><em>direction</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>animate sprite walking the direction specified </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">direction</td><td>The direction the unit is moving in </td></tr> + </table> + </dd> +</dl> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a626820d6c1777ab3e3c2f3a2ce272e80"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a626820d6c1777ab3e3c2f3a2ce272e80">§ </a></span>getButtonImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Unit.getButtonImage </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the button texture at index i </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a4988717b894a45723cca1a8b4dac5060"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a4988717b894a45723cca1a8b4dac5060">§ </a></span>getButtonOfType()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> Model.Unit.getButtonOfType </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the button type </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">buttonType</td><td>The button to return (Move, Attack, Item, Wait, and attack confirm) </td></tr> + </table> + </dd> +</dl> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a99c8b10dfe133f56582ca11c1dbd230d"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a99c8b10dfe133f56582ca11c1dbd230d">§ </a></span>getButtons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="class_view_1_1_button.html">Button</a> [] Model.Unit.getButtons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the dropdown menu buttons of the unit </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24">Model.Warrior</a>.</p> + +</div> +</div> +<a id="aeb30a63287028d9e2d123805b62d3208"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aeb30a63287028d9e2d123805b62d3208">§ </a></span>getCharAttackInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Unit.getCharAttackInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char attack info screen texture </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9">Model.Warrior</a>.</p> + +</div> +</div> +<a id="adc54c0be5f1b657e30b56255a918f32b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#adc54c0be5f1b657e30b56255a918f32b">§ </a></span>getCharInfo()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Unit.getCharInfo </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the char info screen texture </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5">Model.Warrior</a>.</p> + +</div> +</div> +<a id="aab6dc07db093c4bb9f5a7beb0ac02480"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aab6dc07db093c4bb9f5a7beb0ac02480">§ </a></span>getClass()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> Model.Unit.getClass </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns unit's class (warrior, mage, archer) </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968">Model.Warrior</a>.</p> + +</div> +</div> +<a id="aecb5510d53b67568a17e89b40cdadda7"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aecb5510d53b67568a17e89b40cdadda7">§ </a></span>getCurrentFrame()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Rectangle Model.Unit.getCurrentFrame </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the current sprite frame in animation sequence </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a">Model.Warrior</a>.</p> + +</div> +</div> +<a id="aa57825903df804dda77d78eb2ca90201"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aa57825903df804dda77d78eb2ca90201">§ </a></span>getEquipableWeapons()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> [] Model.Unit.getEquipableWeapons </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns array of equipable weapons </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344">Model.Warrior</a>.</p> + +</div> +</div> +<a id="afc43169b2f01f5015540c220bc9d2b9c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#afc43169b2f01f5015540c220bc9d2b9c">§ </a></span>getMovability()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.getMovability </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>Returns the unit's movability range on grid (number of spaces the unit can move in one turn) </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a7c076427c8ef933d33ae50c76ea995b3"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a7c076427c8ef933d33ae50c76ea995b3">§ </a></span>getSpriteImage()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">Texture2D Model.Unit.getSpriteImage </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns the sprite image of the unit </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a52301b538035cebd1ac9bc76bb09948b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a52301b538035cebd1ac9bc76bb09948b">§ </a></span>getStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int [] Model.Unit.getStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>returns all stats as an array </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a">Model.Warrior</a>.</p> + +</div> +</div> +<a id="ae9cd223ee338da82906a99bd32e72bb4"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae9cd223ee338da82906a99bd32e72bb4">§ </a></span>isButtonActive()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Unit.isButtonActive </td> + <td>(</td> + <td class="paramtype"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> </td> + <td class="paramname"><em>buttonType</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>indicates whether a button has already been previously selected or not </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a9fe162206435e50e8da130388ab50fdb"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9fe162206435e50e8da130388ab50fdb">§ </a></span>setButtonCoordinates()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Unit.setButtonCoordinates </td> + <td>(</td> + <td class="paramtype">Vector2 </td> + <td class="paramname"><em>pixelCoordinates</em></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets the coordinates of menu buttons </p><dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">pixelCoordinates</td><td>The pixel coordinate of the button </td></tr> + </table> + </dd> +</dl> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a">Model.Warrior</a>.</p> + +</div> +</div> +<a id="a56e3ad622997f6c49e10f4b695644eb5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a56e3ad622997f6c49e10f4b695644eb5">§ </a></span>setInitialStats()</h2> + +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void Model.Unit.setInitialStats </td> + <td>(</td> + <td class="paramname"></td><td>)</td> + <td></td> + </tr> + </table> +</div><div class="memdoc"> +<p>sets initial unit stats upon creation </p> + +<p>Implemented in <a class="el" href="class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2">Model.Archer</a>, <a class="el" href="class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d">Model.Mage</a>, and <a class="el" href="class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd">Model.Warrior</a>.</p> + +</div> +</div> +<h2 class="groupheader">Property Documentation</h2> +<a id="a9ec349169a911cbd3400fd8ac805bbc9"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9ec349169a911cbd3400fd8ac805bbc9">§ </a></span>Alive</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">bool Model.Unit.Alive</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns whether or not unit is alive </p> + +</div> +</div> +<a id="afca346077df4376dc519435f3a192949"></a> +<h2 class="memtitle"><span class="permalink"><a href="#afca346077df4376dc519435f3a192949">§ </a></span>Def</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Def</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Defense </p> + +</div> +</div> +<a id="a6768928c4a12dfd60675b830bdc70167"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a6768928c4a12dfd60675b830bdc70167">§ </a></span>equippedWeapon</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a> Model.Unit.equippedWeapon</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns weapon the unit is currently equipping </p> + +</div> +</div> +<a id="add5c3b029398346c448bfa3a64f278f1"></a> +<h2 class="memtitle"><span class="permalink"><a href="#add5c3b029398346c448bfa3a64f278f1">§ </a></span>Hp</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Hp</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's HP </p> + +</div> +</div> +<a id="a9bef9ff10e4fb3d643632c431f1d3cfa"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a9bef9ff10e4fb3d643632c431f1d3cfa">§ </a></span>Int</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Int</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Intelliegence </p> + +</div> +</div> +<a id="afdbcc5ed513f2d2ac9b1817b542dcce5"></a> +<h2 class="memtitle"><span class="permalink"><a href="#afdbcc5ed513f2d2ac9b1817b542dcce5">§ </a></span>Level</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Level</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Level </p> + +</div> +</div> +<a id="a40c0baa06bc651953048d73599070425"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a40c0baa06bc651953048d73599070425">§ </a></span>PixelCoordinates</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Vector2 Model.Unit.PixelCoordinates</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>returns the pixel coordinate of the unit </p> + +</div> +</div> +<a id="a090b11590e5dbfa1a064c21d831d0a3b"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a090b11590e5dbfa1a064c21d831d0a3b">§ </a></span>Position</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">Tuple<int, int> Model.Unit.Position</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>gets and sets unit's position by tile </p> + +</div> +</div> +<a id="acc73a95a98cadd660da4df26aa1dab22"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acc73a95a98cadd660da4df26aa1dab22">§ </a></span>Res</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Res</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Resistance </p> + +</div> +</div> +<a id="aacecaa31661bd95dcc36bde480a2ea81"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aacecaa31661bd95dcc36bde480a2ea81">§ </a></span>Skill</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Skill</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Skill </p> + +</div> +</div> +<a id="aecee4e038fc518751386c525331ac920"></a> +<h2 class="memtitle"><span class="permalink"><a href="#aecee4e038fc518751386c525331ac920">§ </a></span>Speed</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Speed</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Speed </p> + +</div> +</div> +<a id="a3d1d61e9c50cb7e005343a17bd9eff17"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a3d1d61e9c50cb7e005343a17bd9eff17">§ </a></span>Str</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Unit.Str</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Sets and returns a unit's Strength </p> + +</div> +</div> +<hr/>The documentation for this interface was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Unit.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="interface_model_1_1_unit.html">Unit</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/interface_model_1_1_unit.js b/Doc/MIS/html/interface_model_1_1_unit.js new file mode 100644 index 0000000000000000000000000000000000000000..71ea9407ae0951c30f48aa6f39c755b4fdded829 --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_unit.js @@ -0,0 +1,30 @@ +var interface_model_1_1_unit = +[ + [ "animate", "interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302", null ], + [ "getButtonImage", "interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80", null ], + [ "getButtonOfType", "interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060", null ], + [ "getButtons", "interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d", null ], + [ "getCharAttackInfo", "interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208", null ], + [ "getCharInfo", "interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b", null ], + [ "getClass", "interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480", null ], + [ "getCurrentFrame", "interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7", null ], + [ "getEquipableWeapons", "interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201", null ], + [ "getMovability", "interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c", null ], + [ "getSpriteImage", "interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3", null ], + [ "getStats", "interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b", null ], + [ "isButtonActive", "interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4", null ], + [ "setButtonCoordinates", "interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb", null ], + [ "setInitialStats", "interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5", null ], + [ "Alive", "interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9", null ], + [ "Def", "interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949", null ], + [ "equippedWeapon", "interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167", null ], + [ "Hp", "interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1", null ], + [ "Int", "interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa", null ], + [ "Level", "interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5", null ], + [ "PixelCoordinates", "interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425", null ], + [ "Position", "interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b", null ], + [ "Res", "interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22", null ], + [ "Skill", "interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81", null ], + [ "Speed", "interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920", null ], + [ "Str", "interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/interface_model_1_1_unit.png b/Doc/MIS/html/interface_model_1_1_unit.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1eb7f7f6f981476e06f3667dcc784a44a22e2d Binary files /dev/null and b/Doc/MIS/html/interface_model_1_1_unit.png differ diff --git a/Doc/MIS/html/interface_model_1_1_weapon-members.html b/Doc/MIS/html/interface_model_1_1_weapon-members.html new file mode 100644 index 0000000000000000000000000000000000000000..d3eb78ca3d3d63a952bf42b18963efcc2e0561d9 --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_weapon-members.html @@ -0,0 +1,105 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('interface_model_1_1_weapon.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Model.Weapon Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">modInt</a></td><td class="entry"><a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">modSkill</a></td><td class="entry"><a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">modStr</a></td><td class="entry"><a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">name</a></td><td class="entry"><a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">range</a></td><td class="entry"><a class="el" href="interface_model_1_1_weapon.html">Model.Weapon</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/interface_model_1_1_weapon.html b/Doc/MIS/html/interface_model_1_1_weapon.html new file mode 100644 index 0000000000000000000000000000000000000000..8643ad3d16f2fdb126eea890f42bfddc93f80af6 --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_weapon.html @@ -0,0 +1,251 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model.Weapon Interface Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('interface_model_1_1_weapon.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#properties">Properties</a> | +<a href="interface_model_1_1_weapon-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">Model.Weapon Interface Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p><a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> Interface to be implemented when creating new weapons. + <a href="interface_model_1_1_weapon.html#details">More...</a></p> +<div class="dynheader"> +Inheritance diagram for Model.Weapon:</div> +<div class="dyncontent"> + <div class="center"> + <img src="interface_model_1_1_weapon.png" usemap="#Model.Weapon_map" alt=""/> + <map id="Model.Weapon_map" name="Model.Weapon_map"> +<area href="class_model_1_1_bronze_bow.html" title="Ranged physical Weapon. " alt="Model.BronzeBow" shape="rect" coords="0,56,127,80"/> +<area href="class_model_1_1_bronze_sword.html" title="Melee Physical Weapon. " alt="Model.BronzeSword" shape="rect" coords="137,56,264,80"/> +<area href="class_model_1_1_fireball.html" title="Ranged Magical Weapon. " alt="Model.Fireball" shape="rect" coords="274,56,401,80"/> +</map> + </div></div> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> +Properties</h2></td></tr> +<tr class="memitem:a09f71c2dd3100e08a5d9cfc685e990e8"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8">name</a><code> [get]</code></td></tr> +<tr class="separator:a09f71c2dd3100e08a5d9cfc685e990e8"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ae257017428d45a9d5d0de7071565c027"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027">modStr</a><code> [get]</code></td></tr> +<tr class="separator:ae257017428d45a9d5d0de7071565c027"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1ef41fea09be5beda6c21594fd648a5c"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c">modInt</a><code> [get]</code></td></tr> +<tr class="separator:a1ef41fea09be5beda6c21594fd648a5c"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:ab9c4d1b5151aedba51ddfd187d2b98ab"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab">modSkill</a><code> [get]</code></td></tr> +<tr class="separator:ab9c4d1b5151aedba51ddfd187d2b98ab"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:acb042377d7f54c710d4f1e4a7299a2b8"><td class="memItemLeft" align="right" valign="top">int [] </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8">range</a><code> [get]</code></td></tr> +<tr class="separator:acb042377d7f54c710d4f1e4a7299a2b8"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p><a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> Interface to be implemented when creating new weapons. </p> +<p>This is the interface to be used when creating new weapons. The only differences in weapons will be their statistics. </p> +</div><h2 class="groupheader">Property Documentation</h2> +<a id="a1ef41fea09be5beda6c21594fd648a5c"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a1ef41fea09be5beda6c21594fd648a5c">§ </a></span>modInt</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Weapon.modInt</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the weapon intelligence. </p> + +</div> +</div> +<a id="ab9c4d1b5151aedba51ddfd187d2b98ab"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ab9c4d1b5151aedba51ddfd187d2b98ab">§ </a></span>modSkill</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Weapon.modSkill</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the weapon skill. </p> + +</div> +</div> +<a id="ae257017428d45a9d5d0de7071565c027"></a> +<h2 class="memtitle"><span class="permalink"><a href="#ae257017428d45a9d5d0de7071565c027">§ </a></span>modStr</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int Model.Weapon.modStr</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the weapon strength. </p> + +</div> +</div> +<a id="a09f71c2dd3100e08a5d9cfc685e990e8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a09f71c2dd3100e08a5d9cfc685e990e8">§ </a></span>name</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">String Model.Weapon.name</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Returns the name of the weapon. </p> + +</div> +</div> +<a id="acb042377d7f54c710d4f1e4a7299a2b8"></a> +<h2 class="memtitle"><span class="permalink"><a href="#acb042377d7f54c710d4f1e4a7299a2b8">§ </a></span>range</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">int [] Model.Weapon.range</td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">get</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Return the range of the weapon, where range[minimum range, maximum range]. </p> + +</div> +</div> +<hr/>The documentation for this interface was generated from the following file:<ul> +<li>C:/Users/chaos/Documents/Blaze-Brigade/src/Blaze-Brigade/Blaze_Brigade/Weapon.cs</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li><li class="navelem"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/interface_model_1_1_weapon.js b/Doc/MIS/html/interface_model_1_1_weapon.js new file mode 100644 index 0000000000000000000000000000000000000000..59162eaffb4c99184c4e4206ff3cddf649cca4b2 --- /dev/null +++ b/Doc/MIS/html/interface_model_1_1_weapon.js @@ -0,0 +1,8 @@ +var interface_model_1_1_weapon = +[ + [ "modInt", "interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c", null ], + [ "modSkill", "interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab", null ], + [ "modStr", "interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027", null ], + [ "name", "interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8", null ], + [ "range", "interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/interface_model_1_1_weapon.png b/Doc/MIS/html/interface_model_1_1_weapon.png new file mode 100644 index 0000000000000000000000000000000000000000..ece2f5b19b615a350cf0399aab44930939653f03 Binary files /dev/null and b/Doc/MIS/html/interface_model_1_1_weapon.png differ diff --git a/Doc/MIS/html/jquery.js b/Doc/MIS/html/jquery.js new file mode 100644 index 0000000000000000000000000000000000000000..f5343eda922a502398f4fce93cbf2ea09a997fe4 --- /dev/null +++ b/Doc/MIS/html/jquery.js @@ -0,0 +1,87 @@ +/*! + * jQuery JavaScript Library v1.7.1 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Mon Nov 21 21:11:03 2011 -0500 + */ +(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b4<b3;b4++){if((b9=arguments[b4])!=null){for(b2 in b9){b0=b5[b2];b1=b9[b2];if(b5===b1){continue}if(b8&&b1&&(bF.isPlainObject(b1)||(b6=bF.isArray(b1)))){if(b6){b6=false;b7=b0&&bF.isArray(b0)?b0:[]}else{b7=b0&&bF.isPlainObject(b0)?b0:{}}b5[b2]=bF.extend(b8,b7,b1)}else{if(b1!==L){b5[b2]=b1}}}}}return b5};bF.extend({noConflict:function(b0){if(bb.$===bF){bb.$=bH}if(b0&&bb.jQuery===bF){bb.jQuery=bU}return bF},isReady:false,readyWait:1,holdReady:function(b0){if(b0){bF.readyWait++}else{bF.ready(true)}},ready:function(b0){if((b0===true&&!--bF.readyWait)||(b0!==true&&!bF.isReady)){if(!av.body){return setTimeout(bF.ready,1)}bF.isReady=true;if(b0!==true&&--bF.readyWait>0){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b4<b5;){if(b6.apply(b3[b4++],b2)===false){break}}}}else{if(b0){for(b1 in b3){if(b6.call(b3[b1],b1,b3[b1])===false){break}}}else{for(;b4<b5;){if(b6.call(b3[b4],b4,b3[b4++])===false){break}}}}return b3},trim:bO?function(b0){return b0==null?"":bO.call(b0)}:function(b0){return b0==null?"":b0.toString().replace(bI,"").replace(bE,"")},makeArray:function(b3,b1){var b0=b1||[];if(b3!=null){var b2=bF.type(b3);if(b3.length==null||b2==="string"||b2==="function"||b2==="regexp"||bF.isWindow(b3)){bz.call(b0,b3)}else{bF.merge(b0,b3)}}return b0},inArray:function(b2,b3,b1){var b0;if(b3){if(bv){return bv.call(b3,b2,b1)}b0=b3.length;b1=b1?b1<0?Math.max(0,b0+b1):b1:0;for(;b1<b0;b1++){if(b1 in b3&&b3[b1]===b2){return b1}}}return -1},merge:function(b4,b2){var b3=b4.length,b1=0;if(typeof b2.length==="number"){for(var b0=b2.length;b1<b0;b1++){b4[b3++]=b2[b1]}}else{while(b2[b1]!==L){b4[b3++]=b2[b1++]}}b4.length=b3;return b4},grep:function(b1,b6,b0){var b2=[],b5;b0=!!b0;for(var b3=0,b4=b1.length;b3<b4;b3++){b5=!!b6(b1[b3],b3);if(b0!==b5){b2.push(b1[b3])}}return b2},map:function(b0,b7,b8){var b5,b6,b4=[],b2=0,b1=b0.length,b3=b0 instanceof bF||b1!==L&&typeof b1==="number"&&((b1>0&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b2<b1;b2++){b5=b7(b0[b2],b2,b8);if(b5!=null){b4[b4.length]=b5}}}else{for(b6 in b0){b5=b7(b0[b6],b6,b8);if(b5!=null){b4[b4.length]=b5}}}return b4.concat.apply([],b4)},guid:1,proxy:function(b4,b3){if(typeof b3==="string"){var b2=b4[b3];b3=b4;b4=b2}if(!bF.isFunction(b4)){return L}var b0=bK.call(arguments,2),b1=function(){return b4.apply(b3,b0.concat(bK.call(arguments)))};b1.guid=b4.guid=b4.guid||b1.guid||bF.guid++;return b1},access:function(b0,b8,b6,b2,b5,b7){var b1=b0.length;if(typeof b8==="object"){for(var b3 in b8){bF.access(b0,b3,b8[b3],b2,b5,b6)}return b0}if(b6!==L){b2=!b7&&b2&&bF.isFunction(b6);for(var b4=0;b4<b1;b4++){b5(b0[b4],b8,b2?b6.call(b0[b4],b4,b5(b0[b4],b8)):b6,b7)}return b0}return b1?b5(b0[0],b8):L},now:function(){return(new Date()).getTime()},uaMatch:function(b1){b1=b1.toLowerCase();var b0=by.exec(b1)||bR.exec(b1)||bQ.exec(b1)||b1.indexOf("compatible")<0&&bS.exec(b1)||[];return{browser:b0[1]||"",version:b0[2]||"0"}},sub:function(){function b0(b3,b4){return new b0.fn.init(b3,b4)}bF.extend(true,b0,this);b0.superclass=this;b0.fn=b0.prototype=this();b0.fn.constructor=b0;b0.sub=this.sub;b0.fn.init=function b2(b3,b4){if(b4&&b4 instanceof bF&&!(b4 instanceof b0)){b4=b0(b4)}return bF.fn.init.call(this,b3,b4,b1)};b0.fn.init.prototype=b0.fn;var b1=b0(av);return b0},browser:{}});bF.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(b1,b0){bx["[object "+b0+"]"]=b0.toLowerCase()});bV=bF.uaMatch(bX);if(bV.browser){bF.browser[bV.browser]=true;bF.browser.version=bV.version}if(bF.browser.webkit){bF.browser.safari=true}if(bM.test("\xA0")){bI=/^[\s\xA0]+/;bE=/[\s\xA0]+$/}bD=bF(av);if(av.addEventListener){e=function(){av.removeEventListener("DOMContentLoaded",e,false);bF.ready()}}else{if(av.attachEvent){e=function(){if(av.readyState==="complete"){av.detachEvent("onreadystatechange",e);bF.ready()}}}}function bw(){if(bF.isReady){return}try{av.documentElement.doScroll("left")}catch(b0){setTimeout(bw,1);return}bF.ready()}return bF})();var a2={};function X(e){var bv=a2[e]={},bw,bx;e=e.split(/\s+/);for(bw=0,bx=e.length;bw<bx;bw++){bv[e[bw]]=true}return bv}b.Callbacks=function(bw){bw=bw?(a2[bw]||X(bw)):{};var bB=[],bC=[],bx,by,bv,bz,bA,bE=function(bF){var bG,bJ,bI,bH,bK;for(bG=0,bJ=bF.length;bG<bJ;bG++){bI=bF[bG];bH=b.type(bI);if(bH==="array"){bE(bI)}else{if(bH==="function"){if(!bw.unique||!bD.has(bI)){bB.push(bI)}}}}},e=function(bG,bF){bF=bF||[];bx=!bw.memory||[bG,bF];by=true;bA=bv||0;bv=0;bz=bB.length;for(;bB&&bA<bz;bA++){if(bB[bA].apply(bG,bF)===false&&bw.stopOnFalse){bx=true;break}}by=false;if(bB){if(!bw.once){if(bC&&bC.length){bx=bC.shift();bD.fireWith(bx[0],bx[1])}}else{if(bx===true){bD.disable()}else{bB=[]}}}},bD={add:function(){if(bB){var bF=bB.length;bE(arguments);if(by){bz=bB.length}else{if(bx&&bx!==true){bv=bF;e(bx[0],bx[1])}}}return this},remove:function(){if(bB){var bF=arguments,bH=0,bI=bF.length;for(;bH<bI;bH++){for(var bG=0;bG<bB.length;bG++){if(bF[bH]===bB[bG]){if(by){if(bG<=bz){bz--;if(bG<=bA){bA--}}}bB.splice(bG--,1);if(bw.unique){break}}}}}return this},has:function(bG){if(bB){var bF=0,bH=bB.length;for(;bF<bH;bF++){if(bG===bB[bF]){return true}}}return false},empty:function(){bB=[];return this},disable:function(){bB=bC=bx=L;return this},disabled:function(){return !bB},lock:function(){bC=L;if(!bx||bx===true){bD.disable()}return this},locked:function(){return !bC},fireWith:function(bG,bF){if(bC){if(by){if(!bw.once){bC.push([bG,bF])}}else{if(!(bw.once&&bx)){e(bG,bF)}}}return this},fire:function(){bD.fireWith(this,arguments);return this},fired:function(){return !!bx}};return bD};var aJ=[].slice;b.extend({Deferred:function(by){var bx=b.Callbacks("once memory"),bw=b.Callbacks("once memory"),bv=b.Callbacks("memory"),e="pending",bA={resolve:bx,reject:bw,notify:bv},bC={done:bx.add,fail:bw.add,progress:bv.add,state:function(){return e},isResolved:bx.fired,isRejected:bw.fired,then:function(bE,bD,bF){bB.done(bE).fail(bD).progress(bF);return this},always:function(){bB.done.apply(bB,arguments).fail.apply(bB,arguments);return this},pipe:function(bF,bE,bD){return b.Deferred(function(bG){b.each({done:[bF,"resolve"],fail:[bE,"reject"],progress:[bD,"notify"]},function(bI,bL){var bH=bL[0],bK=bL[1],bJ;if(b.isFunction(bH)){bB[bI](function(){bJ=bH.apply(this,arguments);if(bJ&&b.isFunction(bJ.promise)){bJ.promise().then(bG.resolve,bG.reject,bG.notify)}else{bG[bK+"With"](this===bB?bG:this,[bJ])}})}else{bB[bI](bG[bK])}})}).promise()},promise:function(bE){if(bE==null){bE=bC}else{for(var bD in bC){bE[bD]=bC[bD]}}return bE}},bB=bC.promise({}),bz;for(bz in bA){bB[bz]=bA[bz].fire;bB[bz+"With"]=bA[bz].fireWith}bB.done(function(){e="resolved"},bw.disable,bv.lock).fail(function(){e="rejected"},bx.disable,bv.lock);if(by){by.call(bB,bB)}return bB},when:function(bA){var bx=aJ.call(arguments,0),bv=0,e=bx.length,bB=new Array(e),bw=e,by=e,bC=e<=1&&bA&&b.isFunction(bA.promise)?bA:b.Deferred(),bE=bC.promise();function bD(bF){return function(bG){bx[bF]=arguments.length>1?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv<e;bv++){if(bx[bv]&&bx[bv].promise&&b.isFunction(bx[bv].promise)){bx[bv].promise().then(bD(bv),bC.reject,bz(bv))}else{--bw}}if(!bw){bC.resolveWith(bC,bx)}}else{if(bC!==bA){bC.resolveWith(bC,e?[bA]:[])}}return bE}});b.support=(function(){var bJ,bI,bF,bG,bx,bE,bA,bD,bz,bK,bB,by,bw,bv=av.createElement("div"),bH=av.documentElement;bv.setAttribute("className","t");bv.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav></:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="<div "+e+"><div></div></div><table "+e+" cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="<div style='width:4px;'></div>";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA<bz;bA++){delete bB[bv[bA]]}if(!(by?S:b.isEmptyObject)(bB)){return}}}if(!by){delete e[bw].data;if(!S(e[bw])){return}}if(b.support.deleteExpando||!e.setInterval){delete e[bw]}else{e[bw]=null}if(bD){if(b.support.deleteExpando){delete bx[bC]}else{if(bx.removeAttribute){bx.removeAttribute(bC)}else{bx[bC]=null}}}},_data:function(bv,e,bw){return b.data(bv,e,bw,true)},acceptData:function(bv){if(bv.nodeName){var e=b.noData[bv.nodeName.toLowerCase()];if(e){return !(e===true||bv.getAttribute("classid")!==e)}}return true}});b.fn.extend({data:function(by,bA){var bB,e,bw,bz=null;if(typeof by==="undefined"){if(this.length){bz=b.data(this[0]);if(this[0].nodeType===1&&!b._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var bx=0,bv=e.length;bx<bv;bx++){bw=e[bx].name;if(bw.indexOf("data-")===0){bw=b.camelCase(bw.substring(5));a5(this[0],bw,bz[bw])}}b._data(this[0],"parsedAttrs",true)}}return bz}else{if(typeof by==="object"){return this.each(function(){b.data(this,by)})}}bB=by.split(".");bB[1]=bB[1]?"."+bB[1]:"";if(bA===L){bz=this.triggerHandler("getData"+bB[1]+"!",[bB[0]]);if(bz===L&&this.length){bz=b.data(this[0],by);bz=a5(this[0],by,bz)}return bz===L&&bB[1]?this.data(bB[0]):bz}else{return this.each(function(){var bC=b(this),bD=[bB[0],bA];bC.triggerHandler("setData"+bB[1]+"!",bD);b.data(this,by,bA);bC.triggerHandler("changeData"+bB[1]+"!",bD)})}},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function a5(bx,bw,by){if(by===L&&bx.nodeType===1){var bv="data-"+bw.replace(aA,"-$1").toLowerCase();by=bx.getAttribute(bv);if(typeof by==="string"){try{by=by==="true"?true:by==="false"?false:by==="null"?null:b.isNumeric(by)?parseFloat(by):aS.test(by)?b.parseJSON(by):by}catch(bz){}b.data(bx,bw,by)}else{by=L}}return by}function S(bv){for(var e in bv){if(e==="data"&&b.isEmptyObject(bv[e])){continue}if(e!=="toJSON"){return false}}return true}function bi(by,bx,bA){var bw=bx+"defer",bv=bx+"queue",e=bx+"mark",bz=b._data(by,bw);if(bz&&(bA==="queue"||!b._data(by,bv))&&(bA==="mark"||!b._data(by,e))){setTimeout(function(){if(!b._data(by,bv)&&!b._data(by,e)){b.removeData(by,bw,true);bz.fire()}},0)}}b.extend({_mark:function(bv,e){if(bv){e=(e||"fx")+"mark";b._data(bv,e,(b._data(bv,e)||0)+1)}},_unmark:function(by,bx,bv){if(by!==true){bv=bx;bx=by;by=false}if(bx){bv=bv||"fx";var e=bv+"mark",bw=by?0:((b._data(bx,e)||1)-1);if(bw){b._data(bx,e,bw)}else{b.removeData(bx,e,true);bi(bx,bv,"mark")}}},queue:function(bv,e,bx){var bw;if(bv){e=(e||"fx")+"queue";bw=b._data(bv,e);if(bx){if(!bw||b.isArray(bx)){bw=b._data(bv,e,b.makeArray(bx))}else{bw.push(bx)}}return bw||[]}},dequeue:function(by,bx){bx=bx||"fx";var bv=b.queue(by,bx),bw=bv.shift(),e={};if(bw==="inprogress"){bw=bv.shift()}if(bw){if(bx==="fx"){bv.unshift("inprogress")}b._data(by,bx+".run",e);bw.call(by,function(){b.dequeue(by,bx)},e)}if(!bv.length){b.removeData(by,bx+"queue "+bx+".run",true);bi(by,bx,"queue")}}});b.fn.extend({queue:function(e,bv){if(typeof e!=="string"){bv=e;e="fx"}if(bv===L){return b.queue(this[0],e)}return this.each(function(){var bw=b.queue(this,e,bv);if(e==="fx"&&bw[0]!=="inprogress"){b.dequeue(this,e)}})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(bv,e){bv=b.fx?b.fx.speeds[bv]||bv:bv;e=e||"fx";return this.queue(e,function(bx,bw){var by=setTimeout(bx,bv);bw.stop=function(){clearTimeout(by)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(bD,bw){if(typeof bD!=="string"){bw=bD;bD=L}bD=bD||"fx";var e=b.Deferred(),bv=this,by=bv.length,bB=1,bz=bD+"defer",bA=bD+"queue",bC=bD+"mark",bx;function bE(){if(!(--bB)){e.resolveWith(bv,[bv])}}while(by--){if((bx=b.data(bv[by],bz,L,true)||(b.data(bv[by],bA,L,true)||b.data(bv[by],bC,L,true))&&b.data(bv[by],bz,b.Callbacks("once memory"),true))){bB++;bx.add(bE)}}bE();return e.promise()}});var aP=/[\n\t\r]/g,af=/\s+/,aU=/\r/g,g=/^(?:button|input)$/i,D=/^(?:button|input|object|select|textarea)$/i,l=/^a(?:rea)?$/i,ao=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,F=b.support.getSetAttribute,be,aY,aF;b.fn.extend({attr:function(e,bv){return b.access(this,e,bv,true,b.attr)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,bv){return b.access(this,e,bv,true,b.prop)},removeProp:function(e){e=b.propFix[e]||e;return this.each(function(){try{this[e]=L;delete this[e]}catch(bv){}})},addClass:function(by){var bA,bw,bv,bx,bz,bB,e;if(b.isFunction(by)){return this.each(function(bC){b(this).addClass(by.call(this,bC,this.className))})}if(by&&typeof by==="string"){bA=by.split(af);for(bw=0,bv=this.length;bw<bv;bw++){bx=this[bw];if(bx.nodeType===1){if(!bx.className&&bA.length===1){bx.className=by}else{bz=" "+bx.className+" ";for(bB=0,e=bA.length;bB<e;bB++){if(!~bz.indexOf(" "+bA[bB]+" ")){bz+=bA[bB]+" "}}bx.className=b.trim(bz)}}}}return this},removeClass:function(bz){var bA,bw,bv,by,bx,bB,e;if(b.isFunction(bz)){return this.each(function(bC){b(this).removeClass(bz.call(this,bC,this.className))})}if((bz&&typeof bz==="string")||bz===L){bA=(bz||"").split(af);for(bw=0,bv=this.length;bw<bv;bw++){by=this[bw];if(by.nodeType===1&&by.className){if(bz){bx=(" "+by.className+" ").replace(aP," ");for(bB=0,e=bA.length;bB<e;bB++){bx=bx.replace(" "+bA[bB]+" "," ")}by.className=b.trim(bx)}else{by.className=""}}}}return this},toggleClass:function(bx,bv){var bw=typeof bx,e=typeof bv==="boolean";if(b.isFunction(bx)){return this.each(function(by){b(this).toggleClass(bx.call(this,by,this.className,bv),bv)})}return this.each(function(){if(bw==="string"){var bA,bz=0,by=b(this),bB=bv,bC=bx.split(af);while((bA=bC[bz++])){bB=e?bB:!by.hasClass(bA);by[bB?"addClass":"removeClass"](bA)}}else{if(bw==="undefined"||bw==="boolean"){if(this.className){b._data(this,"__className__",this.className)}this.className=this.className||bx===false?"":b._data(this,"__className__")||""}}})},hasClass:function(e){var bx=" "+e+" ",bw=0,bv=this.length;for(;bw<bv;bw++){if(this[bw].nodeType===1&&(" "+this[bw].className+" ").replace(aP," ").indexOf(bx)>-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv<bz;bv++){bx=bC[bv];if(bx.selected&&(b.support.optDisabled?!bx.disabled:bx.getAttribute("disabled")===null)&&(!bx.parentNode.disabled||!b.nodeName(bx.parentNode,"optgroup"))){bA=b(bx).val();if(bw){return bA}bB.push(bA)}}if(bw&&!bB.length&&bC.length){return b(bC[by]).val()}return bB},set:function(bv,bw){var e=b.makeArray(bw);b(bv).find("option").each(function(){this.selected=b.inArray(b(this).val(),e)>=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw<e;bw++){bv=bA[bw];if(bv){by=b.propFix[bv]||bv;b.attr(bx,bv,"");bx.removeAttribute(F?bv:by);if(ao.test(bv)&&by in bx){bx[by]=false}}}}},attrHooks:{type:{set:function(e,bv){if(g.test(e.nodeName)&&e.parentNode){b.error("type property can't be changed")}else{if(!b.support.radioValue&&bv==="radio"&&b.nodeName(e,"input")){var bw=e.value;e.setAttribute("type",bv);if(bw){e.value=bw}return bv}}}},value:{get:function(bv,e){if(be&&b.nodeName(bv,"button")){return be.get(bv,e)}return e in bv?bv.value:null},set:function(bv,bw,e){if(be&&b.nodeName(bv,"button")){return be.set(bv,bw,e)}bv.value=bw}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(bz,bx,bA){var bw,e,by,bv=bz.nodeType;if(!bz||bv===3||bv===8||bv===2){return}by=bv!==1||!b.isXMLDoc(bz);if(by){bx=b.propFix[bx]||bx;e=b.propHooks[bx]}if(bA!==L){if(e&&"set" in e&&(bw=e.set(bz,bA,bx))!==L){return bw}else{return(bz[bx]=bA)}}else{if(e&&"get" in e&&(bw=e.get(bz,bx))!==null){return bw}else{return bz[bx]}}},propHooks:{tabIndex:{get:function(bv){var e=bv.getAttributeNode("tabindex");return e&&e.specified?parseInt(e.value,10):D.test(bv.nodeName)||l.test(bv.nodeName)&&bv.href?0:L}}}});b.attrHooks.tabindex=b.propHooks.tabIndex;aY={get:function(bv,e){var bx,bw=b.prop(bv,e);return bw===true||typeof bw!=="boolean"&&(bx=bv.getAttributeNode(e))&&bx.nodeValue!==false?e.toLowerCase():L},set:function(bv,bx,e){var bw;if(bx===false){b.removeAttr(bv,e)}else{bw=b.propFix[e]||e;if(bw in bv){bv[bw]=true}bv.setAttribute(e,e.toLowerCase())}return e}};if(!F){aF={name:true,id:true};be=b.valHooks.button={get:function(bw,bv){var e;e=bw.getAttributeNode(bv);return e&&(aF[bv]?e.nodeValue!=="":e.specified)?e.nodeValue:L},set:function(bw,bx,bv){var e=bw.getAttributeNode(bv);if(!e){e=av.createAttribute(bv);bw.setAttributeNode(e)}return(e.nodeValue=bx+"")}};b.attrHooks.tabindex.set=be.set;b.each(["width","height"],function(bv,e){b.attrHooks[e]=b.extend(b.attrHooks[e],{set:function(bw,bx){if(bx===""){bw.setAttribute(e,"auto");return bx}}})});b.attrHooks.contenteditable={get:be.get,set:function(bv,bw,e){if(bw===""){bw="false"}be.set(bv,bw,e)}}}if(!b.support.hrefNormalized){b.each(["href","src","width","height"],function(bv,e){b.attrHooks[e]=b.extend(b.attrHooks[e],{get:function(bx){var bw=bx.getAttribute(e,2);return bw===null?L:bw}})})}if(!b.support.style){b.attrHooks.style={get:function(e){return e.style.cssText.toLowerCase()||L},set:function(e,bv){return(e.style.cssText=""+bv)}}}if(!b.support.optSelected){b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(bv){var e=bv.parentNode;if(e){e.selectedIndex;if(e.parentNode){e.parentNode.selectedIndex}}return null}})}if(!b.support.enctype){b.propFix.enctype="encoding"}if(!b.support.checkOn){b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return e.getAttribute("value")===null?"on":e.value}}})}b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,bv){if(b.isArray(bv)){return(e.checked=b.inArray(b(e).val(),bv)>=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI<bC.length;bI++){bH=n.exec(bC[bI])||[];bF=bH[1];e=(bH[2]||"").split(".").sort();bE=b.event.special[bF]||{};bF=(by?bE.delegateType:bE.bindType)||bF;bE=b.event.special[bF]||{};bG=b.extend({type:bF,origType:bH[1],data:bA,handler:bJ,guid:bJ.guid,selector:by,quick:Y(by),namespace:e.join(".")},bv);bw=bK[bF];if(!bw){bw=bK[bF]=[];bw.delegateCount=0;if(!bE.setup||bE.setup.call(bx,bA,e,bB)===false){if(bx.addEventListener){bx.addEventListener(bF,bB,false)}else{if(bx.attachEvent){bx.attachEvent("on"+bF,bB)}}}}if(bE.add){bE.add.call(bx,bG);if(!bG.handler.guid){bG.handler.guid=bJ.guid}}if(by){bw.splice(bw.delegateCount++,0,bG)}else{bw.push(bG)}b.event.global[bF]=true}bx=null},global:{},remove:function(bJ,bE,bv,bH,bB){var bI=b.hasData(bJ)&&b._data(bJ),bF,bx,bz,bL,bC,bA,bG,bw,by,bK,bD,e;if(!bI||!(bw=bI.events)){return}bE=b.trim(bt(bE||"")).split(" ");for(bF=0;bF<bE.length;bF++){bx=n.exec(bE[bF])||[];bz=bL=bx[1];bC=bx[2];if(!bz){for(bz in bw){b.event.remove(bJ,bz+bE[bF],bv,bH,true)}continue}by=b.event.special[bz]||{};bz=(bH?by.delegateType:by.bindType)||bz;bD=bw[bz]||[];bA=bD.length;bC=bC?new RegExp("(^|\\.)"+bC.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(bG=0;bG<bD.length;bG++){e=bD[bG];if((bB||bL===e.origType)&&(!bv||bv.guid===e.guid)&&(!bC||bC.test(e.namespace))&&(!bH||bH===e.selector||bH==="**"&&e.selector)){bD.splice(bG--,1);if(e.selector){bD.delegateCount--}if(by.remove){by.remove.call(bJ,e)}}}if(bD.length===0&&bA!==bD.length){if(!by.teardown||by.teardown.call(bJ,bC)===false){b.removeEvent(bJ,bz,bI.handle)}delete bw[bz]}}if(b.isEmptyObject(bw)){bK=bI.handle;if(bK){bK.elem=null}b.removeData(bJ,["events","handle"],true)}},customEvent:{getData:true,setData:true,changeData:true},trigger:function(bv,bD,bA,bJ){if(bA&&(bA.nodeType===3||bA.nodeType===8)){return}var bG=bv.type||bv,bx=[],e,bw,bC,bH,bz,by,bF,bE,bB,bI;if(T.test(bG+b.event.triggered)){return}if(bG.indexOf("!")>=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bC<bB.length&&!bv.isPropagationStopped();bC++){bH=bB[bC][0];bv.type=bB[bC][1];bE=(b._data(bH,"events")||{})[bv.type]&&b._data(bH,"handle");if(bE){bE.apply(bH,bD)}bE=by&&bH[by];if(bE&&b.acceptData(bH)&&bE.apply(bH,bD)===false){bv.preventDefault()}}bv.type=bG;if(!bJ&&!bv.isDefaultPrevented()){if((!bF._default||bF._default.apply(bA.ownerDocument,bD)===false)&&!(bG==="click"&&b.nodeName(bA,"a"))&&b.acceptData(bA)){if(by&&bA[bG]&&((bG!=="focus"&&bG!=="blur")||bv.target.offsetWidth!==0)&&!b.isWindow(bA)){bz=bA[by];if(bz){bA[by]=null}b.event.triggered=bG;bA[bG]();b.event.triggered=L;if(bz){bA[by]=bz}}}}return bv.result},dispatch:function(e){e=b.event.fix(e||bb.event);var bz=((b._data(this,"events")||{})[e.type]||[]),bA=bz.delegateCount,bG=[].slice.call(arguments,0),by=!e.exclusive&&!e.namespace,bH=[],bC,bB,bK,bx,bF,bE,bv,bD,bI,bw,bJ;bG[0]=e;e.delegateTarget=this;if(bA&&!e.target.disabled&&!(e.button&&e.type==="click")){bx=b(this);bx.context=this.ownerDocument||this;for(bK=e.target;bK!=this;bK=bK.parentNode||this){bE={};bD=[];bx[0]=bK;for(bC=0;bC<bA;bC++){bI=bz[bC];bw=bI.selector;if(bE[bw]===L){bE[bw]=(bI.quick?j(bK,bI.quick):bx.is(bw))}if(bE[bw]){bD.push(bI)}}if(bD.length){bH.push({elem:bK,matches:bD})}}}if(bz.length>bA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC<bH.length&&!e.isPropagationStopped();bC++){bv=bH[bC];e.currentTarget=bv.elem;for(bB=0;bB<bv.matches.length&&!e.isImmediatePropagationStopped();bB++){bI=bv.matches[bB];if(by||(!e.namespace&&!bI.namespace)||e.namespace_re&&e.namespace_re.test(bI.namespace)){e.data=bI.data;e.handleObj=bI;bF=((b.event.special[bI.origType]||{}).handle||bI.handler).apply(bv.elem,bG);if(bF!==L){e.result=bF;if(bF===false){e.preventDefault();e.stopPropagation()}}}}}return e.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(bv,e){if(bv.which==null){bv.which=e.charCode!=null?e.charCode:e.keyCode}return bv}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(bx,bw){var by,bz,e,bv=bw.button,bA=bw.fromElement;if(bx.pageX==null&&bw.clientX!=null){by=bx.target.ownerDocument||av;bz=by.documentElement;e=by.body;bx.pageX=bw.clientX+(bz&&bz.scrollLeft||e&&e.scrollLeft||0)-(bz&&bz.clientLeft||e&&e.clientLeft||0);bx.pageY=bw.clientY+(bz&&bz.scrollTop||e&&e.scrollTop||0)-(bz&&bz.clientTop||e&&e.clientTop||0)}if(!bx.relatedTarget&&bA){bx.relatedTarget=bA===bx.target?bw.toElement:bA}if(!bx.which&&bv!==L){bx.which=(bv&1?1:(bv&2?3:(bv&4?2:0)))}return bx}},fix:function(bw){if(bw[b.expando]){return bw}var bv,bz,e=bw,bx=b.event.fixHooks[bw.type]||{},by=bx.props?this.props.concat(bx.props):this.props;bw=b.Event(e);for(bv=by.length;bv;){bz=by[--bv];bw[bz]=e[bz]}if(!bw.target){bw.target=e.srcElement||av}if(bw.target.nodeType===3){bw.target=bw.target.parentNode}if(bw.metaKey===L){bw.metaKey=bw.ctrlKey}return bx.filter?bx.filter(bw,e):bw},special:{ready:{setup:b.bindReady},load:{noBubble:true},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(bw,bv,e){if(b.isWindow(this)){this.onbeforeunload=e}},teardown:function(bv,e){if(this.onbeforeunload===e){this.onbeforeunload=null}}}},simulate:function(bw,by,bx,bv){var bz=b.extend(new b.Event(),bx,{type:bw,isSimulated:true,originalEvent:{}});if(bv){b.event.trigger(bz,null,by)}else{b.event.dispatch.call(by,bz)}if(bz.isDefaultPrevented()){bx.preventDefault()}}};b.event.handle=b.event.dispatch;b.removeEvent=av.removeEventListener?function(bv,e,bw){if(bv.removeEventListener){bv.removeEventListener(e,bw,false)}}:function(bv,e,bw){if(bv.detachEvent){bv.detachEvent("on"+e,bw)}};b.Event=function(bv,e){if(!(this instanceof b.Event)){return new b.Event(bv,e)}if(bv&&bv.type){this.originalEvent=bv;this.type=bv.type;this.isDefaultPrevented=(bv.defaultPrevented||bv.returnValue===false||bv.getPreventDefault&&bv.getPreventDefault())?i:bk}else{this.type=bv}if(e){b.extend(this,e)}this.timeStamp=bv&&bv.timeStamp||b.now();this[b.expando]=true};function bk(){return false}function i(){return true}b.Event.prototype={preventDefault:function(){this.isDefaultPrevented=i;var bv=this.originalEvent;if(!bv){return}if(bv.preventDefault){bv.preventDefault()}else{bv.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=i;var bv=this.originalEvent;if(!bv){return}if(bv.stopPropagation){bv.stopPropagation()}bv.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=i;this.stopPropagation()},isDefaultPrevented:bk,isPropagationStopped:bk,isImmediatePropagationStopped:bk};b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(bv,e){b.event.special[bv]={delegateType:e,bindType:e,handle:function(bz){var bB=this,bA=bz.relatedTarget,by=bz.handleObj,bw=by.selector,bx;if(!bA||(bA!==bB&&!b.contains(bB,bA))){bz.type=by.origType;bx=by.handler.apply(this,arguments);bz.type=e}return bx}}});if(!b.support.submitBubbles){b.event.special.submit={setup:function(){if(b.nodeName(this,"form")){return false}b.event.add(this,"click._submit keypress._submit",function(bx){var bw=bx.target,bv=b.nodeName(bw,"input")||b.nodeName(bw,"button")?bw.form:L;if(bv&&!bv._submit_attached){b.event.add(bv,"submit._submit",function(e){if(this.parentNode&&!e.isTrigger){b.event.simulate("submit",this.parentNode,e,true)}});bv._submit_attached=true}})},teardown:function(){if(b.nodeName(this,"form")){return false}b.event.remove(this,"._submit")}}}if(!b.support.changeBubbles){b.event.special.change={setup:function(){if(bd.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio"){b.event.add(this,"propertychange._change",function(e){if(e.originalEvent.propertyName==="checked"){this._just_changed=true}});b.event.add(this,"click._change",function(e){if(this._just_changed&&!e.isTrigger){this._just_changed=false;b.event.simulate("change",this,e,true)}})}return false}b.event.add(this,"beforeactivate._change",function(bw){var bv=bw.target;if(bd.test(bv.nodeName)&&!bv._change_attached){b.event.add(bv,"change._change",function(e){if(this.parentNode&&!e.isSimulated&&!e.isTrigger){b.event.simulate("change",this.parentNode,e,true)}});bv._change_attached=true}})},handle:function(bv){var e=bv.target;if(this!==e||bv.isSimulated||bv.isTrigger||(e.type!=="radio"&&e.type!=="checkbox")){return bv.handleObj.handler.apply(this,arguments)}},teardown:function(){b.event.remove(this,"._change");return bd.test(this.nodeName)}}}if(!b.support.focusinBubbles){b.each({focus:"focusin",blur:"focusout"},function(bx,e){var bv=0,bw=function(by){b.event.simulate(e,by.target,b.event.fix(by),true)};b.event.special[e]={setup:function(){if(bv++===0){av.addEventListener(bx,bw,true)}},teardown:function(){if(--bv===0){av.removeEventListener(bx,bw,true)}}}})}b.fn.extend({on:function(bw,e,bz,by,bv){var bA,bx;if(typeof bw==="object"){if(typeof e!=="string"){bz=e;e=L}for(bx in bw){this.on(bx,e,bz,bw[bx],bv)}return this}if(bz==null&&by==null){by=e;bz=e=L}else{if(by==null){if(typeof e==="string"){by=bz;bz=L}else{by=bz;bz=e;e=L}}}if(by===false){by=bk}else{if(!by){return this}}if(bv===1){bA=by;by=function(bB){b().off(bB);return bA.apply(this,arguments)};by.guid=bA.guid||(bA.guid=b.guid++)}return this.each(function(){b.event.add(this,bw,by,bz,e)})},one:function(bv,e,bx,bw){return this.on.call(this,bv,e,bx,bw,1)},off:function(bw,e,by){if(bw&&bw.preventDefault&&bw.handleObj){var bv=bw.handleObj;b(bw.delegateTarget).off(bv.namespace?bv.type+"."+bv.namespace:bv.type,bv.selector,bv.handler);return this}if(typeof bw==="object"){for(var bx in bw){this.off(bx,e,bw[bx])}return this}if(e===false||typeof e==="function"){by=e;e=L}if(by===false){by=bk}return this.each(function(){b.event.remove(this,bw,by,e)})},bind:function(e,bw,bv){return this.on(e,null,bw,bv)},unbind:function(e,bv){return this.off(e,null,bv)},live:function(e,bw,bv){b(this.context).on(e,this.selector,bw,bv);return this},die:function(e,bv){b(this.context).off(e,this.selector||"**",bv);return this},delegate:function(e,bv,bx,bw){return this.on(bv,e,bx,bw)},undelegate:function(e,bv,bw){return arguments.length==1?this.off(e,"**"):this.off(bv,e,bw)},trigger:function(e,bv){return this.each(function(){b.event.trigger(e,bv,this)})},triggerHandler:function(e,bv){if(this[0]){return b.event.trigger(e,bv,this[0],true)}},toggle:function(bx){var bv=arguments,e=bx.guid||b.guid++,bw=0,by=function(bz){var bA=(b._data(this,"lastToggle"+bx.guid)||0)%bw;b._data(this,"lastToggle"+bx.guid,bA+1);bz.preventDefault();return bv[bA].apply(this,arguments)||false};by.guid=e;while(bw<bv.length){bv[bw++].guid=e}return this.click(by)},hover:function(e,bv){return this.mouseenter(e).mouseleave(bv||e)}});b.each(("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu").split(" "),function(bv,e){b.fn[e]=function(bx,bw){if(bw==null){bw=bx;bx=null}return arguments.length>0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e<bR.length;e++){if(bR[e]===bR[e-1]){bR.splice(e--,1)}}}}return bR};by.matches=function(e,bR){return by(e,null,null,bR)};by.matchesSelector=function(e,bR){return by(bR,null,null,[e]).length>0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS<bU;bS++){bV=bE.order[bS];if((bT=bE.leftMatch[bV].exec(bX))){bR=bT[1];bT.splice(1,1);if(bR.substr(bR.length-1)!=="\\"){bT[1]=(bT[1]||"").replace(bK,"");bW=bE.find[bV](bT,e,bY);if(bW!=null){bX=bX.replace(bE.match[bV],"");break}}}}if(!bW){bW=typeof e.getElementsByTagName!=="undefined"?e.getElementsByTagName("*"):[]}return{set:bW,expr:bX}};by.filter=function(b1,b0,b4,bU){var bW,e,bZ,b6,b3,bR,bT,bV,b2,bS=b1,b5=[],bY=b0,bX=b0&&b0[0]&&by.isXML(b0[0]);while(b1&&b0.length){for(bZ in bE.filter){if((bW=bE.leftMatch[bZ].exec(b1))!=null&&bW[2]){bR=bE.filter[bZ];bT=bW[1];e=false;bW.splice(1,1);if(bT.substr(bT.length-1)==="\\"){continue}if(bY===b5){b5=[]}if(bE.preFilter[bZ]){bW=bE.preFilter[bZ](bW,bY,b4,b5,bU,bX);if(!bW){e=b6=true}else{if(bW===true){continue}}}if(bW){for(bV=0;(b3=bY[bV])!=null;bV++){if(b3){b6=bR(b3,bW,bV,bY);b2=bU^b6;if(b4&&b6!=null){if(b2){e=true}else{bY[bV]=false}}else{if(b2){b5.push(b3);e=true}}}}}if(b6!==L){if(!b4){bY=b5}b1=b1.replace(bE.match[bZ],"");if(!e){return[]}break}}}if(b1===bS){if(e==null){by.error(b1)}else{break}}bS=b1}return bY};by.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)};var bw=by.getText=function(bU){var bS,bT,e=bU.nodeType,bR="";if(e){if(e===1||e===9){if(typeof bU.textContent==="string"){return bU.textContent}else{if(typeof bU.innerText==="string"){return bU.innerText.replace(bO,"")}else{for(bU=bU.firstChild;bU;bU=bU.nextSibling){bR+=bw(bU)}}}}else{if(e===3||e===4){return bU.nodeValue}}}else{for(bS=0;(bT=bU[bS]);bS++){if(bT.nodeType!==8){bR+=bw(bT)}}}return bR};var bE=by.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(e){return e.getAttribute("href")},type:function(e){return e.getAttribute("type")}},relative:{"+":function(bW,bR){var bT=typeof bR==="string",bV=bT&&!bQ.test(bR),bX=bT&&!bV;if(bV){bR=bR.toLowerCase()}for(var bS=0,e=bW.length,bU;bS<e;bS++){if((bU=bW[bS])){while((bU=bU.previousSibling)&&bU.nodeType!==1){}bW[bS]=bX||bU&&bU.nodeName.toLowerCase()===bR?bU||false:bU===bR}}if(bX){by.filter(bR,bW,true)}},">":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS<e;bS++){bV=bW[bS];if(bV){var bT=bV.parentNode;bW[bS]=bT.nodeName.toLowerCase()===bR?bT:false}}}else{for(;bS<e;bS++){bV=bW[bS];if(bV){bW[bS]=bU?bV.parentNode:bV.parentNode===bR}}if(bU){by.filter(bR,bW,true)}}},"":function(bT,bR,bV){var bU,bS=bI++,e=bN;if(typeof bR==="string"&&!bQ.test(bR)){bR=bR.toLowerCase();bU=bR;e=bv}e("parentNode",bR,bS,bT,bU,bV)},"~":function(bT,bR,bV){var bU,bS=bI++,e=bN;if(typeof bR==="string"&&!bQ.test(bR)){bR=bR.toLowerCase();bU=bR;e=bv}e("previousSibling",bR,bS,bT,bU,bV)}},find:{ID:function(bR,bS,bT){if(typeof bS.getElementById!=="undefined"&&!bT){var e=bS.getElementById(bR[1]);return e&&e.parentNode?[e]:[]}},NAME:function(bS,bV){if(typeof bV.getElementsByName!=="undefined"){var bR=[],bU=bV.getElementsByName(bS[1]);for(var bT=0,e=bU.length;bT<e;bT++){if(bU[bT].getAttribute("name")===bS[1]){bR.push(bU[bT])}}return bR.length===0?null:bR}},TAG:function(e,bR){if(typeof bR.getElementsByTagName!=="undefined"){return bR.getElementsByTagName(e[1])}}},preFilter:{CLASS:function(bT,bR,bS,e,bW,bX){bT=" "+bT[1].replace(bK,"")+" ";if(bX){return bT}for(var bU=0,bV;(bV=bR[bU])!=null;bU++){if(bV){if(bW^(bV.className&&(" "+bV.className+" ").replace(/[\t\n\r]/g," ").indexOf(bT)>=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bR<e[3]-0},gt:function(bS,bR,e){return bR>e[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV<bU;bV++){if(bT[bV]===bS){return false}}return true}else{by.error(e)}}}},CHILD:function(bS,bU){var bT,b0,bW,bZ,e,bV,bY,bX=bU[1],bR=bS;switch(bX){case"only":case"first":while((bR=bR.previousSibling)){if(bR.nodeType===1){return false}}if(bX==="first"){return true}bR=bS;case"last":while((bR=bR.nextSibling)){if(bR.nodeType===1){return false}}return true;case"nth":bT=bU[2];b0=bU[3];if(bT===1&&b0===0){return true}bW=bU[0];bZ=bS.parentNode;if(bZ&&(bZ[bC]!==bW||!bS.nodeIndex)){bV=0;for(bR=bZ.firstChild;bR;bR=bR.nextSibling){if(bR.nodeType===1){bR.nodeIndex=++bV}}bZ[bC]=bW}bY=bS.nodeIndex-b0;if(bT===0){return bY===0}else{return(bY%bT===0&&bY/bT>=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS<e;bS++){bR.push(bU[bS])}}else{for(;bU[bS];bS++){bR.push(bU[bS])}}}return bR}}var bJ,bG;if(av.documentElement.compareDocumentPosition){bJ=function(bR,e){if(bR===e){bB=true;return 0}if(!bR.compareDocumentPosition||!e.compareDocumentPosition){return bR.compareDocumentPosition?-1:1}return bR.compareDocumentPosition(e)&4?-1:1}}else{bJ=function(bY,bX){if(bY===bX){bB=true;return 0}else{if(bY.sourceIndex&&bX.sourceIndex){return bY.sourceIndex-bX.sourceIndex}}var bV,bR,bS=[],e=[],bU=bY.parentNode,bW=bX.parentNode,bZ=bU;if(bU===bW){return bG(bY,bX)}else{if(!bU){return -1}else{if(!bW){return 1}}}while(bZ){bS.unshift(bZ);bZ=bZ.parentNode}bZ=bW;while(bZ){e.unshift(bZ);bZ=bZ.parentNode}bV=bS.length;bR=e.length;for(var bT=0;bT<bV&&bT<bR;bT++){if(bS[bT]!==e[bT]){return bG(bS[bT],e[bT])}}return bT===bV?bG(bY,e[bT],-1):bG(bS[bT],bX,1)};bG=function(bR,e,bS){if(bR===e){return bS}var bT=bR.nextSibling;while(bT){if(bT===e){return -1}bT=bT.nextSibling}return 1}}(function(){var bR=av.createElement("div"),bS="script"+(new Date()).getTime(),e=av.documentElement;bR.innerHTML="<a name='"+bS+"'/>";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="<a href='#'></a>";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="<p class='TEST'></p>";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="<div class='test e'></div><div class='test'></div>";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT<bS;bT++){var e=bZ[bT];if(e){var bU=false;e=e[bR];while(e){if(e[bC]===bV){bU=bZ[e.sizset];break}if(e.nodeType===1&&!bY){e[bC]=bV;e.sizset=bT}if(e.nodeName.toLowerCase()===bW){bU=e;break}e=e[bR]}bZ[bT]=bU}}}function bN(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT<bS;bT++){var e=bZ[bT];if(e){var bU=false;e=e[bR];while(e){if(e[bC]===bV){bU=bZ[e.sizset];break}if(e.nodeType===1){if(!bY){e[bC]=bV;e.sizset=bT}if(typeof bW!=="string"){if(e===bW){bU=true;break}}else{if(by.filter(bW,[e]).length>0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT<bR;bT++){by(bS,bY[bT],bX,bW)}return by.filter(bU,bX)};by.attr=b.attr;by.selectors.attrMap={};b.find=by;b.expr=by.selectors;b.expr[":"]=b.expr.filters;b.unique=by.uniqueSort;b.text=by.getText;b.isXMLDoc=by.isXML;b.contains=by.contains})();var ab=/Until$/,aq=/^(?:parents|prevUntil|prevAll)/,a9=/,/,bp=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,H=b.expr.match.POS,ay={children:true,contents:true,next:true,prev:true};b.fn.extend({find:function(e){var bw=this,by,bv;if(typeof e!=="string"){return b(e).filter(function(){for(by=0,bv=bw.length;by<bv;by++){if(b.contains(bw[by],this)){return true}}})}var bx=this.pushStack("","find",e),bA,bB,bz;for(by=0,bv=this.length;by<bv;by++){bA=bx.length;b.find(e,this[by],bx);if(by>0){for(bB=bA;bB<bx.length;bB++){for(bz=0;bz<bA;bz++){if(bx[bz]===bx[bB]){bx.splice(bB--,1);break}}}}}return bx},has:function(bv){var e=b(bv);return this.filter(function(){for(var bx=0,bw=e.length;bx<bw;bx++){if(b.contains(this,e[bx])){return true}}})},not:function(e){return this.pushStack(aG(this,e,false),"not",e)},filter:function(e){return this.pushStack(aG(this,e,true),"filter",e)},is:function(e){return !!e&&(typeof e==="string"?H.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw<by.length;bw++){if(b(bz).is(by[bw])){bv.push({selector:by[bw],elem:bz,level:bB})}}bz=bz.parentNode;bB++}return bv}var bA=H.test(by)||typeof by!=="string"?b(by,bx||this.context):0;for(bw=0,e=this.length;bw<e;bw++){bz=this[bw];while(bz){if(bA?bA.index(bz)>-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/<tbody/i,W=/<|&#?\w+;/,ae=/<(?:script|style)/i,O=/<(?:script|object|embed|option|style)/i,ah=new RegExp("<(?:"+aR+")","i"),o=/checked\s*(?:[^=]|=\s*.checked.)/i,bm=/\/(java|ecma)script/i,aN=/^\s*<!(?:\[CDATA\[|\-\-)/,ax={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div<div>","</div>"]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1></$2>");try{for(var bw=0,bv=this.length;bw<bv;bw++){if(this[bw].nodeType===1){b.cleanData(this[bw].getElementsByTagName("*"));this[bw].innerHTML=bx}}}catch(by){this.empty().append(bx)}}else{if(b.isFunction(bx)){this.each(function(bz){var e=b(this);e.html(bx.call(this,bz,e.html()))})}else{this.empty().append(bx)}}}return this},replaceWith:function(e){if(this[0]&&this[0].parentNode){if(b.isFunction(e)){return this.each(function(bx){var bw=b(this),bv=bw.html();bw.replaceWith(e.call(this,bx,bv))})}if(typeof e!=="string"){e=b(e).detach()}return this.each(function(){var bw=this.nextSibling,bv=this.parentNode;b(this).remove();if(bw){b(bw).before(e)}else{b(bv).append(e)}})}else{return this.length?this.pushStack(b(b.isFunction(e)?e():e),"replaceWith",e):this}},detach:function(e){return this.remove(e,true)},domManip:function(bB,bF,bE){var bx,by,bA,bD,bC=bB[0],bv=[];if(!b.support.checkClone&&arguments.length===3&&typeof bC==="string"&&o.test(bC)){return this.each(function(){b(this).domManip(bB,bF,bE,true)})}if(b.isFunction(bC)){return this.each(function(bH){var bG=b(this);bB[0]=bC.call(this,bH,bF?bG.html():L);bG.domManip(bB,bF,bE)})}if(this[0]){bD=bC&&bC.parentNode;if(b.support.parentNode&&bD&&bD.nodeType===11&&bD.childNodes.length===this.length){bx={fragment:bD}}else{bx=b.buildFragment(bB,this,bv)}bA=bx.fragment;if(bA.childNodes.length===1){by=bA=bA.firstChild}else{by=bA.firstChild}if(by){bF=bF&&b.nodeName(by,"tr");for(var bw=0,e=this.length,bz=e-1;bw<e;bw++){bE.call(bF?ba(this[bw],by):this[bw],bx.cacheable||(e>1&&bw<bz)?b.clone(bA,true,true):bA)}}if(bv.length){b.each(bv,bo)}}return this}});function ba(e,bv){return b.nodeName(e,"table")?(e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody"))):e}function t(bB,bv){if(bv.nodeType!==1||!b.hasData(bB)){return}var by,bx,e,bA=b._data(bB),bz=b._data(bv,bA),bw=bA.events;if(bw){delete bz.handle;bz.events={};for(by in bw){for(bx=0,e=bw[by].length;bx<e;bx++){b.event.add(bv,by+(bw[by][bx].namespace?".":"")+bw[by][bx].namespace,bw[by][bx],bw[by][bx].data)}}}if(bz.data){bz.data=b.extend({},bz.data)}}function ai(bv,e){var bw;if(e.nodeType!==1){return}if(e.clearAttributes){e.clearAttributes()}if(e.mergeAttributes){e.mergeAttributes(bv)}bw=e.nodeName.toLowerCase();if(bw==="object"){e.outerHTML=bv.outerHTML}else{if(bw==="input"&&(bv.type==="checkbox"||bv.type==="radio")){if(bv.checked){e.defaultChecked=e.checked=bv.checked}if(e.value!==bv.value){e.value=bv.value}}else{if(bw==="option"){e.selected=bv.defaultSelected}else{if(bw==="input"||bw==="textarea"){e.defaultValue=bv.defaultValue}}}}e.removeAttribute(b.expando)}b.buildFragment=function(bz,bx,bv){var by,e,bw,bA,bB=bz[0];if(bx&&bx[0]){bA=bx[0].ownerDocument||bx[0]}if(!bA.createDocumentFragment){bA=av}if(bz.length===1&&typeof bB==="string"&&bB.length<512&&bA===av&&bB.charAt(0)==="<"&&!O.test(bB)&&(b.support.checkClone||!o.test(bB))&&(b.support.html5Clone||!ah.test(bB))){e=true;bw=b.fragments[bB];if(bw&&bw!==1){by=bw}}if(!by){by=bA.createDocumentFragment();b.clean(bz,bA,by,bv)}if(e){b.fragments[bB]=bw?by:1}return{fragment:by,cacheable:e}};b.fragments={};b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,bv){b.fn[e]=function(bw){var bz=[],bC=b(bw),bB=this.length===1&&this[0].parentNode;if(bB&&bB.nodeType===11&&bB.childNodes.length===1&&bC.length===1){bC[bv](this[0]);return this}else{for(var bA=0,bx=bC.length;bA<bx;bA++){var by=(bA>0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1></$2>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]==="<table>"&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB<bG;bB++){E(bz[bB])}}else{E(bz)}}if(bz.nodeType){bI.push(bz)}else{bI=b.merge(bI,bz)}}if(bH){bF=function(bL){return !bL.type||bm.test(bL.type)};for(bE=0;bI[bE];bE++){if(bA&&b.nodeName(bI[bE],"script")&&(!bI[bE].type||bI[bE].type.toLowerCase()==="text/javascript")){bA.push(bI[bE].parentNode?bI[bE].parentNode.removeChild(bI[bE]):bI[bE])}else{if(bI[bE].nodeType===1){var bJ=b.grep(bI[bE].getElementsByTagName("script"),bF);bI.splice.apply(bI,[bE+1,0].concat(bJ))}bH.appendChild(bI[bE])}}}return bI},cleanData:function(bv){var by,bw,e=b.cache,bB=b.event.special,bA=b.support.deleteExpando;for(var bz=0,bx;(bx=bv[bz])!=null;bz++){if(bx.nodeName&&b.noData[bx.nodeName.toLowerCase()]){continue}bw=bx[b.expando];if(bw){by=e[bw];if(by&&by.events){for(var bC in by.events){if(bB[bC]){b.event.remove(bx,bC)}else{b.removeEvent(bx,bC,by.handle)}}if(by.handle){by.handle.elem=null}}if(bA){delete bx[b.expando]}else{if(bx.removeAttribute){bx.removeAttribute(b.expando)}}delete e[bw]}}}});function bo(e,bv){if(bv.src){b.ajax({url:bv.src,async:false,dataType:"script"})}else{b.globalEval((bv.text||bv.textContent||bv.innerHTML||"").replace(aN,"/*$0*/"))}if(bv.parentNode){bv.parentNode.removeChild(bv)}}var ak=/alpha\([^)]*\)/i,au=/opacity=([^)]*)/,z=/([A-Z]|^ms)/g,bc=/^-?\d+(?:px)?$/i,bn=/^-?\d/,I=/^([\-+])=([\-+.\de]+)/,a7={position:"absolute",visibility:"hidden",display:"block"},an=["Left","Right"],a1=["Top","Bottom"],Z,aI,aX;b.fn.css=function(e,bv){if(arguments.length===2&&bv===L){return this}return b.access(this,e,bv,true,function(bx,bw,by){return by!==L?b.style(bx,bw,by):b.css(bx,bw)})};b.extend({cssHooks:{opacity:{get:function(bw,bv){if(bv){var e=Z(bw,"opacity","opacity");return e===""?"1":e}else{return bw.style.opacity}}}},cssNumber:{fillOpacity:true,fontWeight:true,lineHeight:true,opacity:true,orphans:true,widows:true,zIndex:true,zoom:true},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(bx,bw,bD,by){if(!bx||bx.nodeType===3||bx.nodeType===8||!bx.style){return}var bB,bC,bz=b.camelCase(bw),bv=bx.style,bE=b.cssHooks[bz];bw=b.cssProps[bz]||bz;if(bD!==L){bC=typeof bD;if(bC==="string"&&(bB=I.exec(bD))){bD=(+(bB[1]+1)*+bB[2])+parseFloat(b.css(bx,bw));bC="number"}if(bD==null||bC==="number"&&isNaN(bD)){return}if(bC==="number"&&!b.cssNumber[bz]){bD+="px"}if(!bE||!("set" in bE)||(bD=bE.set(bx,bD))!==L){try{bv[bw]=bD}catch(bA){}}}else{if(bE&&"get" in bE&&(bB=bE.get(bx,false,by))!==L){return bB}return bv[bw]}},css:function(by,bx,bv){var bw,e;bx=b.camelCase(bx);e=b.cssHooks[bx];bx=b.cssProps[bx]||bx;if(bx==="cssFloat"){bx="float"}if(e&&"get" in e&&(bw=e.get(by,true,bv))!==L){return bw}else{if(Z){return Z(by,bx)}}},swap:function(bx,bw,by){var e={};for(var bv in bw){e[bv]=bx.style[bv];bx.style[bv]=bw[bv]}by.call(bx);for(bv in bw){bx.style[bv]=e[bv]}}});b.curCSS=b.css;b.each(["height","width"],function(bv,e){b.cssHooks[e]={get:function(by,bx,bw){var bz;if(bx){if(by.offsetWidth!==0){return p(by,e,bw)}else{b.swap(by,a7,function(){bz=p(by,e,bw)})}return bz}},set:function(bw,bx){if(bc.test(bx)){bx=parseFloat(bx);if(bx>=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx<e;bx++){if(!bv){bA-=parseFloat(b.css(by,"padding"+bz[bx]))||0}if(bv==="margin"){bA+=parseFloat(b.css(by,bv+bz[bx]))||0}else{bA-=parseFloat(b.css(by,"border"+bz[bx]+"Width"))||0}}}return bA+"px"}bA=Z(by,bw,bw);if(bA<0||bA==null){bA=by.style[bw]||0}bA=parseFloat(bA)||0;if(bv){for(;bx<e;bx++){bA+=parseFloat(b.css(by,"padding"+bz[bx]))||0;if(bv!=="padding"){bA+=parseFloat(b.css(by,"border"+bz[bx]+"Width"))||0}if(bv==="margin"){bA+=parseFloat(b.css(by,bv+bz[bx]))||0}}}return bA+"px"}if(b.expr&&b.expr.filters){b.expr.filters.hidden=function(bw){var bv=bw.offsetWidth,e=bw.offsetHeight;return(bv===0&&e===0)||(!b.support.reliableHiddenOffsets&&((bw.style&&bw.style.display)||b.css(bw,"display"))==="none")};b.expr.filters.visible=function(e){return !b.expr.filters.hidden(e)}}var k=/%20/g,ap=/\[\]$/,bs=/\r?\n/g,bq=/#.*$/,aD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,aZ=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,aM=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,aQ=/^(?:GET|HEAD)$/,c=/^\/\//,M=/\?/,a6=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw<bz;bw++){bv=bx[bw];bC=/^\+/.test(bv);if(bC){bv=bv.substr(1)||"*"}bB=e[bv]=e[bv]||[];bB[bC?"unshift":"push"](bA)}}}}function aW(bv,bE,bz,bD,bB,bx){bB=bB||bE.dataTypes[0];bx=bx||{};bx[bB]=true;var bA=bv[bB],bw=0,e=bA?bA.length:0,by=(bv===aa),bC;for(;bw<e&&(by||!bC);bw++){bC=bA[bw](bE,bz,bD);if(typeof bC==="string"){if(!by||bx[bC]){bC=L}else{bE.dataTypes.unshift(bC);bC=aW(bv,bE,bz,bD,bC,bx)}}}if((by||!bC)&&!bx["*"]){bC=aW(bv,bE,bz,bD,"*",bx)}return bC}function am(bw,bx){var bv,e,by=b.ajaxSettings.flatOptions||{};for(bv in bx){if(bx[bv]!==L){(by[bv]?bw:(e||(e={})))[bv]=bx[bv]}}if(e){b.extend(true,bw,e)}}b.fn.extend({load:function(bw,bz,bA){if(typeof bw!=="string"&&A){return A.apply(this,arguments)}else{if(!this.length){return this}}var by=bw.indexOf(" ");if(by>=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("<div>").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA<bw;bA++){if(bA===1){for(bE in bH.converters){if(typeof bE==="string"){bG[bE.toLowerCase()]=bH.converters[bE]}}}bx=bC;bC=bD[bA];if(bC==="*"){bC=bx}else{if(bx!=="*"&&bx!==bC){by=bx+" "+bC;bF=bG[by]||bG["* "+bC];if(!bF){e=L;for(bv in bG){bB=bv.split(" ");if(bB[0]===bx||bB[0]==="*"){e=bG[bB[1]+" "+bC];if(e){bv=bG[bv];if(bv===true){bF=e}else{if(e===true){bF=bv}}break}}}}if(!(bF||e)){b.error("No conversion from "+by.replace(" "," to "))}if(bF!==true){bz=bF?bF(bz):e(bv(bz))}}}}return bz}var aC=b.now(),u=/(\=)\?(&|$)|\?\?/i;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return b.expando+"_"+(aC++)}});b.ajaxPrefilter("json jsonp",function(bD,bA,bC){var bx=bD.contentType==="application/x-www-form-urlencoded"&&(typeof bD.data==="string");if(bD.dataTypes[0]==="jsonp"||bD.jsonp!==false&&(u.test(bD.url)||bx&&u.test(bD.data))){var bB,bw=bD.jsonpCallback=b.isFunction(bD.jsonpCallback)?bD.jsonpCallback():bD.jsonpCallback,bz=bb[bw],e=bD.url,by=bD.data,bv="$1"+bw+"$2";if(bD.jsonp!==false){e=e.replace(u,bv);if(bD.url===e){if(bx){by=by.replace(u,bv)}if(bD.data===by){e+=(/\?/.test(e)?"&":"?")+bD.jsonp+"="+bw}}}bD.url=e;bD.data=by;bb[bw]=function(bE){bB=[bE]};bC.always(function(){bb[bw]=bz;if(bB&&b.isFunction(bz)){bb[bw](bB[0])}});bD.converters["script json"]=function(){if(!bB){b.error(bw+" was not called")}return bB[0]};bD.dataTypes[0]="json";return"script"}});b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(e){b.globalEval(e);return e}}});b.ajaxPrefilter("script",function(e){if(e.cache===L){e.cache=false}if(e.crossDomain){e.type="GET";e.global=false}});b.ajaxTransport("script",function(bw){if(bw.crossDomain){var e,bv=av.head||av.getElementsByTagName("head")[0]||av.documentElement;return{send:function(bx,by){e=av.createElement("script");e.async="async";if(bw.scriptCharset){e.charset=bw.scriptCharset}e.src=bw.url;e.onload=e.onreadystatechange=function(bA,bz){if(bz||!e.readyState||/loaded|complete/.test(e.readyState)){e.onload=e.onreadystatechange=null;if(bv&&e.parentNode){bv.removeChild(e)}e=L;if(!bz){by(200,"success")}}};bv.insertBefore(e,bv.firstChild)},abort:function(){if(e){e.onload(0,1)}}}}});var B=bb.ActiveXObject?function(){for(var e in N){N[e](0,1)}}:false,y=0,N;function aL(){try{return new bb.XMLHttpRequest()}catch(bv){}}function aj(){try{return new bb.ActiveXObject("Microsoft.XMLHTTP")}catch(bv){}}b.ajaxSettings.xhr=bb.ActiveXObject?function(){return !this.isLocal&&aL()||aj()}:aL;(function(e){b.extend(b.support,{ajax:!!e,cors:!!e&&("withCredentials" in e)})})(b.ajaxSettings.xhr());if(b.support.ajax){b.ajaxTransport(function(e){if(!e.crossDomain||b.support.cors){var bv;return{send:function(bB,bw){var bA=e.xhr(),bz,by;if(e.username){bA.open(e.type,e.url,e.async,e.username,e.password)}else{bA.open(e.type,e.url,e.async)}if(e.xhrFields){for(by in e.xhrFields){bA[by]=e.xhrFields[by]}}if(e.mimeType&&bA.overrideMimeType){bA.overrideMimeType(e.mimeType)}if(!e.crossDomain&&!bB["X-Requested-With"]){bB["X-Requested-With"]="XMLHttpRequest"}try{for(by in bB){bA.setRequestHeader(by,bB[by])}}catch(bx){}bA.send((e.hasContent&&e.data)||null);bv=function(bK,bE){var bF,bD,bC,bI,bH;try{if(bv&&(bE||bA.readyState===4)){bv=L;if(bz){bA.onreadystatechange=b.noop;if(B){delete N[bz]}}if(bE){if(bA.readyState!==4){bA.abort()}}else{bF=bA.status;bC=bA.getAllResponseHeaders();bI={};bH=bA.responseXML;if(bH&&bH.documentElement){bI.xml=bH}bI.text=bA.responseText;try{bD=bA.statusText}catch(bJ){bD=""}if(!bF&&e.isLocal&&!e.crossDomain){bF=bI.text?200:404}else{if(bF===1223){bF=204}}}}}catch(bG){if(!bE){bw(-1,bG)}}if(bI){bw(bF,bD,bI,bC)}};if(!e.async||bA.readyState===4){bv()}else{bz=++y;if(B){if(!N){N={};b(bb).unload(B)}N[bz]=bv}bA.onreadystatechange=bv}},abort:function(){if(bv){bv(0,1)}}}}})}var Q={},a8,m,aB=/^(?:toggle|show|hide)$/,aT=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,a3,aH=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],a4;b.fn.extend({show:function(bx,bA,bz){var bw,by;if(bx||bx===0){return this.animate(a0("show",3),bx,bA,bz)}else{for(var bv=0,e=this.length;bv<e;bv++){bw=this[bv];if(bw.style){by=bw.style.display;if(!b._data(bw,"olddisplay")&&by==="none"){by=bw.style.display=""}if(by===""&&b.css(bw,"display")==="none"){b._data(bw,"olddisplay",x(bw.nodeName))}}}for(bv=0;bv<e;bv++){bw=this[bv];if(bw.style){by=bw.style.display;if(by===""||by==="none"){bw.style.display=b._data(bw,"olddisplay")||""}}}return this}},hide:function(bx,bA,bz){if(bx||bx===0){return this.animate(a0("hide",3),bx,bA,bz)}else{var bw,by,bv=0,e=this.length;for(;bv<e;bv++){bw=this[bv];if(bw.style){by=b.css(bw,"display");if(by!=="none"&&!b._data(bw,"olddisplay")){b._data(bw,"olddisplay",by)}}}for(bv=0;bv<e;bv++){if(this[bv].style){this[bv].style.display="none"}}return this}},_toggle:b.fn.toggle,toggle:function(bw,bv,bx){var e=typeof bw==="boolean";if(b.isFunction(bw)&&b.isFunction(bv)){this._toggle.apply(this,arguments)}else{if(bw==null||e){this.each(function(){var by=e?bw:b(this).is(":hidden");b(this)[by?"show":"hide"]()})}else{this.animate(a0("toggle",3),bw,bv,bx)}}return this},fadeTo:function(e,bx,bw,bv){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:bx},e,bw,bv)},animate:function(bz,bw,by,bx){var e=b.speed(bw,by,bx);if(b.isEmptyObject(bz)){return this.each(e.complete,[false])}bz=b.extend({},bz);function bv(){if(e.queue===false){b._mark(this)}var bE=b.extend({},e),bK=this.nodeType===1,bI=bK&&b(this).is(":hidden"),bB,bF,bD,bJ,bH,bC,bG,bL,bA;bE.animatedProperties={};for(bD in bz){bB=b.camelCase(bD);if(bD!==bB){bz[bB]=bz[bD];delete bz[bD]}bF=bz[bB];if(b.isArray(bF)){bE.animatedProperties[bB]=bF[1];bF=bz[bB]=bF[0]}else{bE.animatedProperties[bB]=bE.specialEasing&&bE.specialEasing[bB]||bE.easing||"swing"}if(bF==="hide"&&bI||bF==="show"&&!bI){return bE.complete.call(this)}if(bK&&(bB==="height"||bB==="width")){bE.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(b.css(this,"display")==="inline"&&b.css(this,"float")==="none"){if(!b.support.inlineBlockNeedsLayout||x(this.nodeName)==="inline"){this.style.display="inline-block"}else{this.style.zoom=1}}}}if(bE.overflow!=null){this.style.overflow="hidden"}for(bD in bz){bJ=new b.fx(this,bE,bD);bF=bz[bD];if(aB.test(bF)){bA=b._data(this,"toggle"+bD)||(bF==="toggle"?bI?"show":"hide":0);if(bA){b._data(this,"toggle"+bD,bA==="show"?"hide":"show");bJ[bA]()}else{bJ[bF]()}}else{bH=aT.exec(bF);bC=bJ.cur();if(bH){bG=parseFloat(bH[2]);bL=bH[3]||(b.cssNumber[bD]?"":"px");if(bL!=="px"){b.style(this,bD,(bG||1)+bL);bC=((bG||1)/bJ.cur())*bC;b.style(this,bD,bC+bL)}if(bH[1]){bG=((bH[1]==="-="?-1:1)*bG)+bC}bJ.custom(bC,bG,bL)}else{bJ.custom(bC,bF,"")}}}return true}return e.queue===false?this.each(bv):this.queue(e.queue,bv)},stop:function(bw,bv,e){if(typeof bw!=="string"){e=bv;bv=bw;bw=L}if(bv&&bw!==false){this.queue(bw||"fx",[])}return this.each(function(){var bx,by=false,bA=b.timers,bz=b._data(this);if(!e){b._unmark(true,this)}function bB(bE,bF,bD){var bC=bF[bD];b.removeData(bE,bD,true);bC.stop(e)}if(bw==null){for(bx in bz){if(bz[bx]&&bz[bx].stop&&bx.indexOf(".run")===bx.length-4){bB(this,bz,bx)}}}else{if(bz[bx=bw+".run"]&&bz[bx].stop){bB(this,bz,bx)}}for(bx=bA.length;bx--;){if(bA[bx].elem===this&&(bw==null||bA[bx].queue===bw)){if(e){bA[bx](true)}else{bA[bx].saveState()}by=true;bA.splice(bx,1)}}if(!(e&&by)){b.dequeue(this,bw)}})}});function bh(){setTimeout(at,0);return(a4=b.now())}function at(){a4=L}function a0(bv,e){var bw={};b.each(aH.concat.apply([],aH.slice(0,e)),function(){bw[this]=bv});return bw}b.each({slideDown:a0("show",1),slideUp:a0("hide",1),slideToggle:a0("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,bv){b.fn[e]=function(bw,by,bx){return this.animate(bv,bw,by,bx)}});b.extend({speed:function(bw,bx,bv){var e=bw&&typeof bw==="object"?b.extend({},bw):{complete:bv||!bv&&bx||b.isFunction(bw)&&bw,duration:bw,easing:bv&&bx||bx&&!b.isFunction(bx)&&bx};e.duration=b.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in b.fx.speeds?b.fx.speeds[e.duration]:b.fx.speeds._default;if(e.queue==null||e.queue===true){e.queue="fx"}e.old=e.complete;e.complete=function(by){if(b.isFunction(e.old)){e.old.call(this)}if(e.queue){b.dequeue(this,e.queue)}else{if(by!==false){b._unmark(this)}}};return e},easing:{linear:function(bw,bx,e,bv){return e+bv*bw},swing:function(bw,bx,e,bv){return((-Math.cos(bw*Math.PI)/2)+0.5)*bv+e}},timers:[],fx:function(bv,e,bw){this.options=e;this.elem=bv;this.prop=bw;e.orig=e.orig||{}}});b.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(b.fx.step[this.prop]||b.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var e,bv=b.css(this.elem,this.prop);return isNaN(e=parseFloat(bv))?!bv||bv==="auto"?0:bv:e},custom:function(bz,by,bx){var e=this,bw=b.fx;this.startTime=a4||bh();this.end=by;this.now=this.start=bz;this.pos=this.state=0;this.unit=bx||this.unit||(b.cssNumber[this.prop]?"":"px");function bv(bA){return e.step(bA)}bv.queue=this.options.queue;bv.elem=this.elem;bv.saveState=function(){if(e.options.hide&&b._data(e.elem,"fxshow"+e.prop)===L){b._data(e.elem,"fxshow"+e.prop,e.start)}};if(bv()&&b.timers.push(bv)&&!a3){a3=setInterval(bw.tick,bw.interval)}},show:function(){var e=b._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=e||b.style(this.elem,this.prop);this.options.show=true;if(e!==L){this.custom(this.cur(),e)}else{this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur())}b(this.elem).show()},hide:function(){this.options.orig[this.prop]=b._data(this.elem,"fxshow"+this.prop)||b.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(by){var bA,bB,bv,bx=a4||bh(),e=true,bz=this.elem,bw=this.options;if(by||bx>=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e<bv.length;e++){bw=bv[e];if(!bw()&&bv[e]===bw){bv.splice(e--,1)}}if(!bv.length){b.fx.stop()}},interval:13,stop:function(){clearInterval(a3);a3=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(e){b.style(e.elem,"opacity",e.now)},_default:function(e){if(e.elem.style&&e.elem.style[e.prop]!=null){e.elem.style[e.prop]=e.now+e.unit}else{e.elem[e.prop]=e.now}}}});b.each(["width","height"],function(e,bv){b.fx.step[bv]=function(bw){b.style(bw.elem,bv,Math.max(0,bw.now)+bw.unit)}});if(b.expr&&b.expr.filters){b.expr.filters.animated=function(e){return b.grep(b.timers,function(bv){return e===bv.elem}).length}}function x(bx){if(!Q[bx]){var e=av.body,bv=b("<"+bx+">").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! + * jQuery UI 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI + */ +(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h<j.length;h++){if(e.options[j[h][0]]){j[h][1].apply(e.element,f)}}}},contains:function(f,e){return document.compareDocumentPosition?f.compareDocumentPosition(e)&16:f!==e&&f.contains(e)},hasScroll:function(h,f){if(a(h).css("overflow")==="hidden"){return false}var e=(f&&f==="left")?"scrollLeft":"scrollTop",g=false;if(h[e]>0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! + * jQuery UI Widget 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ +(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! + * jQuery UI Mouse 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Mouse + * + * Depends: + * jquery.ui.widget.js + */ +(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g<l.length;g++){var j=c.trim(l[g]),e="ui-resizable-"+j;var h=c('<div class="ui-resizable-handle '+e+'"></div>');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(h<e.maxWidth){e.maxWidth=h}if(k<e.maxHeight){e.maxHeight=k}}this._vBoundaries=e},_updateCache:function(e){var f=this.options;this.offset=this.helper.offset();if(a(e.left)){this.position.left=e.left}if(a(e.top)){this.position.top=e.top}if(a(e.height)){this.size.height=e.height}if(a(e.width)){this.size.width=e.width}},_updateRatio:function(h,g){var i=this.options,j=this.position,f=this.size,e=this.axis;if(a(h.height)){h.width=(h.height*this.aspectRatio)}else{if(a(h.width)){h.height=(h.width/this.aspectRatio)}}if(e=="sw"){h.left=j.left+(f.width-h.width);h.top=null}if(e=="nw"){h.top=j.top+(f.height-h.height);h.left=j.left+(f.width-h.width)}return h},_respectSize:function(l,g){var j=this.helper,i=this._vBoundaries,r=this._aspectRatio||g.shiftKey,q=this.axis,t=a(l.width)&&i.maxWidth&&(i.maxWidth<l.width),m=a(l.height)&&i.maxHeight&&(i.maxHeight<l.height),h=a(l.width)&&i.minWidth&&(i.minWidth>l.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f<this._proportionallyResizeElements.length;f++){var h=this._proportionallyResizeElements[f];if(!this.borderDif){var e=[h.css("borderTopWidth"),h.css("borderRightWidth"),h.css("borderBottomWidth"),h.css("borderLeftWidth")],j=[h.css("paddingTop"),h.css("paddingRight"),h.css("paddingBottom"),h.css("paddingLeft")];this.borderDif=c.map(e,function(l,n){var m=parseInt(l,10)||0,o=parseInt(j[n],10)||0;return m+o})}if(c.browser.msie&&!(!(c(g).is(":hidden")||c(g).parents(":hidden").length))){continue}h.css({height:(g.height()-this.borderDif[0]-this.borderDif[2])||0,width:(g.width()-this.borderDif[1]-this.borderDif[3])||0})}},_renderProxy:function(){var f=this.element,i=this.options;this.elementOffset=f.offset();if(this._helper){this.helper=this.helper||c('<div style="overflow:hidden;"></div>');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! + * jQuery hashchange event - v1.3 - 7/21/2010 + * http://benalman.com/projects/jquery-hashchange-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);(function(c){var a=c.scrollTo=function(f,e,d){c(window).scrollTo(f,e,d)};a.defaults={axis:"xy",duration:parseFloat(c.fn.jquery)>=1.3?0:1};a.window=function(d){return c(window)._scrollable()};c.fn._scrollable=function(){return this.map(function(){var e=this,d=!e.nodeName||c.inArray(e.nodeName.toLowerCase(),["iframe","#document","html","body"])!=-1;if(!d){return e}var f=(e.contentWindow||e).document||e.ownerDocument||e;return c.browser.safari||f.compatMode=="BackCompat"?f.body:f.documentElement})};c.fn.scrollTo=function(f,e,d){if(typeof e=="object"){d=e;e=0}if(typeof d=="function"){d={onAfter:d}}if(f=="max"){f=9000000000}d=c.extend({},a.defaults,d);e=e||d.speed||d.duration;d.queue=d.queue&&d.axis.length>1;if(d.queue){e/=2}d.offset=b(d.offset);d.over=b(d.over);return this._scrollable().each(function(){var l=this,j=c(l),k=f,i,g={},m=j.is("html,body");switch(typeof k){case"number":case"string":if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(k)){k=b(k);break}k=c(k,this);case"object":if(k.is||k.style){i=(k=c(k)).offset()}}c.each(d.axis.split(""),function(q,r){var s=r=="x"?"Left":"Top",u=s.toLowerCase(),p="scroll"+s,o=l[p],n=a.max(l,r);if(i){g[p]=i[u]+(m?0:o-j.offset()[u]);if(d.margin){g[p]-=parseInt(k.css("margin"+s))||0;g[p]-=parseInt(k.css("border"+s+"Width"))||0}g[p]+=d.offset[u]||0;if(d.over[u]){g[p]+=k[r=="x"?"width":"height"]()*d.over[u]}}else{var t=k[u];g[p]=t.slice&&t.slice(-1)=="%"?parseFloat(t)/100*n:t}if(/^\d+$/.test(g[p])){g[p]=g[p]<=0?0:Math.min(g[p],n)}if(!q&&d.queue){if(o!=g[p]){h(d.onAfterFirst)}delete g[p]}});h(d.onAfter);function h(n){j.animate(g,e,d.easing,n&&function(){n.call(this,f,d)})}}).end()};a.max=function(j,i){var h=i=="x"?"Width":"Height",e="scroll"+h;if(!c(j).is("html,body")){return j[e]-c(j)[h.toLowerCase()]()}var g="client"+h,f=j.ownerDocument.documentElement,d=j.ownerDocument.body;return Math.max(f[e],d[e])-Math.min(f[g],d[g])};function b(d){return typeof d=="object"?d:{top:d,left:d}}})(jQuery);/*! + PowerTip - v1.2.0 - 2013-04-03 + http://stevenbenner.github.com/jquery-powertip/ + Copyright (c) 2013 Steven Benner (http://stevenbenner.com/). + Released under MIT license. + https://raw.github.com/stevenbenner/jquery-powertip/master/LICENSE.txt +*/ +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{a(jQuery)}}(function(k){var A=k(document),s=k(window),w=k("body");var n="displayController",e="hasActiveHover",d="forcedOpen",u="hasMouseMove",f="mouseOnToPopup",g="originalTitle",y="powertip",o="powertipjq",l="powertiptarget",E=180/Math.PI;var c={isTipOpen:false,isFixedTipOpen:false,isClosing:false,tipOpenImminent:false,activeHover:null,currentX:0,currentY:0,previousX:0,previousY:0,desyncTimeout:null,mouseTrackingActive:false,delayInProgress:false,windowWidth:0,windowHeight:0,scrollTop:0,scrollLeft:0};var p={none:0,top:1,bottom:2,left:4,right:8};k.fn.powerTip=function(F,N){if(!this.length){return this}if(k.type(F)==="string"&&k.powerTip[F]){return k.powerTip[F].call(this,this,N)}var O=k.extend({},k.fn.powerTip.defaults,F),G=new x(O);h();this.each(function M(){var R=k(this),Q=R.data(y),P=R.data(o),T=R.data(l),S;if(R.data(n)){k.powerTip.destroy(R)}S=R.attr("title");if(!Q&&!T&&!P&&S){R.data(y,S);R.data(g,S);R.removeAttr("title")}R.data(n,new t(R,O,G))});if(!O.manual){this.on({"mouseenter.powertip":function J(P){k.powerTip.show(this,P)},"mouseleave.powertip":function L(){k.powerTip.hide(this)},"focus.powertip":function K(){k.powerTip.show(this)},"blur.powertip":function H(){k.powerTip.hide(this,true)},"keydown.powertip":function I(P){if(P.keyCode===27){k.powerTip.hide(this,true)}}})}return this};k.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false};k.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};k.powerTip={show:function z(F,G){if(G){i(G);c.previousX=G.pageX;c.previousY=G.pageY;k(F).data(n).show()}else{k(F).first().data(n).show(true,true)}return F},reposition:function r(F){k(F).first().data(n).resetPosition();return F},hide:function D(G,F){if(G){k(G).first().data(n).hide(F)}else{if(c.activeHover){c.activeHover.data(n).hide(true)}}return G},destroy:function C(G){k(G).off(".powertip").each(function F(){var I=k(this),H=[g,n,e,d];if(I.data(g)){I.attr("title",I.data(g));H.push(y)}I.removeData(H)});return G}};k.powerTip.showTip=k.powerTip.show;k.powerTip.closeTip=k.powerTip.hide;function b(){var F=this;F.top="auto";F.left="auto";F.right="auto";F.bottom="auto";F.set=function(H,G){if(k.isNumeric(G)){F[H]=Math.round(G)}}}function t(K,N,F){var J=null;function L(P,Q){M();if(!K.data(e)){if(!P){c.tipOpenImminent=true;J=setTimeout(function O(){J=null;I()},N.intentPollInterval)}else{if(Q){K.data(d,true)}F.showTip(K)}}}function G(P){M();c.tipOpenImminent=false;if(K.data(e)){K.data(d,false);if(!P){c.delayInProgress=true;J=setTimeout(function O(){J=null;F.hideTip(K);c.delayInProgress=false},N.closeDelay)}else{F.hideTip(K)}}}function I(){var Q=Math.abs(c.previousX-c.currentX),O=Math.abs(c.previousY-c.currentY),P=Q+O;if(P<N.intentSensitivity){F.showTip(K)}else{c.previousX=c.currentX;c.previousY=c.currentY;L()}}function M(){J=clearTimeout(J);c.delayInProgress=false}function H(){F.resetPosition(K)}this.show=L;this.hide=G;this.cancel=M;this.resetPosition=H}function j(){function G(M,L,J,O,P){var K=L.split("-")[0],N=new b(),I;if(q(M)){I=H(M,K)}else{I=F(M,K)}switch(L){case"n":N.set("left",I.left-(J/2));N.set("bottom",c.windowHeight-I.top+P);break;case"e":N.set("left",I.left+P);N.set("top",I.top-(O/2));break;case"s":N.set("left",I.left-(J/2));N.set("top",I.top+P);break;case"w":N.set("top",I.top-(O/2));N.set("right",c.windowWidth-I.left+P);break;case"nw":N.set("bottom",c.windowHeight-I.top+P);N.set("right",c.windowWidth-I.left-20);break;case"nw-alt":N.set("left",I.left);N.set("bottom",c.windowHeight-I.top+P);break;case"ne":N.set("left",I.left-20);N.set("bottom",c.windowHeight-I.top+P);break;case"ne-alt":N.set("bottom",c.windowHeight-I.top+P);N.set("right",c.windowWidth-I.left);break;case"sw":N.set("top",I.top+P);N.set("right",c.windowWidth-I.left-20);break;case"sw-alt":N.set("left",I.left);N.set("top",I.top+P);break;case"se":N.set("left",I.left-20);N.set("top",I.top+P);break;case"se-alt":N.set("top",I.top+P);N.set("right",c.windowWidth-I.left);break}return N}function F(K,J){var O=K.offset(),N=K.outerWidth(),I=K.outerHeight(),M,L;switch(J){case"n":M=O.left+N/2;L=O.top;break;case"e":M=O.left+N;L=O.top+I/2;break;case"s":M=O.left+N/2;L=O.top+I;break;case"w":M=O.left;L=O.top+I/2;break;case"nw":M=O.left;L=O.top;break;case"ne":M=O.left+N;L=O.top;break;case"sw":M=O.left;L=O.top+I;break;case"se":M=O.left+N;L=O.top+I;break}return{top:L,left:M}}function H(O,K){var S=O.closest("svg")[0],N=O[0],W=S.createSVGPoint(),L=N.getBBox(),V=N.getScreenCTM(),M=L.width/2,Q=L.height/2,P=[],I=["nw","n","ne","e","se","s","sw","w"],U,X,R,T;function J(){P.push(W.matrixTransform(V))}W.x=L.x;W.y=L.y;J();W.x+=M;J();W.x+=M;J();W.y+=Q;J();W.y+=Q;J();W.x-=M;J();W.x-=M;J();W.y-=Q;J();if(P[0].y!==P[1].y||P[0].x!==P[7].x){X=Math.atan2(V.b,V.a)*E;R=Math.ceil(((X%360)-22.5)/45);if(R<1){R+=8}while(R--){I.push(I.shift())}}for(T=0;T<P.length;T++){if(I[T]===K){U=P[T];break}}return{top:U.y+c.scrollTop,left:U.x+c.scrollLeft}}this.compute=G}function x(Q){var P=new j(),O=k("#"+Q.popupId);if(O.length===0){O=k("<div/>",{id:Q.popupId});if(w.length===0){w=k("body")}w.append(O)}if(Q.followMouse){if(!O.data(u)){A.on("mousemove",M);s.on("scroll",M);O.data(u,true)}}if(Q.mouseOnToPopup){O.on({mouseenter:function L(){if(O.data(f)){if(c.activeHover){c.activeHover.data(n).cancel()}}},mouseleave:function N(){if(c.activeHover){c.activeHover.data(n).hide()}}})}function I(S){S.data(e,true);O.queue(function R(T){H(S);T()})}function H(S){var U;if(!S.data(e)){return}if(c.isTipOpen){if(!c.isClosing){K(c.activeHover)}O.delay(100).queue(function R(V){H(S);V()});return}S.trigger("powerTipPreRender");U=B(S);if(U){O.empty().append(U)}else{return}S.trigger("powerTipRender");c.activeHover=S;c.isTipOpen=true;O.data(f,Q.mouseOnToPopup);if(!Q.followMouse){G(S);c.isFixedTipOpen=true}else{M()}O.fadeIn(Q.fadeInTime,function T(){if(!c.desyncTimeout){c.desyncTimeout=setInterval(J,500)}S.trigger("powerTipOpen")})}function K(R){c.isClosing=true;c.activeHover=null;c.isTipOpen=false;c.desyncTimeout=clearInterval(c.desyncTimeout);R.data(e,false);R.data(d,false);O.fadeOut(Q.fadeOutTime,function S(){var T=new b();c.isClosing=false;c.isFixedTipOpen=false;O.removeClass();T.set("top",c.currentY+Q.offset);T.set("left",c.currentX+Q.offset);O.css(T);R.trigger("powerTipClose")})}function M(){if(!c.isFixedTipOpen&&(c.isTipOpen||(c.tipOpenImminent&&O.data(u)))){var R=O.outerWidth(),V=O.outerHeight(),U=new b(),S,T;U.set("top",c.currentY+Q.offset);U.set("left",c.currentX+Q.offset);S=m(U,R,V);if(S!==p.none){T=a(S);if(T===1){if(S===p.right){U.set("left",c.windowWidth-R)}else{if(S===p.bottom){U.set("top",c.scrollTop+c.windowHeight-V)}}}else{U.set("left",c.currentX-R-Q.offset);U.set("top",c.currentY-V-Q.offset)}}O.css(U)}}function G(S){var R,T;if(Q.smartPlacement){R=k.fn.powerTip.smartPlacementLists[Q.placement];k.each(R,function(U,W){var V=m(F(S,W),O.outerWidth(),O.outerHeight());T=W;if(V===p.none){return false}})}else{F(S,Q.placement);T=Q.placement}O.addClass(T)}function F(U,T){var R=0,S,W,V=new b();V.set("top",0);V.set("left",0);O.css(V);do{S=O.outerWidth();W=O.outerHeight();V=P.compute(U,T,S,W,Q.offset);O.css(V)}while(++R<=5&&(S!==O.outerWidth()||W!==O.outerHeight()));return V}function J(){var R=false;if(c.isTipOpen&&!c.isClosing&&!c.delayInProgress){if(c.activeHover.data(e)===false||c.activeHover.is(":disabled")){R=true}else{if(!v(c.activeHover)&&!c.activeHover.is(":focus")&&!c.activeHover.data(d)){if(O.data(f)){if(!v(O)){R=true}}else{R=true}}}if(R){K(c.activeHover)}}}this.showTip=I;this.hideTip=K;this.resetPosition=G}function q(F){return window.SVGElement&&F[0] instanceof SVGElement}function h(){if(!c.mouseTrackingActive){c.mouseTrackingActive=true;k(function H(){c.scrollLeft=s.scrollLeft();c.scrollTop=s.scrollTop();c.windowWidth=s.width();c.windowHeight=s.height()});A.on("mousemove",i);s.on({resize:function G(){c.windowWidth=s.width();c.windowHeight=s.height()},scroll:function F(){var I=s.scrollLeft(),J=s.scrollTop();if(I!==c.scrollLeft){c.currentX+=I-c.scrollLeft;c.scrollLeft=I}if(J!==c.scrollTop){c.currentY+=J-c.scrollTop;c.scrollTop=J}}})}}function i(F){c.currentX=F.pageX;c.currentY=F.pageY}function v(F){var H=F.offset(),J=F[0].getBoundingClientRect(),I=J.right-J.left,G=J.bottom-J.top;return c.currentX>=H.left&&c.currentX<=H.left+I&&c.currentY>=H.top&&c.currentY<=H.top+G}function B(I){var G=I.data(y),F=I.data(o),K=I.data(l),H,J;if(G){if(k.isFunction(G)){G=G.call(I[0])}J=G}else{if(F){if(k.isFunction(F)){F=F.call(I[0])}if(F.length>0){J=F.clone(true,true)}}else{if(K){H=k("#"+K);if(H.length>0){J=H.html()}}}}return J}function m(M,L,K){var G=c.scrollTop,J=c.scrollLeft,I=G+c.windowHeight,F=J+c.windowWidth,H=p.none;if(M.top<G||Math.abs(M.bottom-c.windowHeight)-K<G){H|=p.top}if(M.top+K>I||Math.abs(M.bottom-c.windowHeight)>I){H|=p.bottom}if(M.left<J||M.right+L>F){H|=p.left}if(M.left+L>F||M.right<J){H|=p.right}return H}function a(G){var F=0;while(G){G&=G-1;F++}return F}}));/*! + * jQuery UI Touch Punch 0.2.3 + * + * Copyright 2011–2014, Dave Furfero + * Dual licensed under the MIT or GPL Version 2 licenses. + * + * Depends: + * jquery.ui.widget.js + * jquery.ui.mouse.js + */ +(function(b){b.support.touch="ontouchend" in document;if(!b.support.touch){return}var d=b.ui.mouse.prototype,f=d._mouseInit,c=d._mouseDestroy,a;function e(h,i){if(h.originalEvent.touches.length>1){return}h.preventDefault();var j=h.originalEvent.changedTouches[0],g=document.createEvent("MouseEvents");g.initMouseEvent(i,true,true,window,1,j.screenX,j.screenY,j.clientX,j.clientY,false,false,false,false,0,null);h.target.dispatchEvent(g)}d._touchStart=function(h){var g=this;if(a||!g._mouseCapture(h.originalEvent.changedTouches[0])){return}a=true;g._touchMoved=false;e(h,"mouseover");e(h,"mousemove");e(h,"mousedown")};d._touchMove=function(g){if(!a){return}this._touchMoved=true;e(g,"mousemove")};d._touchEnd=function(g){if(!a){return}e(g,"mouseup");e(g,"mouseout");if(!this._touchMoved){e(g,"click")}a=false};d._mouseInit=function(){var g=this;g.element.bind({touchstart:b.proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});f.call(g)};d._mouseDestroy=function(){var g=this;g.element.unbind({touchstart:b.proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});c.call(g)}})(jQuery);/*! + * SmartMenus jQuery Plugin - v1.0.0 - January 27, 2016 + * http://www.smartmenus.org/ + * + * Copyright Vasil Dinkov, Vadikom Web Ltd. + * http://vadikom.com + * + * Licensed MIT + */ +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{if(typeof module==="object"&&typeof module.exports==="object"){module.exports=a(require("jquery"))}else{a(jQuery)}}}(function(a){var b=[],e=!!window.createPopup,f=false,d="ontouchstart" in window,h=false,g=window.requestAnimationFrame||function(l){return setTimeout(l,1000/60)},c=window.cancelAnimationFrame||function(l){clearTimeout(l)};function k(m){var n=".smartmenus_mouse";if(!h&&!m){var o=true,l=null;a(document).bind(i([["mousemove",function(s){var t={x:s.pageX,y:s.pageY,timeStamp:new Date().getTime()};if(l){var q=Math.abs(l.x-t.x),p=Math.abs(l.y-t.y);if((q>0||p>0)&&q<=2&&p<=2&&t.timeStamp-l.timeStamp<=300){f=true;if(o){var r=a(s.target).closest("a");if(r.is("a")){a.each(b,function(){if(a.contains(this.$root[0],r[0])){this.itemEnter({currentTarget:r[0]});return false}})}o=false}}}l=t}],[d?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut",function(p){if(j(p.originalEvent)){f=false}}]],n));h=true}else{if(h&&m){a(document).unbind(n);h=false}}}function j(l){return !/^(4|mouse)$/.test(l.pointerType)}function i(l,n){if(!n){n=""}var m={};a.each(l,function(o,p){m[p[0].split(" ").join(n+" ")+n]=p[1]});return m}a.SmartMenus=function(m,l){this.$root=a(m);this.opts=l;this.rootId="";this.accessIdPrefix="";this.$subArrow=null;this.activatedItems=[];this.visibleSubMenus=[];this.showTimeout=0;this.hideTimeout=0;this.scrollTimeout=0;this.clickActivated=false;this.focusActivated=false;this.zIndexInc=0;this.idInc=0;this.$firstLink=null;this.$firstSub=null;this.disabled=false;this.$disableOverlay=null;this.$touchScrollingSub=null;this.cssTransforms3d="perspective" in m.style||"webkitPerspective" in m.style;this.wasCollapsible=false;this.init()};a.extend(a.SmartMenus,{hideAll:function(){a.each(b,function(){this.menuHideAll()})},destroy:function(){while(b.length){b[0].destroy()}k(true)},prototype:{init:function(n){var l=this;if(!n){b.push(this);this.rootId=(new Date().getTime()+Math.random()+"").replace(/\D/g,"");this.accessIdPrefix="sm-"+this.rootId+"-";if(this.$root.hasClass("sm-rtl")){this.opts.rightToLeftSubMenus=true}var r=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).bind(i([["mouseover focusin",a.proxy(this.rootOver,this)],["mouseout focusout",a.proxy(this.rootOut,this)],["keydown",a.proxy(this.rootKeyDown,this)]],r)).delegate("a",i([["mouseenter",a.proxy(this.itemEnter,this)],["mouseleave",a.proxy(this.itemLeave,this)],["mousedown",a.proxy(this.itemDown,this)],["focus",a.proxy(this.itemFocus,this)],["blur",a.proxy(this.itemBlur,this)],["click",a.proxy(this.itemClick,this)]],r));r+=this.rootId;if(this.opts.hideOnClick){a(document).bind(i([["touchstart",a.proxy(this.docTouchStart,this)],["touchmove",a.proxy(this.docTouchMove,this)],["touchend",a.proxy(this.docTouchEnd,this)],["click",a.proxy(this.docClick,this)]],r))}a(window).bind(i([["resize orientationchange",a.proxy(this.winResize,this)]],r));if(this.opts.subIndicators){this.$subArrow=a("<span/>").addClass("sub-arrow");if(this.opts.subIndicatorsText){this.$subArrow.html(this.opts.subIndicatorsText)}}k()}this.$firstSub=this.$root.find("ul").each(function(){l.menuInit(a(this))}).eq(0);this.$firstLink=this.$root.find("a").eq(0);if(this.opts.markCurrentItem){var p=/(index|default)\.[^#\?\/]*/i,m=/#.*/,q=window.location.href.replace(p,""),o=q.replace(m,"");this.$root.find("a").each(function(){var s=this.href.replace(p,""),t=a(this);if(s==q||s==o){t.addClass("current");if(l.opts.markCurrentTree){t.parentsUntil("[data-smartmenus-id]","ul").each(function(){a(this).dataSM("parent-a").addClass("current")})}}})}this.wasCollapsible=this.isCollapsible()},destroy:function(m){if(!m){var n=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").unbind(n).undelegate(n);n+=this.rootId;a(document).unbind(n);a(window).unbind(n);if(this.opts.subIndicators){this.$subArrow=null}}this.menuHideAll();var l=this;this.$root.find("ul").each(function(){var o=a(this);if(o.dataSM("scroll-arrows")){o.dataSM("scroll-arrows").remove()}if(o.dataSM("shown-before")){if(l.opts.subMenusMinWidth||l.opts.subMenusMaxWidth){o.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap")}if(o.dataSM("scroll-arrows")){o.dataSM("scroll-arrows").remove()}o.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})}if((o.attr("id")||"").indexOf(l.accessIdPrefix)==0){o.removeAttr("id")}}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("ie-shim").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded");this.$root.find("a.has-submenu").each(function(){var o=a(this);if(o.attr("id").indexOf(l.accessIdPrefix)==0){o.removeAttr("id")}}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub");if(this.opts.subIndicators){this.$root.find("span.sub-arrow").remove()}if(this.opts.markCurrentItem){this.$root.find("a.current").removeClass("current")}if(!m){this.$root=null;this.$firstLink=null;this.$firstSub=null;if(this.$disableOverlay){this.$disableOverlay.remove();this.$disableOverlay=null}b.splice(a.inArray(this,b),1)}},disable:function(l){if(!this.disabled){this.menuHideAll();if(!l&&!this.opts.isPopup&&this.$root.is(":visible")){var m=this.$root.offset();this.$disableOverlay=a('<div class="sm-jquery-disable-overlay"/>').css({position:"absolute",top:m.top,left:m.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(true),opacity:0}).appendTo(document.body)}this.disabled=true}},docClick:function(l){if(this.$touchScrollingSub){this.$touchScrollingSub=null;return}if(this.visibleSubMenus.length&&!a.contains(this.$root[0],l.target)||a(l.target).is("a")){this.menuHideAll()}},docTouchEnd:function(m){if(!this.lastTouch){return}if(this.visibleSubMenus.length&&(this.lastTouch.x2===undefined||this.lastTouch.x1==this.lastTouch.x2)&&(this.lastTouch.y2===undefined||this.lastTouch.y1==this.lastTouch.y2)&&(!this.lastTouch.target||!a.contains(this.$root[0],this.lastTouch.target))){if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}var l=this;this.hideTimeout=setTimeout(function(){l.menuHideAll()},350)}this.lastTouch=null},docTouchMove:function(m){if(!this.lastTouch){return}var l=m.originalEvent.touches[0];this.lastTouch.x2=l.pageX;this.lastTouch.y2=l.pageY},docTouchStart:function(m){var l=m.originalEvent.touches[0];this.lastTouch={x1:l.pageX,y1:l.pageY,target:l.target}},enable:function(){if(this.disabled){if(this.$disableOverlay){this.$disableOverlay.remove();this.$disableOverlay=null}this.disabled=false}},getClosestMenu:function(m){var l=a(m).closest("ul");while(l.dataSM("in-mega")){l=l.parent().closest("ul")}return l[0]||null},getHeight:function(l){return this.getOffset(l,true)},getOffset:function(n,l){var m;if(n.css("display")=="none"){m={position:n[0].style.position,visibility:n[0].style.visibility};n.css({position:"absolute",visibility:"hidden"}).show()}var o=n[0].getBoundingClientRect&&n[0].getBoundingClientRect(),p=o&&(l?o.height||o.bottom-o.top:o.width||o.right-o.left);if(!p&&p!==0){p=l?n[0].offsetHeight:n[0].offsetWidth}if(m){n.hide().css(m)}return p},getStartZIndex:function(l){var m=parseInt(this[l?"$root":"$firstSub"].css("z-index"));if(!l&&isNaN(m)){m=parseInt(this.$root.css("z-index"))}return !isNaN(m)?m:1},getTouchPoint:function(l){return l.touches&&l.touches[0]||l.changedTouches&&l.changedTouches[0]||l},getViewport:function(l){var m=l?"Height":"Width",o=document.documentElement["client"+m],n=window["inner"+m];if(n){o=Math.min(o,n)}return o},getViewportHeight:function(){return this.getViewport(true)},getViewportWidth:function(){return this.getViewport()},getWidth:function(l){return this.getOffset(l)},handleEvents:function(){return !this.disabled&&this.isCSSOn()},handleItemEvents:function(l){return this.handleEvents()&&!this.isLinkInMegaMenu(l)},isCollapsible:function(){return this.$firstSub.css("position")=="static"},isCSSOn:function(){return this.$firstLink.css("display")=="block"},isFixed:function(){var l=this.$root.css("position")=="fixed";if(!l){this.$root.parentsUntil("body").each(function(){if(a(this).css("position")=="fixed"){l=true;return false}})}return l},isLinkInMegaMenu:function(l){return a(this.getClosestMenu(l[0])).hasClass("mega-menu")},isTouchMode:function(){return !f||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(p,l){var n=p.closest("ul"),q=n.dataSM("level");if(q>1&&(!this.activatedItems[q-2]||this.activatedItems[q-2][0]!=n.dataSM("parent-a")[0])){var m=this;a(n.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(n).each(function(){m.itemActivate(a(this).dataSM("parent-a"))})}if(!this.isCollapsible()||l){this.menuHideSubMenus(!this.activatedItems[q-1]||this.activatedItems[q-1][0]!=p[0]?q-1:q)}this.activatedItems[q-1]=p;if(this.$root.triggerHandler("activate.smapi",p[0])===false){return}var o=p.dataSM("sub");if(o&&(this.isTouchMode()||(!this.opts.showOnClick||this.clickActivated))){this.menuShow(o)}},itemBlur:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}this.$root.triggerHandler("blur.smapi",l[0])},itemClick:function(o){var n=a(o.currentTarget);if(!this.handleItemEvents(n)){return}if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==n.closest("ul")[0]){this.$touchScrollingSub=null;o.stopPropagation();return false}if(this.$root.triggerHandler("click.smapi",n[0])===false){return false}var p=a(o.target).is("span.sub-arrow"),m=n.dataSM("sub"),l=m?m.dataSM("level")==2:false;if(m&&!m.is(":visible")){if(this.opts.showOnClick&&l){this.clickActivated=true}this.itemActivate(n);if(m.is(":visible")){this.focusActivated=true;return false}}else{if(this.isCollapsible()&&p){this.itemActivate(n);this.menuHide(m);return false}}if(this.opts.showOnClick&&l||n.hasClass("disabled")||this.$root.triggerHandler("select.smapi",n[0])===false){return false}},itemDown:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}l.dataSM("mousedown",true)},itemEnter:function(n){var m=a(n.currentTarget);if(!this.handleItemEvents(m)){return}if(!this.isTouchMode()){if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}var l=this;this.showTimeout=setTimeout(function(){l.itemActivate(m)},this.opts.showOnClick&&m.closest("ul").dataSM("level")==1?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",m[0])},itemFocus:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}if(this.focusActivated&&(!this.isTouchMode()||!l.dataSM("mousedown"))&&(!this.activatedItems.length||this.activatedItems[this.activatedItems.length-1][0]!=l[0])){this.itemActivate(l,true)}this.$root.triggerHandler("focus.smapi",l[0])},itemLeave:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}if(!this.isTouchMode()){l[0].blur();if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}}l.removeDataSM("mousedown");this.$root.triggerHandler("mouseleave.smapi",l[0])},menuHide:function(m){if(this.$root.triggerHandler("beforehide.smapi",m[0])===false){return}m.stop(true,true);if(m.css("display")!="none"){var l=function(){m.css("z-index","")};if(this.isCollapsible()){if(this.opts.collapsibleHideFunction){this.opts.collapsibleHideFunction.call(this,m,l)}else{m.hide(this.opts.collapsibleHideDuration,l)}}else{if(this.opts.hideFunction){this.opts.hideFunction.call(this,m,l)}else{m.hide(this.opts.hideDuration,l)}}if(m.dataSM("ie-shim")){m.dataSM("ie-shim").remove().css({"-webkit-transform":"",transform:""})}if(m.dataSM("scroll")){this.menuScrollStop(m);m.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).unbind(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()}m.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false");m.attr({"aria-expanded":"false","aria-hidden":"true"});var n=m.dataSM("level");this.activatedItems.splice(n-1,1);this.visibleSubMenus.splice(a.inArray(m,this.visibleSubMenus),1);this.$root.triggerHandler("hide.smapi",m[0])}},menuHideAll:function(){if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}var m=this.opts.isPopup?1:0;for(var l=this.visibleSubMenus.length-1;l>=m;l--){this.menuHide(this.visibleSubMenus[l])}if(this.opts.isPopup){this.$root.stop(true,true);if(this.$root.is(":visible")){if(this.opts.hideFunction){this.opts.hideFunction.call(this,this.$root)}else{this.$root.hide(this.opts.hideDuration)}if(this.$root.dataSM("ie-shim")){this.$root.dataSM("ie-shim").remove()}}}this.activatedItems=[];this.visibleSubMenus=[];this.clickActivated=false;this.focusActivated=false;this.zIndexInc=0;this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(n){for(var l=this.activatedItems.length-1;l>=n;l--){var m=this.activatedItems[l].dataSM("sub");if(m){this.menuHide(m)}}},menuIframeShim:function(l){if(e&&this.opts.overlapControlsInIE&&!l.dataSM("ie-shim")){l.dataSM("ie-shim",a("<iframe/>").attr({src:"javascript:0",tabindex:-9}).css({position:"absolute",top:"auto",left:"0",opacity:0,border:"0"}))}},menuInit:function(l){if(!l.dataSM("in-mega")){if(l.hasClass("mega-menu")){l.find("ul").dataSM("in-mega",true)}var q=2,m=l[0];while((m=m.parentNode.parentNode)!=this.$root[0]){q++}var n=l.prevAll("a").eq(-1);if(!n.length){n=l.prevAll().find("a").eq(-1)}n.addClass("has-submenu").dataSM("sub",l);l.dataSM("parent-a",n).dataSM("level",q).parent().dataSM("sub",l);var o=n.attr("id")||this.accessIdPrefix+(++this.idInc),p=l.attr("id")||this.accessIdPrefix+(++this.idInc);n.attr({id:o,"aria-haspopup":"true","aria-controls":p,"aria-expanded":"false"});l.attr({id:p,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"});if(this.opts.subIndicators){n[this.opts.subIndicatorsPos](this.$subArrow.clone())}}},menuPosition:function(K){var r=K.dataSM("parent-a"),D=r.closest("li"),E=D.parent(),l=K.dataSM("level"),t=this.getWidth(K),J=this.getHeight(K),u=r.offset(),o=u.left,m=u.top,q=this.getWidth(r),F=this.getHeight(r),H=a(window),v=H.scrollLeft(),s=H.scrollTop(),z=this.getViewportWidth(),L=this.getViewportHeight(),w=E.parent().is("[data-sm-horizontal-sub]")||l==2&&!E.hasClass("sm-vertical"),B=this.opts.rightToLeftSubMenus&&!D.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&D.is("[data-sm-reverse]"),p=l==2?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,n=l==2?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY,C,A;if(w){C=B?q-t-p:p;A=this.opts.bottomToTopSubMenus?-J-n:F+n}else{C=B?p-t:q-p;A=this.opts.bottomToTopSubMenus?F-n-J:n}if(this.opts.keepInViewport){var N=o+C,M=m+A;if(B&&N<v){C=w?v-N+C:q-p}else{if(!B&&N+t>v+z){C=w?v+z-t-N+C:p-t}}if(!w){if(J<L&&M+J>s+L){A+=s+L-J-M}else{if(J>=L||M<s){A+=s-M}}}if(w&&(M+J>s+L+0.49||M<s)||!w&&J>L+0.49){var G=this;if(!K.dataSM("scroll-arrows")){K.dataSM("scroll-arrows",a([a('<span class="scroll-up"><span class="scroll-up-arrow"></span></span>')[0],a('<span class="scroll-down"><span class="scroll-down-arrow"></span></span>')[0]]).bind({mouseenter:function(){K.dataSM("scroll").up=a(this).hasClass("scroll-up");G.menuScroll(K)},mouseleave:function(x){G.menuScrollStop(K);G.menuScrollOut(K,x)},"mousewheel DOMMouseScroll":function(x){x.preventDefault()}}).insertAfter(K))}var I=".smartmenus_scroll";K.dataSM("scroll",{y:this.cssTransforms3d?0:A-F,step:1,itemH:F,subH:J,arrowDownH:this.getHeight(K.dataSM("scroll-arrows").eq(1))}).bind(i([["mouseover",function(x){G.menuScrollOver(K,x)}],["mouseout",function(x){G.menuScrollOut(K,x)}],["mousewheel DOMMouseScroll",function(x){G.menuScrollMousewheel(K,x)}]],I)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:C+(parseInt(K.css("border-left-width"))||0),width:t-(parseInt(K.css("border-left-width"))||0)-(parseInt(K.css("border-right-width"))||0),zIndex:K.css("z-index")}).eq(w&&this.opts.bottomToTopSubMenus?0:1).show();if(this.isFixed()){K.css({"touch-action":"none","-ms-touch-action":"none"}).bind(i([[d?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp",function(x){G.menuScrollTouch(K,x)}]],I))}}}K.css({top:"auto",left:"0",marginLeft:C,marginTop:A-F});this.menuIframeShim(K);if(K.dataSM("ie-shim")){K.dataSM("ie-shim").css({zIndex:K.css("z-index"),width:t,height:J,marginLeft:C,marginTop:A-F})}},menuScroll:function(r,m,n){var p=r.dataSM("scroll"),q=r.dataSM("scroll-arrows"),o=p.up?p.upEnd:p.downEnd,s;if(!m&&p.momentum){p.momentum*=0.92;s=p.momentum;if(s<0.5){this.menuScrollStop(r);return}}else{s=n||(m||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(p.step))}var l=r.dataSM("level");if(this.activatedItems[l-1]&&this.activatedItems[l-1].dataSM("sub")&&this.activatedItems[l-1].dataSM("sub").is(":visible")){this.menuHideSubMenus(l-1)}p.y=p.up&&o<=p.y||!p.up&&o>=p.y?p.y:(Math.abs(o-p.y)>s?p.y+(p.up?s:-s):o);r.add(r.dataSM("ie-shim")).css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+p.y+"px, 0)",transform:"translate3d(0, "+p.y+"px, 0)"}:{marginTop:p.y});if(f&&(p.up&&p.y>p.downEnd||!p.up&&p.y<p.upEnd)){q.eq(p.up?1:0).show()}if(p.y==o){if(f){q.eq(p.up?0:1).hide()}this.menuScrollStop(r)}else{if(!m){if(this.opts.scrollAccelerate&&p.step<this.opts.scrollStep){p.step+=0.2}var t=this;this.scrollTimeout=g(function(){t.menuScroll(r)})}}},menuScrollMousewheel:function(m,n){if(this.getClosestMenu(n.target)==m[0]){n=n.originalEvent;var l=(n.wheelDelta||-n.detail)>0;if(m.dataSM("scroll-arrows").eq(l?0:1).is(":visible")){m.dataSM("scroll").up=l;this.menuScroll(m,true)}}n.preventDefault()},menuScrollOut:function(l,m){if(f){if(!/^scroll-(up|down)/.test((m.relatedTarget||"").className)&&(l[0]!=m.relatedTarget&&!a.contains(l[0],m.relatedTarget)||this.getClosestMenu(m.relatedTarget)!=l[0])){l.dataSM("scroll-arrows").css("visibility","hidden")}}},menuScrollOver:function(n,o){if(f){if(!/^scroll-(up|down)/.test(o.target.className)&&this.getClosestMenu(o.target)==n[0]){this.menuScrollRefreshData(n);var m=n.dataSM("scroll"),l=a(window).scrollTop()-n.dataSM("parent-a").offset().top-m.itemH;n.dataSM("scroll-arrows").eq(0).css("margin-top",l).end().eq(1).css("margin-top",l+this.getViewportHeight()-m.arrowDownH).end().css("visibility","visible")}}},menuScrollRefreshData:function(n){var m=n.dataSM("scroll"),l=a(window).scrollTop()-n.dataSM("parent-a").offset().top-m.itemH;if(this.cssTransforms3d){l=-(parseFloat(n.css("margin-top"))-l)}a.extend(m,{upEnd:l,downEnd:l+this.getViewportHeight()-m.subH})},menuScrollStop:function(l){if(this.scrollTimeout){c(this.scrollTimeout);this.scrollTimeout=0;l.dataSM("scroll").step=1;return true}},menuScrollTouch:function(p,q){q=q.originalEvent;if(j(q)){var m=this.getTouchPoint(q);if(this.getClosestMenu(m.target)==p[0]){var o=p.dataSM("scroll");if(/(start|down)$/i.test(q.type)){if(this.menuScrollStop(p)){q.preventDefault();this.$touchScrollingSub=p}else{this.$touchScrollingSub=null}this.menuScrollRefreshData(p);a.extend(o,{touchStartY:m.pageY,touchStartTime:q.timeStamp})}else{if(/move$/i.test(q.type)){var n=o.touchY!==undefined?o.touchY:o.touchStartY;if(n!==undefined&&n!=m.pageY){this.$touchScrollingSub=p;var l=n<m.pageY;if(o.up!==undefined&&o.up!=l){a.extend(o,{touchStartY:m.pageY,touchStartTime:q.timeStamp})}a.extend(o,{up:l,touchY:m.pageY});this.menuScroll(p,true,Math.abs(m.pageY-n))}q.preventDefault()}else{if(o.touchY!==undefined){if(o.momentum=Math.pow(Math.abs(m.pageY-o.touchStartY)/(q.timeStamp-o.touchStartTime),2)*15){this.menuScrollStop(p);this.menuScroll(p);q.preventDefault()}delete o.touchY}}}}}},menuShow:function(n){if(!n.dataSM("beforefirstshowfired")){n.dataSM("beforefirstshowfired",true);if(this.$root.triggerHandler("beforefirstshow.smapi",n[0])===false){return}}if(this.$root.triggerHandler("beforeshow.smapi",n[0])===false){return}n.dataSM("shown-before",true).stop(true,true);if(!n.is(":visible")){var m=n.dataSM("parent-a");if(this.opts.keepHighlighted||this.isCollapsible()){m.addClass("highlighted")}if(this.isCollapsible()){n.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""})}else{n.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1);if(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth){n.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap");if(this.opts.subMenusMinWidth){n.css("min-width",this.opts.subMenusMinWidth)}if(this.opts.subMenusMaxWidth){var o=this.getWidth(n);n.css("max-width",this.opts.subMenusMaxWidth);if(o>this.getWidth(n)){n.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}}}this.menuPosition(n);if(n.dataSM("ie-shim")){n.dataSM("ie-shim").insertBefore(n)}}var l=function(){n.css("overflow","")};if(this.isCollapsible()){if(this.opts.collapsibleShowFunction){this.opts.collapsibleShowFunction.call(this,n,l)}else{n.show(this.opts.collapsibleShowDuration,l)}}else{if(this.opts.showFunction){this.opts.showFunction.call(this,n,l)}else{n.show(this.opts.showDuration,l)}}m.attr("aria-expanded","true");n.attr({"aria-expanded":"true","aria-hidden":"false"});this.visibleSubMenus.push(n);this.$root.triggerHandler("show.smapi",n[0])}},popupHide:function(l){if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}var m=this;this.hideTimeout=setTimeout(function(){m.menuHideAll()},l?1:this.opts.hideTimeout)},popupShow:function(o,n){if(!this.opts.isPopup){alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.');return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}this.$root.dataSM("shown-before",true).stop(true,true);if(!this.$root.is(":visible")){this.$root.css({left:o,top:n});this.menuIframeShim(this.$root);if(this.$root.dataSM("ie-shim")){this.$root.dataSM("ie-shim").css({zIndex:this.$root.css("z-index"),width:this.getWidth(this.$root),height:this.getHeight(this.$root),left:o,top:n}).insertBefore(this.$root)}var m=this,l=function(){m.$root.css("overflow","")};if(this.opts.showFunction){this.opts.showFunction.call(this,this.$root,l)}else{this.$root.show(this.opts.showDuration,l)}this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(true);this.init(true)},rootKeyDown:function(o){if(!this.handleEvents()){return}switch(o.keyCode){case 27:var m=this.activatedItems[0];if(m){this.menuHideAll();m[0].focus();var n=m.dataSM("sub");if(n){this.menuHide(n)}}break;case 32:var l=a(o.target);if(l.is("a")&&this.handleItemEvents(l)){var n=l.dataSM("sub");if(n&&!n.is(":visible")){this.itemClick({currentTarget:o.target});o.preventDefault()}}break}},rootOut:function(m){if(!this.handleEvents()||this.isTouchMode()||m.target==this.$root[0]){return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}if(!this.opts.showOnClick||!this.opts.hideOnClick){var l=this;this.hideTimeout=setTimeout(function(){l.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(l){if(!this.handleEvents()||this.isTouchMode()||l.target==this.$root[0]){return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}},winResize:function(m){if(!this.handleEvents()){if(this.$disableOverlay){var n=this.$root.offset();this.$disableOverlay.css({top:n.top,left:n.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}return}if(!("onorientationchange" in window)||m.type=="orientationchange"){var l=this.isCollapsible();if(!(this.wasCollapsible&&l)){if(this.activatedItems.length){this.activatedItems[this.activatedItems.length-1][0].blur()}this.menuHideAll()}this.wasCollapsible=l}}}});a.fn.dataSM=function(l,m){if(m){return this.data(l+"_smartmenus",m)}return this.data(l+"_smartmenus")};a.fn.removeDataSM=function(l){return this.removeData(l+"_smartmenus")};a.fn.smartmenus=function(m){if(typeof m=="string"){var l=arguments,o=m;Array.prototype.shift.call(l);return this.each(function(){var p=a(this).data("smartmenus");if(p&&p[o]){p[o].apply(p,l)}})}var n=a.extend({},a.fn.smartmenus.defaults,m);return this.each(function(){new a.SmartMenus(this,n)})};a.fn.smartmenus.defaults={isPopup:false,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:true,subIndicatorsPos:"prepend",subIndicatorsText:"+",scrollStep:30,scrollAccelerate:true,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(m,l){m.fadeOut(200,l)},collapsibleShowDuration:0,collapsibleShowFunction:function(m,l){m.slideDown(200,l)},collapsibleHideDuration:0,collapsibleHideFunction:function(m,l){m.slideUp(200,l)},showOnClick:false,hideOnClick:true,noMouseOver:false,keepInViewport:true,keepHighlighted:true,markCurrentItem:false,markCurrentTree:true,rightToLeftSubMenus:false,bottomToTopSubMenus:false,overlapControlsInIE:true};return a})); \ No newline at end of file diff --git a/Doc/MIS/html/menu.js b/Doc/MIS/html/menu.js new file mode 100644 index 0000000000000000000000000000000000000000..97db4c2392278bf9ddbdff3e8d05ac757cb06db9 --- /dev/null +++ b/Doc/MIS/html/menu.js @@ -0,0 +1,26 @@ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+='<ul>'; + for (var i in data.children) { + result+='<li><a href="'+relPath+data.children[i].url+'">'+ + data.children[i].text+'</a>'+ + makeTree(data.children[i],relPath)+'</li>'; + } + result+='</ul>'; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.png" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>'); + } else { + $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.png" alt=""/></a></span></div></li>'); + } + } + $('#main-menu').smartmenus(); +} diff --git a/Doc/MIS/html/menudata.js b/Doc/MIS/html/menudata.js new file mode 100644 index 0000000000000000000000000000000000000000..b97b5f63aa270b31436bcef7126a3e7c651c4084 --- /dev/null +++ b/Doc/MIS/html/menudata.js @@ -0,0 +1,64 @@ +var menudata={children:[ +{text:'Main Page',url:'index.html'}, +{text:'Packages',url:'namespaces.html',children:[ +{text:'Packages',url:'namespaces.html'}, +{text:'Package Functions',url:'namespacemembers.html',children:[ +{text:'All',url:'namespacemembers.html'}, +{text:'Enumerations',url:'namespacemembers_enum.html'}]}]}, +{text:'Classes',url:'annotated.html',children:[ +{text:'Class List',url:'annotated.html'}, +{text:'Class Index',url:'classes.html'}, +{text:'Class Hierarchy',url:'hierarchy.html'}, +{text:'Class Members',url:'functions.html',children:[ +{text:'All',url:'functions.html',children:[ +{text:'a',url:'functions.html#index_a'}, +{text:'b',url:'functions.html#index_b'}, +{text:'c',url:'functions.html#index_c'}, +{text:'d',url:'functions.html#index_d'}, +{text:'e',url:'functions.html#index_e'}, +{text:'f',url:'functions.html#index_f'}, +{text:'g',url:'functions.html#index_g'}, +{text:'h',url:'functions.html#index_h'}, +{text:'i',url:'functions.html#index_i'}, +{text:'l',url:'functions.html#index_l'}, +{text:'m',url:'functions.html#index_m'}, +{text:'n',url:'functions.html#index_n'}, +{text:'o',url:'functions.html#index_o'}, +{text:'p',url:'functions.html#index_p'}, +{text:'r',url:'functions.html#index_r'}, +{text:'s',url:'functions.html#index_s'}, +{text:'u',url:'functions.html#index_u'}, +{text:'w',url:'functions.html#index_w'}]}, +{text:'Functions',url:'functions_func.html',children:[ +{text:'a',url:'functions_func.html#index_a'}, +{text:'b',url:'functions_func.html#index_b'}, +{text:'d',url:'functions_func.html#index_d'}, +{text:'e',url:'functions_func.html#index_e'}, +{text:'f',url:'functions_func.html#index_f'}, +{text:'g',url:'functions_func.html#index_g'}, +{text:'h',url:'functions_func.html#index_h'}, +{text:'i',url:'functions_func.html#index_i'}, +{text:'l',url:'functions_func.html#index_l'}, +{text:'m',url:'functions_func.html#index_m'}, +{text:'n',url:'functions_func.html#index_n'}, +{text:'o',url:'functions_func.html#index_o'}, +{text:'p',url:'functions_func.html#index_p'}, +{text:'s',url:'functions_func.html#index_s'}, +{text:'u',url:'functions_func.html#index_u'}, +{text:'w',url:'functions_func.html#index_w'}]}, +{text:'Properties',url:'functions_prop.html',children:[ +{text:'a',url:'functions_prop.html#index_a'}, +{text:'b',url:'functions_prop.html#index_b'}, +{text:'c',url:'functions_prop.html#index_c'}, +{text:'d',url:'functions_prop.html#index_d'}, +{text:'e',url:'functions_prop.html#index_e'}, +{text:'h',url:'functions_prop.html#index_h'}, +{text:'i',url:'functions_prop.html#index_i'}, +{text:'l',url:'functions_prop.html#index_l'}, +{text:'m',url:'functions_prop.html#index_m'}, +{text:'n',url:'functions_prop.html#index_n'}, +{text:'p',url:'functions_prop.html#index_p'}, +{text:'r',url:'functions_prop.html#index_r'}, +{text:'s',url:'functions_prop.html#index_s'}, +{text:'u',url:'functions_prop.html#index_u'}, +{text:'w',url:'functions_prop.html#index_w'}]}]}]}]} diff --git a/Doc/MIS/html/namespace_blaze___brigade.html b/Doc/MIS/html/namespace_blaze___brigade.html new file mode 100644 index 0000000000000000000000000000000000000000..a3bc4deda9bddfb9951657c70f7d755516e71919 --- /dev/null +++ b/Doc/MIS/html/namespace_blaze___brigade.html @@ -0,0 +1,107 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Blaze_Brigade Namespace Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespace_blaze___brigade.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#nested-classes">Classes</a> </div> + <div class="headertitle"> +<div class="title">Blaze_Brigade Namespace Reference</div> </div> +</div><!--header--> +<div class="contents"> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> +Classes</h2></td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><b>Resource1</b></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">A strongly-typed resource class, for looking up localized strings, etc. <br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +</table> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_blaze___brigade.html">Blaze_Brigade</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespace_controller.html b/Doc/MIS/html/namespace_controller.html new file mode 100644 index 0000000000000000000000000000000000000000..bcbcd24af1ccdabd87616b8bce709a7bfe073ab2 --- /dev/null +++ b/Doc/MIS/html/namespace_controller.html @@ -0,0 +1,118 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Controller Namespace Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespace_controller.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#nested-classes">Classes</a> </div> + <div class="headertitle"> +<div class="title">Controller Namespace Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The controller in MVC. These classes will control how the <a class="el" href="namespace_model.html" title="The model in MVC. These classes contain the structure of the game, and will be controlled by Controll...">Model</a> is used, and how the <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a> will be displayed to the user. +<a href="#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> +Classes</h2></td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game.html">Game</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Main <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a> for game <a href="class_controller_1_1_game.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_game_function.html">GameFunction</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Contains functions pertaining to the general game. <a href="class_controller_1_1_game_function.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_controller_1_1_mouse_handler.html">MouseHandler</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Handles all user mouse input. <a href="class_controller_1_1_mouse_handler.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The controller in MVC. These classes will control how the <a class="el" href="namespace_model.html" title="The model in MVC. These classes contain the structure of the game, and will be controlled by Controll...">Model</a> is used, and how the <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a> will be displayed to the user. </p> +</div></div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_controller.html">Controller</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespace_controller.js b/Doc/MIS/html/namespace_controller.js new file mode 100644 index 0000000000000000000000000000000000000000..a8a01a4597a3fc66b6380f449e0942bba7f3a332 --- /dev/null +++ b/Doc/MIS/html/namespace_controller.js @@ -0,0 +1,6 @@ +var namespace_controller = +[ + [ "Game", "class_controller_1_1_game.html", "class_controller_1_1_game" ], + [ "GameFunction", "class_controller_1_1_game_function.html", "class_controller_1_1_game_function" ], + [ "MouseHandler", "class_controller_1_1_mouse_handler.html", "class_controller_1_1_mouse_handler" ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/namespace_model.html b/Doc/MIS/html/namespace_model.html new file mode 100644 index 0000000000000000000000000000000000000000..132baec20f9fdae3425fe57bbf5a75e2cc3197d1 --- /dev/null +++ b/Doc/MIS/html/namespace_model.html @@ -0,0 +1,211 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Model Namespace Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespace_model.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#nested-classes">Classes</a> | +<a href="#enum-members">Enumerations</a> </div> + <div class="headertitle"> +<div class="title">Model Namespace Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The model in MVC. These classes contain the structure of the game, and will be controlled by <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a>, and displayed in <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a>. +<a href="#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> +Classes</h2></td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_archer.html">Archer</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. <a href="class_model_1_1_archer.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_bronze_bow.html">BronzeBow</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Ranged physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. <a href="class_model_1_1_bronze_bow.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_bronze_sword.html">BronzeSword</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Melee Physical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. <a href="class_model_1_1_bronze_sword.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_damage_calculations.html">DamageCalculations</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">This class calculates all damage related calculations <a href="class_model_1_1_damage_calculations.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_fireball.html">Fireball</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Ranged Magical <a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a>. <a href="class_model_1_1_fireball.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_game_state.html">GameState</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">This class holds states in the scope of the entire gameplay <a href="class_model_1_1_game_state.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_graph.html">Graph</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Structure that represents the game map. <a href="class_model_1_1_graph.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_mage.html">Mage</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> <br /> + This <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats <a href="class_model_1_1_mage.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_node.html">Node</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Structure that represents a tile on the game map grid. <a href="class_model_1_1_node.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_player.html">Player</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Represents a <a class="el" href="class_model_1_1_player.html" title="Represents a Player in the game. ">Player</a> in the game. <a href="class_model_1_1_player.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_unit.html">Unit</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> Interface for <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a>, <a class="el" href="class_model_1_1_mage.html" title="The Mage model class, extends Unit This Unit has strong magical capabilities, and is capable of pow...">Mage</a>, and <a class="el" href="class_model_1_1_archer.html" title="The Warrior model class, extends Unit This unit has a high skill and speed, and excels in dealing acc...">Archer</a> <a href="interface_model_1_1_unit.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_model_1_1_warrior.html">Warrior</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The <a class="el" href="class_model_1_1_warrior.html" title="The Warrior model class, extends Unit This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance ">Warrior</a> model class, extends <a class="el" href="interface_model_1_1_unit.html" title="Unit Interface for Warrior, Mage, and Archer ">Unit</a> This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance <a href="class_model_1_1_warrior.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interface_model_1_1_weapon.html">Weapon</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="interface_model_1_1_weapon.html" title="Weapon Interface to be implemented when creating new weapons. ">Weapon</a> Interface to be implemented when creating new weapons. <a href="interface_model_1_1_weapon.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="enum-members"></a> +Enumerations</h2></td></tr> +<tr class="memitem:a37db30f781c99ca4eb226b512958bded"><td class="memItemLeft" align="right" valign="top"><a id="a37db30f781c99ca4eb226b512958bded"></a>enum  </td><td class="memItemRight" valign="bottom"><b>GameMenuState</b> { <br /> +  <b>MainMenu</b>, +<b>HowToPlay</b>, +<b>HowToPlay2</b>, +<b>HowToPlay3</b>, +<br /> +  <b>Playing</b>, +<b>DropDownMenu</b>, +<b>CharMenu</b>, +<b>AttackMenu</b> +<br /> + }</td></tr> +<tr class="separator:a37db30f781c99ca4eb226b512958bded"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:abc9786019e8deab9844b28c3d9c58f86"><td class="memItemLeft" align="right" valign="top"><a id="abc9786019e8deab9844b28c3d9c58f86"></a>enum  </td><td class="memItemRight" valign="bottom"><b>TurnState</b> { <br /> +  <b>Wait</b>, +<b>AttackMenu</b>, +<b>Attack</b>, +<b>Move</b>, +<br /> +  <b>Items</b> +<br /> + }</td></tr> +<tr class="separator:abc9786019e8deab9844b28c3d9c58f86"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a68c359d1437f179951c3fe1315410fcf"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">UnitType</a> { <b>Warrior</b>, +<b>Archer</b>, +<b>Mage</b> + }</td></tr> +<tr class="separator:a68c359d1437f179951c3fe1315410fcf"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a8329f3bbd64a8419caf4bce32c1478e3"><td class="memItemLeft" align="right" valign="top"><a id="a8329f3bbd64a8419caf4bce32c1478e3"></a>enum  </td><td class="memItemRight" valign="bottom"><b>Direction</b> { <b>Down</b>, +<b>Left</b>, +<b>Right</b>, +<b>Up</b> + }</td></tr> +<tr class="separator:a8329f3bbd64a8419caf4bce32c1478e3"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The model in MVC. These classes contain the structure of the game, and will be controlled by <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a>, and displayed in <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a>. </p> +</div><h2 class="groupheader">Enumeration Type Documentation</h2> +<a id="a68c359d1437f179951c3fe1315410fcf"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a68c359d1437f179951c3fe1315410fcf">§ </a></span>UnitType</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">Model.UnitType</a></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">strong</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>defines the possible classes of a unit </p> + +</div> +</div> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_model.html">Model</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespace_model.js b/Doc/MIS/html/namespace_model.js new file mode 100644 index 0000000000000000000000000000000000000000..b8697966bae782de58cd50483ca812b4c0606bf8 --- /dev/null +++ b/Doc/MIS/html/namespace_model.js @@ -0,0 +1,16 @@ +var namespace_model = +[ + [ "Archer", "class_model_1_1_archer.html", "class_model_1_1_archer" ], + [ "BronzeBow", "class_model_1_1_bronze_bow.html", "class_model_1_1_bronze_bow" ], + [ "BronzeSword", "class_model_1_1_bronze_sword.html", "class_model_1_1_bronze_sword" ], + [ "DamageCalculations", "class_model_1_1_damage_calculations.html", "class_model_1_1_damage_calculations" ], + [ "Fireball", "class_model_1_1_fireball.html", "class_model_1_1_fireball" ], + [ "GameState", "class_model_1_1_game_state.html", "class_model_1_1_game_state" ], + [ "Graph", "class_model_1_1_graph.html", "class_model_1_1_graph" ], + [ "Mage", "class_model_1_1_mage.html", "class_model_1_1_mage" ], + [ "Node", "class_model_1_1_node.html", "class_model_1_1_node" ], + [ "Player", "class_model_1_1_player.html", "class_model_1_1_player" ], + [ "Unit", "interface_model_1_1_unit.html", "interface_model_1_1_unit" ], + [ "Warrior", "class_model_1_1_warrior.html", "class_model_1_1_warrior" ], + [ "Weapon", "interface_model_1_1_weapon.html", "interface_model_1_1_weapon" ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/namespace_view.html b/Doc/MIS/html/namespace_view.html new file mode 100644 index 0000000000000000000000000000000000000000..af6980a6b989c5b7aac5c6d29f6823f66caa6f4e --- /dev/null +++ b/Doc/MIS/html/namespace_view.html @@ -0,0 +1,162 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: View Namespace Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespace_view.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="summary"> +<a href="#nested-classes">Classes</a> | +<a href="#enum-members">Enumerations</a> </div> + <div class="headertitle"> +<div class="title">View Namespace Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>The view in MVC. These classes deal with the view that the user sees in the game. +<a href="#details">More...</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> +Classes</h2></td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_button.html">Button</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Buttons for the drop down menu buttons when selecting units <a href="class_view_1_1_button.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play.html">HowToPlay</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">How to Play Menu <a href="class_view_1_1_how_to_play.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play2.html">HowToPlay2</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">How to Play Menu 2 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu <a href="class_view_1_1_how_to_play2.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_how_to_play3.html">HowToPlay3</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">How to Play Menu 3 is opened with next is clicked on <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> Menu 2 <a href="class_view_1_1_how_to_play3.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_view_1_1_main_menu.html">MainMenu</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The Main Menu class. This window is displayed upon starting game, and can link you to <a class="el" href="class_view_1_1_how_to_play.html" title="How to Play Menu ">HowToPlay</a> playing the Game. <a href="class_view_1_1_main_menu.html#details">More...</a><br /></td></tr> +<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr> +</table><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="enum-members"></a> +Enumerations</h2></td></tr> +<tr class="memitem:a422668be256dfc045dfa818cfd90a99e"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">ButtonType</a> { <br /> +  <b>Attack</b>, +<b>AttackConfirm</b>, +<b>Move</b>, +<b>Items</b>, +<br /> +  <b>Wait</b> +<br /> + }</td></tr> +<tr class="separator:a422668be256dfc045dfa818cfd90a99e"><td class="memSeparator" colspan="2"> </td></tr> +</table> +<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> +<div class="textblock"><p>The view in MVC. These classes deal with the view that the user sees in the game. </p> +</div><h2 class="groupheader">Enumeration Type Documentation</h2> +<a id="a422668be256dfc045dfa818cfd90a99e"></a> +<h2 class="memtitle"><span class="permalink"><a href="#a422668be256dfc045dfa818cfd90a99e">§ </a></span>ButtonType</h2> + +<div class="memitem"> +<div class="memproto"> +<table class="mlabels"> + <tr> + <td class="mlabels-left"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">View.ButtonType</a></td> + </tr> + </table> + </td> + <td class="mlabels-right"> +<span class="mlabels"><span class="mlabel">strong</span></span> </td> + </tr> +</table> +</div><div class="memdoc"> +<p>Enumerated list for the possible button types </p> + +</div> +</div> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="navelem"><a class="el" href="namespace_view.html">View</a></li> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespace_view.js b/Doc/MIS/html/namespace_view.js new file mode 100644 index 0000000000000000000000000000000000000000..099097f6ce3f710d42c3159cb3449c0d8a8fc2e2 --- /dev/null +++ b/Doc/MIS/html/namespace_view.js @@ -0,0 +1,8 @@ +var namespace_view = +[ + [ "Button", "class_view_1_1_button.html", "class_view_1_1_button" ], + [ "HowToPlay", "class_view_1_1_how_to_play.html", "class_view_1_1_how_to_play" ], + [ "HowToPlay2", "class_view_1_1_how_to_play2.html", "class_view_1_1_how_to_play2" ], + [ "HowToPlay3", "class_view_1_1_how_to_play3.html", "class_view_1_1_how_to_play3" ], + [ "MainMenu", "class_view_1_1_main_menu.html", "class_view_1_1_main_menu" ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/namespacemembers.html b/Doc/MIS/html/namespacemembers.html new file mode 100644 index 0000000000000000000000000000000000000000..b649b9ace5c765a015ed8afbc894cc8edc776282 --- /dev/null +++ b/Doc/MIS/html/namespacemembers.html @@ -0,0 +1,101 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Package Functions</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespacemembers.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +<div class="textblock">Here is a list of all documented namespace members with links to the namespaces they belong to:</div><ul> +<li>ButtonType +: <a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">View</a> +</li> +<li>UnitType +: <a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">Model</a> +</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespacemembers_enum.html b/Doc/MIS/html/namespacemembers_enum.html new file mode 100644 index 0000000000000000000000000000000000000000..7a2e2b40ab43cde22994f53266391f9f5f7909cc --- /dev/null +++ b/Doc/MIS/html/namespacemembers_enum.html @@ -0,0 +1,101 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Package Functions</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespacemembers_enum.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> + <ul> +<li>ButtonType +: <a class="el" href="namespace_view.html#a422668be256dfc045dfa818cfd90a99e">View</a> +</li> +<li>UnitType +: <a class="el" href="namespace_model.html#a68c359d1437f179951c3fe1315410fcf">Model</a> +</li> +</ul> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespaces.html b/Doc/MIS/html/namespaces.html new file mode 100644 index 0000000000000000000000000000000000000000..8e50db962fa00128a53374e66371a4ff63c34773 --- /dev/null +++ b/Doc/MIS/html/namespaces.html @@ -0,0 +1,105 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<meta name="viewport" content="width=device-width, initial-scale=1"/> +<title>Blaze Brigade: Packages</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="navtree.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="resize.js"></script> +<script type="text/javascript" src="navtreedata.js"></script> +<script type="text/javascript" src="navtree.js"></script> +<script type="text/javascript"> + $(document).ready(initResizable); +</script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/searchdata.js"></script> +<script type="text/javascript" src="search/search.js"></script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td id="projectalign" style="padding-left: 0.5em;"> + <div id="projectname">Blaze Brigade + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.12 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> +<script type="text/javascript" src="menudata.js"></script> +<script type="text/javascript" src="menu.js"></script> +<script type="text/javascript"> +$(function() { + initMenu('',true,false,'search.php','Search'); + $(document).ready(function() { init_search(); }); +}); +</script> +<div id="main-nav"></div> +</div><!-- top --> +<div id="side-nav" class="ui-resizable side-nav-resizable"> + <div id="nav-tree"> + <div id="nav-tree-contents"> + <div id="nav-sync" class="sync"></div> + </div> + </div> + <div id="splitbar" style="-moz-user-select:none;" + class="ui-resizable-handle"> + </div> +</div> +<script type="text/javascript"> +$(document).ready(function(){initNavTree('namespaces.html','');}); +</script> +<div id="doc-content"> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +</div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Packages</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">Here are the packages with brief descriptions (if available):</div><div class="directory"> +<table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_blaze___brigade.html" target="_self">Blaze_Brigade</a></td><td class="desc"></td></tr> +<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_controller.html" target="_self">Controller</a></td><td class="desc">The controller in MVC. These classes will control how the <a class="el" href="namespace_model.html" title="The model in MVC. These classes contain the structure of the game, and will be controlled by Controll...">Model</a> is used, and how the <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a> will be displayed to the user. </td></tr> +<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_model.html" target="_self">Model</a></td><td class="desc">The model in MVC. These classes contain the structure of the game, and will be controlled by <a class="el" href="namespace_controller.html" title="The controller in MVC. These classes will control how the Model is used, and how the View will be dis...">Controller</a>, and displayed in <a class="el" href="namespace_view.html" title="The view in MVC. These classes deal with the view that the user sees in the game. ...">View</a>. </td></tr> +<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_view.html" target="_self">View</a></td><td class="desc">The view in MVC. These classes deal with the view that the user sees in the game. </td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +</div><!-- doc-content --> +<!-- start footer part --> +<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> + <ul> + <li class="footer">Generated by + <a href="http://www.doxygen.org/index.html"> + <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li> + </ul> +</div> +</body> +</html> diff --git a/Doc/MIS/html/namespaces.js b/Doc/MIS/html/namespaces.js new file mode 100644 index 0000000000000000000000000000000000000000..e95c747d9469c61ba60af59007cfbf173963bdf4 --- /dev/null +++ b/Doc/MIS/html/namespaces.js @@ -0,0 +1,7 @@ +var namespaces = +[ + [ "Blaze_Brigade", "namespace_blaze___brigade.html", null ], + [ "Controller", "namespace_controller.html", null ], + [ "Model", "namespace_model.html", null ], + [ "View", "namespace_view.html", null ] +]; \ No newline at end of file diff --git a/Doc/MIS/html/nav_f.png b/Doc/MIS/html/nav_f.png new file mode 100644 index 0000000000000000000000000000000000000000..72a58a529ed3a9ed6aa0c51a79cf207e026deee2 Binary files /dev/null and b/Doc/MIS/html/nav_f.png differ diff --git a/Doc/MIS/html/nav_g.png b/Doc/MIS/html/nav_g.png new file mode 100644 index 0000000000000000000000000000000000000000..2093a237a94f6c83e19ec6e5fd42f7ddabdafa81 Binary files /dev/null and b/Doc/MIS/html/nav_g.png differ diff --git a/Doc/MIS/html/nav_h.png b/Doc/MIS/html/nav_h.png new file mode 100644 index 0000000000000000000000000000000000000000..33389b101d9cd9b4c98ad286b5d9c46a6671f650 Binary files /dev/null and b/Doc/MIS/html/nav_h.png differ diff --git a/Doc/MIS/html/navtree.css b/Doc/MIS/html/navtree.css new file mode 100644 index 0000000000000000000000000000000000000000..0cc7e776c3bcced883837e49911a6b694038a814 --- /dev/null +++ b/Doc/MIS/html/navtree.css @@ -0,0 +1,146 @@ +#nav-tree .children_ul { + margin:0; + padding:4px; +} + +#nav-tree ul { + list-style:none outside none; + margin:0px; + padding:0px; +} + +#nav-tree li { + white-space:nowrap; + margin:0px; + padding:0px; +} + +#nav-tree .plus { + margin:0px; +} + +#nav-tree .selected { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +#nav-tree img { + margin:0px; + padding:0px; + border:0px; + vertical-align: middle; +} + +#nav-tree a { + text-decoration:none; + padding:0px; + margin:0px; + outline:none; +} + +#nav-tree .label { + margin:0px; + padding:0px; + font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +#nav-tree .label a { + padding:2px; +} + +#nav-tree .selected a { + text-decoration:none; + color:#fff; +} + +#nav-tree .children_ul { + margin:0px; + padding:0px; +} + +#nav-tree .item { + margin:0px; + padding:0px; +} + +#nav-tree { + padding: 0px 0px; + background-color: #FAFAFF; + font-size:14px; + overflow:auto; +} + +#doc-content { + overflow:auto; + display:block; + padding:0px; + margin:0px; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#side-nav { + padding:0 6px 0 0; + margin: 0px; + display:block; + position: absolute; + left: 0px; + width: 250px; +} + +.ui-resizable .ui-resizable-handle { + display:block; +} + +.ui-resizable-e { + background-image:url("splitbar.png"); + background-size:100%; + background-repeat:no-repeat; + background-attachment: scroll; + cursor:ew-resize; + height:100%; + right:0; + top:0; + width:6px; +} + +.ui-resizable-handle { + display:none; + font-size:0.1px; + position:absolute; + z-index:1; +} + +#nav-tree-contents { + margin: 6px 0px 0px 0px; +} + +#nav-tree { + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#nav-sync { + position:absolute; + top:5px; + right:24px; + z-index:0; +} + +#nav-sync img { + opacity:0.3; +} + +#nav-sync img:hover { + opacity:0.9; +} + +@media print +{ + #nav-tree { display: none; } + div.ui-resizable-handle { display: none; position: relative; } +} + diff --git a/Doc/MIS/html/navtree.js b/Doc/MIS/html/navtree.js new file mode 100644 index 0000000000000000000000000000000000000000..e6d31b00d4aa662120b347e15c083f9c083b081d --- /dev/null +++ b/Doc/MIS/html/navtree.js @@ -0,0 +1,517 @@ +var navTreeSubIndices = new Array(); +var arrowDown = '▼'; +var arrowRight = '►'; + +function getData(varName) +{ + var i = varName.lastIndexOf('/'); + var n = i>=0 ? varName.substring(i+1) : varName; + return eval(n.replace(/\-/g,'_')); +} + +function stripPath(uri) +{ + return uri.substring(uri.lastIndexOf('/')+1); +} + +function stripPath2(uri) +{ + var i = uri.lastIndexOf('/'); + var s = uri.substring(i+1); + var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); + return m ? uri.substring(i-6) : s; +} + +function hashValue() +{ + return $(location).attr('hash').substring(1).replace(/[^\w\-]/g,''); +} + +function hashUrl() +{ + return '#'+hashValue(); +} + +function pathName() +{ + return $(location).attr('pathname').replace(/[^-A-Za-z0-9+&@#/%?=~_|!:,.;\(\)]/g, ''); +} + +function localStorageSupported() +{ + try { + return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; + } + catch(e) { + return false; + } +} + + +function storeLink(link) +{ + if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { + window.localStorage.setItem('navpath',link); + } +} + +function deleteLink() +{ + if (localStorageSupported()) { + window.localStorage.setItem('navpath',''); + } +} + +function cachedLink() +{ + if (localStorageSupported()) { + return window.localStorage.getItem('navpath'); + } else { + return ''; + } +} + +function getScript(scriptName,func,show) +{ + var head = document.getElementsByTagName("head")[0]; + var script = document.createElement('script'); + script.id = scriptName; + script.type = 'text/javascript'; + script.onload = func; + script.src = scriptName+'.js'; + if ($.browser.msie && $.browser.version<=8) { + // script.onload does not work with older versions of IE + script.onreadystatechange = function() { + if (script.readyState=='complete' || script.readyState=='loaded') { + func(); if (show) showRoot(); + } + } + } + head.appendChild(script); +} + +function createIndent(o,domNode,node,level) +{ + var level=-1; + var n = node; + while (n.parentNode) { level++; n=n.parentNode; } + if (node.childrenData) { + var imgNode = document.createElement("span"); + imgNode.className = 'arrow'; + imgNode.style.paddingLeft=(16*level).toString()+'px'; + imgNode.innerHTML=arrowRight; + node.plus_img = imgNode; + node.expandToggle = document.createElement("a"); + node.expandToggle.href = "javascript:void(0)"; + node.expandToggle.onclick = function() { + if (node.expanded) { + $(node.getChildrenUL()).slideUp("fast"); + node.plus_img.innerHTML=arrowRight; + node.expanded = false; + } else { + expandNode(o, node, false, false); + } + } + node.expandToggle.appendChild(imgNode); + domNode.appendChild(node.expandToggle); + } else { + var span = document.createElement("span"); + span.className = 'arrow'; + span.style.width = 16*(level+1)+'px'; + span.innerHTML = ' '; + domNode.appendChild(span); + } +} + +var animationInProgress = false; + +function gotoAnchor(anchor,aname,updateLocation) +{ + var pos, docContent = $('#doc-content'); + var ancParent = $(anchor.parent()); + if (ancParent.hasClass('memItemLeft') || + ancParent.hasClass('fieldname') || + ancParent.hasClass('fieldtype') || + ancParent.is(':header')) + { + pos = ancParent.position().top; + } else if (anchor.position()) { + pos = anchor.position().top; + } + if (pos) { + var dist = Math.abs(Math.min( + pos-docContent.offset().top, + docContent[0].scrollHeight- + docContent.height()-docContent.scrollTop())); + animationInProgress=true; + docContent.animate({ + scrollTop: pos + docContent.scrollTop() - docContent.offset().top + },Math.max(50,Math.min(500,dist)),function(){ + if (updateLocation) window.location.href=aname; + animationInProgress=false; + }); + } +} + +function newNode(o, po, text, link, childrenData, lastNode) +{ + var node = new Object(); + node.children = Array(); + node.childrenData = childrenData; + node.depth = po.depth + 1; + node.relpath = po.relpath; + node.isLast = lastNode; + + node.li = document.createElement("li"); + po.getChildrenUL().appendChild(node.li); + node.parentNode = po; + + node.itemDiv = document.createElement("div"); + node.itemDiv.className = "item"; + + node.labelSpan = document.createElement("span"); + node.labelSpan.className = "label"; + + createIndent(o,node.itemDiv,node,0); + node.itemDiv.appendChild(node.labelSpan); + node.li.appendChild(node.itemDiv); + + var a = document.createElement("a"); + node.labelSpan.appendChild(a); + node.label = document.createTextNode(text); + node.expanded = false; + a.appendChild(node.label); + if (link) { + var url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + link = url; + } else { + url = node.relpath+link; + } + a.className = stripPath(link.replace('#',':')); + if (link.indexOf('#')!=-1) { + var aname = '#'+link.split('#')[1]; + var srcPage = stripPath(pathName()); + var targetPage = stripPath(link.split('#')[0]); + a.href = srcPage!=targetPage ? url : "javascript:void(0)"; + a.onclick = function(){ + storeLink(link); + if (!$(a).parent().parent().hasClass('selected')) + { + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + $(a).parent().parent().addClass('selected'); + $(a).parent().parent().attr('id','selected'); + } + var anchor = $(aname); + gotoAnchor(anchor,aname,true); + }; + } else { + a.href = url; + a.onclick = function() { storeLink(link); } + } + } else { + if (childrenData != null) + { + a.className = "nolink"; + a.href = "javascript:void(0)"; + a.onclick = node.expandToggle.onclick; + } + } + + node.childrenUL = null; + node.getChildrenUL = function() { + if (!node.childrenUL) { + node.childrenUL = document.createElement("ul"); + node.childrenUL.className = "children_ul"; + node.childrenUL.style.display = "none"; + node.li.appendChild(node.childrenUL); + } + return node.childrenUL; + }; + + return node; +} + +function showRoot() +{ + var headerHeight = $("#top").height(); + var footerHeight = $("#nav-path").height(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + (function (){ // retry until we can scroll to the selected item + try { + var navtree=$('#nav-tree'); + navtree.scrollTo('#selected',0,{offset:-windowHeight/2}); + } catch (err) { + setTimeout(arguments.callee, 0); + } + })(); +} + +function expandNode(o, node, imm, showRoot) +{ + if (node.childrenData && !node.expanded) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + expandNode(o, node, imm, showRoot); + }, showRoot); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } if (imm || ($.browser.msie && $.browser.version>8)) { + // somehow slideDown jumps to the start of tree for IE9 :-( + $(node.getChildrenUL()).show(); + } else { + $(node.getChildrenUL()).slideDown("fast"); + } + node.plus_img.innerHTML = arrowDown; + node.expanded = true; + } + } +} + +function glowEffect(n,duration) +{ + n.addClass('glow').delay(duration).queue(function(next){ + $(this).removeClass('glow');next(); + }); +} + +function highlightAnchor() +{ + var aname = hashUrl(); + var anchor = $(aname); + if (anchor.parent().attr('class')=='memItemLeft'){ + var rows = $('.memberdecls tr[class$="'+hashValue()+'"]'); + glowEffect(rows.children(),300); // member without details + } else if (anchor.parent().attr('class')=='fieldname'){ + glowEffect(anchor.parent().parent(),1000); // enum value + } else if (anchor.parent().attr('class')=='fieldtype'){ + glowEffect(anchor.parent().parent(),1000); // struct field + } else if (anchor.parent().is(":header")) { + glowEffect(anchor.parent(),1000); // section header + } else { + glowEffect(anchor.next(),1000); // normal member + } + gotoAnchor(anchor,aname,false); +} + +function selectAndHighlight(hash,n) +{ + var a; + if (hash) { + var link=stripPath(pathName())+':'+hash.substring(1); + a=$('.item a[class$="'+link+'"]'); + } + if (a && a.length) { + a.parent().parent().addClass('selected'); + a.parent().parent().attr('id','selected'); + highlightAnchor(); + } else if (n) { + $(n.itemDiv).addClass('selected'); + $(n.itemDiv).attr('id','selected'); + } + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + $('#nav-sync').css('top','30px'); + } else { + $('#nav-sync').css('top','5px'); + } + showRoot(); +} + +function showNode(o, node, index, hash) +{ + if (node && node.childrenData) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + showNode(o,node,index,hash); + },true); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).css({'display':'block'}); + node.plus_img.innerHTML = arrowDown; + node.expanded = true; + var n = node.children[o.breadcrumbs[index]]; + if (index+1<o.breadcrumbs.length) { + showNode(o,n,index+1,hash); + } else { + if (typeof(n.childrenData)==='string') { + var varName = n.childrenData; + getScript(n.relpath+varName,function(){ + n.childrenData = getData(varName); + node.expanded=false; + showNode(o,node,index,hash); // retry with child node expanded + },true); + } else { + var rootBase = stripPath(o.toroot.replace(/\..+$/, '')); + if (rootBase=="index" || rootBase=="pages" || rootBase=="search") { + expandNode(o, n, true, true); + } + selectAndHighlight(hash,n); + } + } + } + } else { + selectAndHighlight(hash); + } +} + +function removeToInsertLater(element) { + var parentNode = element.parentNode; + var nextSibling = element.nextSibling; + parentNode.removeChild(element); + return function() { + if (nextSibling) { + parentNode.insertBefore(element, nextSibling); + } else { + parentNode.appendChild(element); + } + }; +} + +function getNode(o, po) +{ + var insertFunction = removeToInsertLater(po.li); + po.childrenVisited = true; + var l = po.childrenData.length-1; + for (var i in po.childrenData) { + var nodeData = po.childrenData[i]; + po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2], + i==l); + } + insertFunction(); +} + +function gotoNode(o,subIndex,root,hash,relpath) +{ + var nti = navTreeSubIndices[subIndex][root+hash]; + o.breadcrumbs = $.extend(true, [], nti ? nti : navTreeSubIndices[subIndex][root]); + if (!o.breadcrumbs && root!=NAVTREE[0][1]) { // fallback: show index + navTo(o,NAVTREE[0][1],"",relpath); + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + } + if (o.breadcrumbs) { + o.breadcrumbs.unshift(0); // add 0 for root node + showNode(o, o.node, 0, hash); + } +} + +function navTo(o,root,hash,relpath) +{ + var link = cachedLink(); + if (link) { + var parts = link.split('#'); + root = parts[0]; + if (parts.length>1) hash = '#'+parts[1].replace(/[^\w\-]/g,''); + else hash=''; + } + if (hash.match(/^#l\d+$/)) { + var anchor=$('a[name='+hash.substring(1)+']'); + glowEffect(anchor.parent(),1000); // line number + hash=''; // strip line number anchors + } + var url=root+hash; + var i=-1; + while (NAVTREEINDEX[i+1]<=url) i++; + if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath) + } else { + getScript(relpath+'navtreeindex'+i,function(){ + navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath); + } + },true); + } +} + +function showSyncOff(n,relpath) +{ + n.html('<img src="'+relpath+'sync_off.png" title="'+SYNCOFFMSG+'"/>'); +} + +function showSyncOn(n,relpath) +{ + n.html('<img src="'+relpath+'sync_on.png" title="'+SYNCONMSG+'"/>'); +} + +function toggleSyncButton(relpath) +{ + var navSync = $('#nav-sync'); + if (navSync.hasClass('sync')) { + navSync.removeClass('sync'); + showSyncOff(navSync,relpath); + storeLink(stripPath2(pathName())+hashUrl()); + } else { + navSync.addClass('sync'); + showSyncOn(navSync,relpath); + deleteLink(); + } +} + +function initNavTree(toroot,relpath) +{ + var o = new Object(); + o.toroot = toroot; + o.node = new Object(); + o.node.li = document.getElementById("nav-tree-contents"); + o.node.childrenData = NAVTREE; + o.node.children = new Array(); + o.node.childrenUL = document.createElement("ul"); + o.node.getChildrenUL = function() { return o.node.childrenUL; }; + o.node.li.appendChild(o.node.childrenUL); + o.node.depth = 0; + o.node.relpath = relpath; + o.node.expanded = false; + o.node.isLast = true; + o.node.plus_img = document.createElement("span"); + o.node.plus_img.className = 'arrow'; + o.node.plus_img.innerHTML = arrowRight; + + if (localStorageSupported()) { + var navSync = $('#nav-sync'); + if (cachedLink()) { + showSyncOff(navSync,relpath); + navSync.removeClass('sync'); + } else { + showSyncOn(navSync,relpath); + } + navSync.click(function(){ toggleSyncButton(relpath); }); + } + + $(window).load(function(){ + navTo(o,toroot,hashUrl(),relpath); + showRoot(); + }); + + $(window).bind('hashchange', function(){ + if (window.location.hash && window.location.hash.length>1){ + var a; + if ($(location).attr('hash')){ + var clslink=stripPath(pathName())+':'+hashValue(); + a=$('.item a[class$="'+clslink.replace(/</g,'\\3c ')+'"]'); + } + if (a==null || !$(a).parent().parent().hasClass('selected')){ + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + } + var link=stripPath2(pathName()); + navTo(o,link,hashUrl(),relpath); + } else if (!animationInProgress) { + $('#doc-content').scrollTop(0); + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + navTo(o,toroot,hashUrl(),relpath); + } + }) +} + diff --git a/Doc/MIS/html/navtreedata.js b/Doc/MIS/html/navtreedata.js new file mode 100644 index 0000000000000000000000000000000000000000..91474f8e092dc7ca574411cde91bc4632f3eee22 --- /dev/null +++ b/Doc/MIS/html/navtreedata.js @@ -0,0 +1,31 @@ +var NAVTREE = +[ + [ "Blaze Brigade", "index.html", [ + [ "Packages", null, [ + [ "Packages", "namespaces.html", "namespaces" ], + [ "Package Functions", "namespacemembers.html", [ + [ "All", "namespacemembers.html", null ], + [ "Enumerations", "namespacemembers_enum.html", null ] + ] ] + ] ], + [ "Classes", "annotated.html", [ + [ "Class List", "annotated.html", "annotated_dup" ], + [ "Class Index", "classes.html", null ], + [ "Class Hierarchy", "hierarchy.html", "hierarchy" ], + [ "Class Members", "functions.html", [ + [ "All", "functions.html", null ], + [ "Functions", "functions_func.html", null ], + [ "Properties", "functions_prop.html", null ] + ] ] + ] ] + ] ] +]; + +var NAVTREEINDEX = +[ +"annotated.html", +"interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab" +]; + +var SYNCONMSG = 'click to disable panel synchronisation'; +var SYNCOFFMSG = 'click to enable panel synchronisation'; \ No newline at end of file diff --git a/Doc/MIS/html/navtreeindex0.js b/Doc/MIS/html/navtreeindex0.js new file mode 100644 index 0000000000000000000000000000000000000000..f2a97f9cdcd22df5d94f1fc421bdb9912b18809d --- /dev/null +++ b/Doc/MIS/html/navtreeindex0.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX0 = +{ +"annotated.html":[1,0], +"class_controller_1_1_game.html":[1,0,0,0], +"class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770":[1,0,0,0,3], +"class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f":[1,0,0,0,1], +"class_controller_1_1_game.html#a53f51c3ad8d59f44f8ab6aee59c0fbec":[1,0,0,0,5], +"class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3":[1,0,0,0,4], +"class_controller_1_1_game.html#a93f1824d202daf7132b24039b97eaa7a":[1,0,0,0,0], +"class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608":[1,0,0,0,2], +"class_controller_1_1_game_function.html":[1,0,0,1], +"class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43":[1,0,0,1,6], +"class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0":[1,0,0,1,0], +"class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517":[1,0,0,1,5], +"class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c":[1,0,0,1,4], +"class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8":[1,0,0,1,8], +"class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5":[1,0,0,1,2], +"class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93":[1,0,0,1,9], +"class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5":[1,0,0,1,10], +"class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab":[1,0,0,1,3], +"class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385":[1,0,0,1,7], +"class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50":[1,0,0,1,1], +"class_controller_1_1_mouse_handler.html":[1,0,0,2], +"class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6":[1,0,0,2,0], +"class_model_1_1_archer.html":[1,0,1,0], +"class_model_1_1_archer.html#a149681510408d9e6aa130918480c1721":[1,0,1,0,27], +"class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc":[1,0,1,0,14], +"class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252":[1,0,1,0,26], +"class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533":[1,0,1,0,23], +"class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d":[1,0,1,0,10], +"class_model_1_1_archer.html#a2a62fe1362df536254e676fa4d294e9e":[1,0,1,0,20], +"class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff":[1,0,1,0,3], +"class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7":[1,0,1,0,24], +"class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9":[1,0,1,0,6], +"class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2":[1,0,1,0,15], +"class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2":[1,0,1,0,11], +"class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2":[1,0,1,0,8], +"class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d":[1,0,1,0,12], +"class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b":[1,0,1,0,9], +"class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28":[1,0,1,0,1], +"class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113":[1,0,1,0,17], +"class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82":[1,0,1,0,4], +"class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10":[1,0,1,0,5], +"class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756":[1,0,1,0,2], +"class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e":[1,0,1,0,22], +"class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4":[1,0,1,0,7], +"class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d":[1,0,1,0,0], +"class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9":[1,0,1,0,18], +"class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16":[1,0,1,0,16], +"class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6":[1,0,1,0,21], +"class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e":[1,0,1,0,13], +"class_model_1_1_archer.html#ae89109c98b07771c74f25a75f4a5a76a":[1,0,1,0,25], +"class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f":[1,0,1,0,19], +"class_model_1_1_bronze_bow.html":[1,0,1,1], +"class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6":[1,0,1,1,0], +"class_model_1_1_bronze_bow.html#a569fe9e160d98a9b68d6a107810d7d4a":[1,0,1,1,2], +"class_model_1_1_bronze_bow.html#a6caebba4edca56736464c5bfabe00b3b":[1,0,1,1,3], +"class_model_1_1_bronze_bow.html#ae1cf127006911800db89aafcddf62851":[1,0,1,1,4], +"class_model_1_1_bronze_bow.html#ae8e37042660fb1a2e5d98006405f81a7":[1,0,1,1,5], +"class_model_1_1_bronze_bow.html#af5ee7e2b002745a57a50630031d4e81e":[1,0,1,1,1], +"class_model_1_1_bronze_sword.html":[1,0,1,2], +"class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778":[1,0,1,2,0], +"class_model_1_1_bronze_sword.html#a4a66267bbabf3a20bbf155225d2bf78e":[1,0,1,2,4], +"class_model_1_1_bronze_sword.html#aa3fa8bf42493d699ebab0a71b49f790f":[1,0,1,2,3], +"class_model_1_1_bronze_sword.html#adbcbbba4083e38d4502b59847d739a4b":[1,0,1,2,2], +"class_model_1_1_bronze_sword.html#adc76e86568c1cc4be336f3c565890040":[1,0,1,2,1], +"class_model_1_1_bronze_sword.html#af13cc7a64cd1df9257977b9961b5bb21":[1,0,1,2,5], +"class_model_1_1_damage_calculations.html":[1,0,1,3], +"class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8":[1,0,1,3,4], +"class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b":[1,0,1,3,0], +"class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea":[1,0,1,3,2], +"class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa":[1,0,1,3,3], +"class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed":[1,0,1,3,1], +"class_model_1_1_fireball.html":[1,0,1,4], +"class_model_1_1_fireball.html#a20558861ec4039883ee98f2cecbe3431":[1,0,1,4,3], +"class_model_1_1_fireball.html#a406360fd3901b7a5ade3a8bc35c9423d":[1,0,1,4,5], +"class_model_1_1_fireball.html#a4ff8c171340f4c6bf65bd3d6b73138f7":[1,0,1,4,2], +"class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d":[1,0,1,4,0], +"class_model_1_1_fireball.html#aa5053d42f6a4432ef58a7666ce4e6736":[1,0,1,4,4], +"class_model_1_1_fireball.html#afd695fdcfffb1ffcbae41ed3656ebd34":[1,0,1,4,1], +"class_model_1_1_game_state.html":[1,0,1,5], +"class_model_1_1_game_state.html#a4ca2649ffbcf39f72b5373889fc87137":[1,0,1,5,0], +"class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a":[1,0,1,5,5], +"class_model_1_1_game_state.html#aa2e325332a755c971d36c7c388d136d2":[1,0,1,5,8], +"class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de":[1,0,1,5,4], +"class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9":[1,0,1,5,10], +"class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c":[1,0,1,5,2], +"class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9":[1,0,1,5,9], +"class_model_1_1_game_state.html#ac8c6a53641aafa5d57a9dff8f958a904":[1,0,1,5,7], +"class_model_1_1_game_state.html#ad3b13fdcad1e5b05176da2f3d554fa20":[1,0,1,5,1], +"class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3":[1,0,1,5,6], +"class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed":[1,0,1,5,11], +"class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7":[1,0,1,5,3], +"class_model_1_1_graph.html":[1,0,1,6], +"class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19":[1,0,1,6,1], +"class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c":[1,0,1,6,0], +"class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936":[1,0,1,6,2], +"class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4":[1,0,1,6,4], +"class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a":[1,0,1,6,3], +"class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695":[1,0,1,6,7], +"class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068":[1,0,1,6,5], +"class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544":[1,0,1,6,6], +"class_model_1_1_mage.html":[1,0,1,7], +"class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8":[1,0,1,7,23], +"class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16":[1,0,1,7,0], +"class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63":[1,0,1,7,18], +"class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167":[1,0,1,7,8], +"class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f":[1,0,1,7,12], +"class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af":[1,0,1,7,21], +"class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9":[1,0,1,7,1], +"class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1":[1,0,1,7,14], +"class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa":[1,0,1,7,22], +"class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679":[1,0,1,7,16], +"class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef":[1,0,1,7,9], +"class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0":[1,0,1,7,4], +"class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60":[1,0,1,7,26], +"class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d":[1,0,1,7,2], +"class_model_1_1_mage.html#a753872f2aaed6e495019540a88178cb8":[1,0,1,7,25], +"class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373":[1,0,1,7,17], +"class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2":[1,0,1,7,10], +"class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92":[1,0,1,7,5], +"class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab":[1,0,1,7,7], +"class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27":[1,0,1,7,24], +"class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce":[1,0,1,7,19], +"class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d":[1,0,1,7,15], +"class_model_1_1_mage.html#ad2815a69a4f3b3b192552f6738f2163c":[1,0,1,7,27], +"class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914":[1,0,1,7,13], +"class_model_1_1_mage.html#ad53c88e6f9d1842a8367fc5dd646f03d":[1,0,1,7,20], +"class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c":[1,0,1,7,3], +"class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810":[1,0,1,7,6], +"class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f":[1,0,1,7,11], +"class_model_1_1_node.html":[1,0,1,8], +"class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4":[1,0,1,8,4], +"class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632":[1,0,1,8,6], +"class_model_1_1_node.html#a82ca414242eee3d8542a935149049427":[1,0,1,8,7], +"class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35":[1,0,1,8,1], +"class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819":[1,0,1,8,3], +"class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34":[1,0,1,8,5], +"class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4":[1,0,1,8,0], +"class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c":[1,0,1,8,2], +"class_model_1_1_player.html":[1,0,1,9], +"class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e":[1,0,1,9,4], +"class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a":[1,0,1,9,3], +"class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0":[1,0,1,9,1], +"class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170":[1,0,1,9,0], +"class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56":[1,0,1,9,2], +"class_model_1_1_warrior.html":[1,0,1,11], +"class_model_1_1_warrior.html#a05f268c3fbd9ae3152fd31d4549926a3":[1,0,1,11,20], +"class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0":[1,0,1,11,16], +"class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75":[1,0,1,11,10], +"class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968":[1,0,1,11,7], +"class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa":[1,0,1,11,22], +"class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735":[1,0,1,11,19], +"class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688":[1,0,1,11,1], +"class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6":[1,0,1,11,3], +"class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2":[1,0,1,11,13], +"class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007":[1,0,1,11,2], +"class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5":[1,0,1,11,6], +"class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4":[1,0,1,11,26], +"class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9":[1,0,1,11,5], +"class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6":[1,0,1,11,21], +"class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a":[1,0,1,11,12], +"class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6":[1,0,1,11,24], +"class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea":[1,0,1,11,18], +"class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd":[1,0,1,11,15], +"class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5":[1,0,1,11,23], +"class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a":[1,0,1,11,8], +"class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344":[1,0,1,11,9], +"class_model_1_1_warrior.html#aa2f0b023e247a47fc5e270c279467108":[1,0,1,11,27], +"class_model_1_1_warrior.html#aa6346f9549e6512ddf8491250acf54d9":[1,0,1,11,25], +"class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d":[1,0,1,11,17], +"class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7":[1,0,1,11,0], +"class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a":[1,0,1,11,11], +"class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a":[1,0,1,11,14], +"class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24":[1,0,1,11,4], +"class_view_1_1_button.html":[1,0,2,0], +"class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d":[1,0,2,0,4], +"class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576":[1,0,2,0,2], +"class_view_1_1_button.html#a86f649f99a4418c2cdc544690f74ad1d":[1,0,2,0,5], +"class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148":[1,0,2,0,3], +"class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755":[1,0,2,0,1], +"class_view_1_1_button.html#af1811d9154063453744af47950aeefc0":[1,0,2,0,0], +"class_view_1_1_how_to_play.html":[1,0,2,1], +"class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba":[1,0,2,1,2], +"class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27":[1,0,2,1,3], +"class_view_1_1_how_to_play.html#a29e4237501cdc8a6294a73aebd69f8f4":[1,0,2,1,6], +"class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59":[1,0,2,1,5], +"class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8":[1,0,2,1,1], +"class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960":[1,0,2,1,0], +"class_view_1_1_how_to_play.html#ac9ab59e74d788e2bf98b96eb904b34a5":[1,0,2,1,7], +"class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973":[1,0,2,1,4], +"class_view_1_1_how_to_play2.html":[1,0,2,2], +"class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28":[1,0,2,2,3], +"class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0":[1,0,2,2,0], +"class_view_1_1_how_to_play2.html#a3068d75dc47a323787741aac8edb8ad2":[1,0,2,2,7], +"class_view_1_1_how_to_play2.html#a3aa2ade52076ef9417b31c0b701dad0b":[1,0,2,2,6], +"class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5":[1,0,2,2,5], +"class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac":[1,0,2,2,1], +"class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb":[1,0,2,2,2], +"class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d":[1,0,2,2,4], +"class_view_1_1_how_to_play3.html":[1,0,2,3], +"class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539":[1,0,2,3,2], +"class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1":[1,0,2,3,0], +"class_view_1_1_how_to_play3.html#a8fb21d6afb8a5af33571c8d66bdf2c92":[1,0,2,3,4], +"class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54":[1,0,2,3,1], +"class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6":[1,0,2,3,3], +"class_view_1_1_main_menu.html":[1,0,2,4], +"class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32":[1,0,2,4,0], +"class_view_1_1_main_menu.html#a2d10e8525ae3bd27a593869a2683626f":[1,0,2,4,7], +"class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5":[1,0,2,4,3], +"class_view_1_1_main_menu.html#a81bfa25099d184c99353ad06f9e1ff7b":[1,0,2,4,6], +"class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b":[1,0,2,4,1], +"class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f":[1,0,2,4,2], +"class_view_1_1_main_menu.html#af50efe2ac722b8efdee208268f9089be":[1,0,2,4,4], +"class_view_1_1_main_menu.html#af64c58a5e627a7d1de10d4d365a640a4":[1,0,2,4,5], +"classes.html":[1,1], +"functions.html":[1,3,0], +"functions_func.html":[1,3,1], +"functions_prop.html":[1,3,2], +"hierarchy.html":[1,2], +"index.html":[], +"interface_model_1_1_unit.html":[1,0,1,10], +"interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b":[1,0,1,10,22], +"interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17":[1,0,1,10,26], +"interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425":[1,0,1,10,21], +"interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060":[1,0,1,10,2], +"interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b":[1,0,1,10,11], +"interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5":[1,0,1,10,14], +"interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80":[1,0,1,10,1], +"interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167":[1,0,1,10,17], +"interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3":[1,0,1,10,10], +"interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d":[1,0,1,10,3], +"interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa":[1,0,1,10,19], +"interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9":[1,0,1,10,15], +"interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb":[1,0,1,10,13], +"interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201":[1,0,1,10,8], +"interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480":[1,0,1,10,6], +"interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81":[1,0,1,10,24], +"interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22":[1,0,1,10,23], +"interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b":[1,0,1,10,5], +"interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1":[1,0,1,10,18], +"interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302":[1,0,1,10,0], +"interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4":[1,0,1,10,12], +"interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208":[1,0,1,10,4], +"interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7":[1,0,1,10,7], +"interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920":[1,0,1,10,25], +"interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c":[1,0,1,10,9], +"interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949":[1,0,1,10,16], +"interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5":[1,0,1,10,20], +"interface_model_1_1_weapon.html":[1,0,1,12], +"interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8":[1,0,1,12,3], +"interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c":[1,0,1,12,0] +}; diff --git a/Doc/MIS/html/navtreeindex1.js b/Doc/MIS/html/navtreeindex1.js new file mode 100644 index 0000000000000000000000000000000000000000..2392f6b26c4fe086bd7f68ceca53d8d2ad481d62 --- /dev/null +++ b/Doc/MIS/html/navtreeindex1.js @@ -0,0 +1,17 @@ +var NAVTREEINDEX1 = +{ +"interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab":[1,0,1,12,1], +"interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8":[1,0,1,12,4], +"interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027":[1,0,1,12,2], +"namespace_blaze___brigade.html":[0,0,0], +"namespace_controller.html":[0,0,1], +"namespace_controller.html":[1,0,0], +"namespace_model.html":[0,0,2], +"namespace_model.html":[1,0,1], +"namespace_view.html":[0,0,3], +"namespace_view.html":[1,0,2], +"namespacemembers.html":[0,1,0], +"namespacemembers_enum.html":[0,1,1], +"namespaces.html":[0,0], +"pages.html":[] +}; diff --git a/Doc/MIS/html/open.png b/Doc/MIS/html/open.png new file mode 100644 index 0000000000000000000000000000000000000000..30f75c7efe2dd0c9e956e35b69777a02751f048b Binary files /dev/null and b/Doc/MIS/html/open.png differ diff --git a/Doc/MIS/html/resize.js b/Doc/MIS/html/resize.js new file mode 100644 index 0000000000000000000000000000000000000000..6d78f5b972e3e3928229d92c25abeb842dbb5292 --- /dev/null +++ b/Doc/MIS/html/resize.js @@ -0,0 +1,113 @@ +function initResizable() +{ + var cookie_namespace = 'doxygen'; + var sidenav,navtree,content,header,collapsed,collapsedWidth=0,barWidth=6,desktop_vp=768,titleHeight; + + function readCookie(cookie) + { + var myCookie = cookie_namespace+"_"+cookie+"="; + if (document.cookie) { + var index = document.cookie.indexOf(myCookie); + if (index != -1) { + var valStart = index + myCookie.length; + var valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) { + valEnd = document.cookie.length; + } + var val = document.cookie.substring(valStart, valEnd); + return val; + } + } + return 0; + } + + function writeCookie(cookie, val, expiration) + { + if (val==undefined) return; + if (expiration == null) { + var date = new Date(); + date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week + expiration = date.toGMTString(); + } + document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; + } + + function resizeWidth() + { + var windowWidth = $(window).width() + "px"; + var sidenavWidth = $(sidenav).outerWidth(); + content.css({marginLeft:parseInt(sidenavWidth)+"px"}); + writeCookie('width',sidenavWidth-barWidth, null); + } + + function restoreWidth(navWidth) + { + var windowWidth = $(window).width() + "px"; + content.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + sidenav.css({width:navWidth + "px"}); + } + + function resizeHeight() + { + var headerHeight = header.outerHeight(); + var footerHeight = footer.outerHeight(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + content.css({height:windowHeight + "px"}); + navtree.css({height:windowHeight + "px"}); + sidenav.css({height:windowHeight + "px"}); + var width=$(window).width(); + if (width!=collapsedWidth) { + if (width<desktop_vp && collapsedWidth>=desktop_vp) { + if (!collapsed) { + collapseExpand(); + } + } else if (width>desktop_vp && collapsedWidth<desktop_vp) { + if (collapsed) { + collapseExpand(); + } + } + collapsedWidth=width; + } + } + + function collapseExpand() + { + if (sidenav.width()>0) { + restoreWidth(0); + collapsed=true; + } + else { + var width = readCookie('width'); + if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } + collapsed=false; + } + } + + header = $("#top"); + sidenav = $("#side-nav"); + content = $("#doc-content"); + navtree = $("#nav-tree"); + footer = $("#nav-path"); + $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); + $(sidenav).resizable({ minWidth: 0 }); + $(window).resize(function() { resizeHeight(); }); + var device = navigator.userAgent.toLowerCase(); + var touch_device = device.match(/(iphone|ipod|ipad|android)/); + if (touch_device) { /* wider split bar for touch only devices */ + $(sidenav).css({ paddingRight:'20px' }); + $('.ui-resizable-e').css({ width:'20px' }); + $('#nav-sync').css({ right:'34px' }); + barWidth=20; + } + var width = readCookie('width'); + if (width) { restoreWidth(width); } else { resizeWidth(); } + var url = location.href; + var i=url.indexOf("#"); + if (i>=0) window.location.hash=url.substr(i); + var _preventDefault = function(evt) { evt.preventDefault(); }; + $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); + $(".ui-resizable-handle").dblclick(collapseExpand); + $(window).load(resizeHeight); +} + + diff --git a/Doc/MIS/html/search/all_0.html b/Doc/MIS/html/search/all_0.html new file mode 100644 index 0000000000000000000000000000000000000000..43594633a43b3b765c2ed7d64d97a4939bb87c18 --- /dev/null +++ b/Doc/MIS/html/search/all_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_0.js b/Doc/MIS/html/search/all_0.js new file mode 100644 index 0000000000000000000000000000000000000000..3a6b8ba376ee42f82885e710de596593ff1b8f5b --- /dev/null +++ b/Doc/MIS/html/search/all_0.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['addunit',['addUnit',['../class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0',1,'Model::Player']]], + ['alive',['Alive',['../class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16',1,'Model.Archer.Alive()'],['../class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679',1,'Model.Mage.Alive()'],['../interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9',1,'Model.Unit.Alive()'],['../class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0',1,'Model.Warrior.Alive()']]], + ['animate',['animate',['../class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28',1,'Model.Archer.animate()'],['../class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9',1,'Model.Mage.animate()'],['../interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302',1,'Model.Unit.animate()'],['../class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688',1,'Model.Warrior.animate()']]], + ['archer',['Archer',['../class_model_1_1_archer.html',1,'Model']]], + ['archer',['Archer',['../class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d',1,'Model::Archer']]], + ['attackconfirmopen',['attackConfirmOpen',['../class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/all_1.html b/Doc/MIS/html/search/all_1.html new file mode 100644 index 0000000000000000000000000000000000000000..bc87ea8cf217c3420decdcd6ae69b999cf2f5417 --- /dev/null +++ b/Doc/MIS/html/search/all_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_1.js b/Doc/MIS/html/search/all_1.js new file mode 100644 index 0000000000000000000000000000000000000000..cf01b036d4607160399ef3e86fb6bcce6926cc59 --- /dev/null +++ b/Doc/MIS/html/search/all_1.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['beforemove',['beforeMove',['../class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7',1,'Model::GameState']]], + ['blaze_5fbrigade',['Blaze_Brigade',['../namespace_blaze___brigade.html',1,'']]], + ['bronzebow',['BronzeBow',['../class_model_1_1_bronze_bow.html',1,'Model']]], + ['bronzebow',['BronzeBow',['../class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6',1,'Model::BronzeBow']]], + ['bronzesword',['BronzeSword',['../class_model_1_1_bronze_sword.html',1,'Model']]], + ['bronzesword',['BronzeSword',['../class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778',1,'Model::BronzeSword']]], + ['button',['Button',['../class_view_1_1_button.html#af1811d9154063453744af47950aeefc0',1,'View::Button']]], + ['button',['Button',['../class_view_1_1_button.html',1,'View']]], + ['buttontype',['ButtonType',['../namespace_view.html#a422668be256dfc045dfa818cfd90a99e',1,'View']]] +]; diff --git a/Doc/MIS/html/search/all_10.html b/Doc/MIS/html/search/all_10.html new file mode 100644 index 0000000000000000000000000000000000000000..16ffd9a0c0d3f4ec232209e66d1c0d4b930f7a7d --- /dev/null +++ b/Doc/MIS/html/search/all_10.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_10.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_10.js b/Doc/MIS/html/search/all_10.js new file mode 100644 index 0000000000000000000000000000000000000000..0d6f984b9097e93800e5f30bf06ba8f45a3d7a7f --- /dev/null +++ b/Doc/MIS/html/search/all_10.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['unit',['Unit',['../interface_model_1_1_unit.html',1,'Model']]], + ['unitonnode',['unitOnNode',['../class_model_1_1_node.html#a82ca414242eee3d8542a935149049427',1,'Model::Node']]], + ['unittoattack',['unitToAttack',['../class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed',1,'Model::GameState']]], + ['unittype',['UnitType',['../namespace_model.html#a68c359d1437f179951c3fe1315410fcf',1,'Model']]], + ['update',['Update',['../class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3',1,'Controller::Game']]], + ['updatemouse',['updateMouse',['../class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6',1,'Controller::MouseHandler']]] +]; diff --git a/Doc/MIS/html/search/all_11.html b/Doc/MIS/html/search/all_11.html new file mode 100644 index 0000000000000000000000000000000000000000..d689820da3ca3f7a212f61f8f605f63a23b6213b --- /dev/null +++ b/Doc/MIS/html/search/all_11.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_11.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_11.js b/Doc/MIS/html/search/all_11.js new file mode 100644 index 0000000000000000000000000000000000000000..04f9f401f191276dc264a2477518505b6a86b953 --- /dev/null +++ b/Doc/MIS/html/search/all_11.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['view',['View',['../namespace_view.html',1,'']]] +]; diff --git a/Doc/MIS/html/search/all_12.html b/Doc/MIS/html/search/all_12.html new file mode 100644 index 0000000000000000000000000000000000000000..698e2c5b63451ae4f90bbe55bda6990918db49f3 --- /dev/null +++ b/Doc/MIS/html/search/all_12.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_12.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_12.js b/Doc/MIS/html/search/all_12.js new file mode 100644 index 0000000000000000000000000000000000000000..030dc66dda7c16443273a23278836d7681184d54 --- /dev/null +++ b/Doc/MIS/html/search/all_12.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['warrior',['Warrior',['../class_model_1_1_warrior.html',1,'Model']]], + ['warrior',['Warrior',['../class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7',1,'Model::Warrior']]], + ['weapon',['Weapon',['../interface_model_1_1_weapon.html',1,'Model']]], + ['width',['Width',['../class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695',1,'Model::Graph']]] +]; diff --git a/Doc/MIS/html/search/all_2.html b/Doc/MIS/html/search/all_2.html new file mode 100644 index 0000000000000000000000000000000000000000..0f777c2993c96ea67e1464028a818db2813d7f31 --- /dev/null +++ b/Doc/MIS/html/search/all_2.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_2.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_2.js b/Doc/MIS/html/search/all_2.js new file mode 100644 index 0000000000000000000000000000000000000000..6671bdad6c31c1716a4623cc27285ba7d2d9b883 --- /dev/null +++ b/Doc/MIS/html/search/all_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['controller',['Controller',['../namespace_controller.html',1,'']]], + ['currentplayer',['currentPlayer',['../class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/all_3.html b/Doc/MIS/html/search/all_3.html new file mode 100644 index 0000000000000000000000000000000000000000..ac9dbf9fe8797010a531f12c9434c99c5804f894 --- /dev/null +++ b/Doc/MIS/html/search/all_3.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_3.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_3.js b/Doc/MIS/html/search/all_3.js new file mode 100644 index 0000000000000000000000000000000000000000..9dbcd182eb7a4c0c23f9619e01d87e696c9df4af --- /dev/null +++ b/Doc/MIS/html/search/all_3.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['damagecalculations',['DamageCalculations',['../class_model_1_1_damage_calculations.html',1,'Model']]], + ['def',['Def',['../class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113',1,'Model.Archer.Def()'],['../class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373',1,'Model.Mage.Def()'],['../interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949',1,'Model.Unit.Def()'],['../class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d',1,'Model.Warrior.Def()']]], + ['dispose',['Dispose',['../class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8',1,'View.HowToPlay.Dispose()'],['../class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac',1,'View.HowToPlay2.Dispose()'],['../class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54',1,'View.HowToPlay3.Dispose()'],['../class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b',1,'View.MainMenu.Dispose()']]], + ['draw',['Draw',['../class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f',1,'Controller::Game']]], + ['dropdownmenuopen',['dropDownMenuOpen',['../class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/all_4.html b/Doc/MIS/html/search/all_4.html new file mode 100644 index 0000000000000000000000000000000000000000..8308168cd29fb28d0a30d1a66c1fd7151f246bb4 --- /dev/null +++ b/Doc/MIS/html/search/all_4.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_4.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_4.js b/Doc/MIS/html/search/all_4.js new file mode 100644 index 0000000000000000000000000000000000000000..270939cac14fee95f04d9eff916725de8b3bb494 --- /dev/null +++ b/Doc/MIS/html/search/all_4.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['enemyplayer',['enemyPlayer',['../class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3',1,'Model::GameState']]], + ['enemyunitsinrange',['enemyUnitsInRange',['../class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0',1,'Controller::GameFunction']]], + ['equippedweapon',['equippedWeapon',['../class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9',1,'Model.Archer.equippedWeapon()'],['../class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63',1,'Model.Mage.equippedWeapon()'],['../interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167',1,'Model.Unit.equippedWeapon()'],['../class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea',1,'Model.Warrior.equippedWeapon()']]] +]; diff --git a/Doc/MIS/html/search/all_5.html b/Doc/MIS/html/search/all_5.html new file mode 100644 index 0000000000000000000000000000000000000000..7919cd4d85c3bd992b32ac0cbcc2094ff568d7fb --- /dev/null +++ b/Doc/MIS/html/search/all_5.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_5.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_5.js b/Doc/MIS/html/search/all_5.js new file mode 100644 index 0000000000000000000000000000000000000000..06d6f372459f877543f585e129a592a50511dd67 --- /dev/null +++ b/Doc/MIS/html/search/all_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['finaldamage',['finalDamage',['../class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b',1,'Model::DamageCalculations']]], + ['fireball',['Fireball',['../class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d',1,'Model::Fireball']]], + ['fireball',['Fireball',['../class_model_1_1_fireball.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/all_6.html b/Doc/MIS/html/search/all_6.html new file mode 100644 index 0000000000000000000000000000000000000000..89d590c492d9db6d22c81a2d134e61e00449e0b4 --- /dev/null +++ b/Doc/MIS/html/search/all_6.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_6.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_6.js b/Doc/MIS/html/search/all_6.js new file mode 100644 index 0000000000000000000000000000000000000000..18d4347b147906528109219eca2c39d008b93f6f --- /dev/null +++ b/Doc/MIS/html/search/all_6.js @@ -0,0 +1,37 @@ +var searchData= +[ + ['game',['Game',['../class_controller_1_1_game.html',1,'Controller']]], + ['gamefunction',['GameFunction',['../class_controller_1_1_game_function.html',1,'Controller']]], + ['gamestate',['GameState',['../class_model_1_1_game_state.html',1,'Model']]], + ['getattackablenodes',['getAttackableNodes',['../class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50',1,'Controller::GameFunction']]], + ['getattackrangeaftermoving',['getAttackRangeAfterMoving',['../class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5',1,'Controller::GameFunction']]], + ['getbuttonimage',['getButtonImage',['../class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756',1,'Model.Archer.getButtonImage()'],['../class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d',1,'Model.Mage.getButtonImage()'],['../interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80',1,'Model.Unit.getButtonImage()'],['../class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007',1,'Model.Warrior.getButtonImage()']]], + ['getbuttonoftype',['getButtonOfType',['../class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff',1,'Model.Archer.getButtonOfType()'],['../class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c',1,'Model.Mage.getButtonOfType()'],['../interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060',1,'Model.Unit.getButtonOfType()'],['../class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6',1,'Model.Warrior.getButtonOfType()']]], + ['getbuttons',['getButtons',['../class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82',1,'Model.Archer.getButtons()'],['../class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0',1,'Model.Mage.getButtons()'],['../interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d',1,'Model.Unit.getButtons()'],['../class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24',1,'Model.Warrior.getButtons()']]], + ['getbuttontype',['getButtonType',['../class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755',1,'View::Button']]], + ['getcharattackinfo',['getCharAttackInfo',['../class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10',1,'Model.Archer.getCharAttackInfo()'],['../class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92',1,'Model.Mage.getCharAttackInfo()'],['../interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208',1,'Model.Unit.getCharAttackInfo()'],['../class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9',1,'Model.Warrior.getCharAttackInfo()']]], + ['getcharinfo',['getCharInfo',['../class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9',1,'Model.Archer.getCharInfo()'],['../class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810',1,'Model.Mage.getCharInfo()'],['../interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b',1,'Model.Unit.getCharInfo()'],['../class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5',1,'Model.Warrior.getCharInfo()']]], + ['getclass',['getClass',['../class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4',1,'Model.Archer.getClass()'],['../class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab',1,'Model.Mage.getClass()'],['../interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480',1,'Model.Unit.getClass()'],['../class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968',1,'Model.Warrior.getClass()']]], + ['getcritrate',['getCritRate',['../class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed',1,'Model::DamageCalculations']]], + ['getcurrentframe',['getCurrentFrame',['../class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2',1,'Model.Archer.getCurrentFrame()'],['../class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167',1,'Model.Mage.getCurrentFrame()'],['../interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7',1,'Model.Unit.getCurrentFrame()'],['../class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a',1,'Model.Warrior.getCurrentFrame()']]], + ['getdamagedealt',['getDamageDealt',['../class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea',1,'Model::DamageCalculations']]], + ['getequipableweapons',['getEquipableWeapons',['../class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b',1,'Model.Archer.getEquipableWeapons()'],['../class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef',1,'Model.Mage.getEquipableWeapons()'],['../interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201',1,'Model.Unit.getEquipableWeapons()'],['../class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344',1,'Model.Warrior.getEquipableWeapons()']]], + ['gethitcount',['getHitCount',['../class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa',1,'Model::DamageCalculations']]], + ['gethitrate',['getHitRate',['../class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8',1,'Model::DamageCalculations']]], + ['getimage',['getImage',['../class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576',1,'View::Button']]], + ['getinstruct',['getInstruct',['../class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f',1,'View::MainMenu']]], + ['getmovability',['getMovability',['../class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d',1,'Model.Archer.getMovability()'],['../class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2',1,'Model.Mage.getMovability()'],['../interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c',1,'Model.Unit.getMovability()'],['../class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75',1,'Model.Warrior.getMovability()']]], + ['getnext',['getNext',['../class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba',1,'View.HowToPlay.getNext()'],['../class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb',1,'View.HowToPlay2.getNext()']]], + ['getnode',['getNode',['../class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19',1,'Model.Graph.getNode(int x, int y)'],['../class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936',1,'Model.Graph.getNode(Vector2 pixelCoordinates)'],['../class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a',1,'Model.Graph.getNode(Tuple< int, int > position)']]], + ['getnumofunits',['getNumOfUnits',['../class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56',1,'Model::Player']]], + ['getpixelcoordinates',['getPixelCoordinates',['../class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148',1,'View::Button']]], + ['getposition',['getPosition',['../class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35',1,'Model::Node']]], + ['getpositionx',['getPositionX',['../class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c',1,'Model::Node']]], + ['getpositiony',['getPositionY',['../class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819',1,'Model::Node']]], + ['getquit',['getQuit',['../class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27',1,'View.HowToPlay.getQuit()'],['../class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28',1,'View.HowToPlay2.getQuit()'],['../class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539',1,'View.HowToPlay3.getQuit()']]], + ['getspriteimage',['getSpriteImage',['../class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2',1,'Model.Archer.getSpriteImage()'],['../class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f',1,'Model.Mage.getSpriteImage()'],['../interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3',1,'Model.Unit.getSpriteImage()'],['../class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a',1,'Model.Warrior.getSpriteImage()']]], + ['getstats',['getStats',['../class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d',1,'Model.Archer.getStats()'],['../class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f',1,'Model.Mage.getStats()'],['../interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b',1,'Model.Unit.getStats()'],['../class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a',1,'Model.Warrior.getStats()']]], + ['getunits',['getUnits',['../class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a',1,'Model::Player']]], + ['graph',['Graph',['../class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c',1,'Model::Graph']]], + ['graph',['Graph',['../class_model_1_1_graph.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/all_7.html b/Doc/MIS/html/search/all_7.html new file mode 100644 index 0000000000000000000000000000000000000000..0e8c527eea202a0dec548dfb3abe7b6c15303739 --- /dev/null +++ b/Doc/MIS/html/search/all_7.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_7.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_7.js b/Doc/MIS/html/search/all_7.js new file mode 100644 index 0000000000000000000000000000000000000000..cf8c76bc83e0169f57e3c311cf833cf9fcf330e2 --- /dev/null +++ b/Doc/MIS/html/search/all_7.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['hasunitfinishedactions',['hasUnitFinishedActions',['../class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab',1,'Controller::GameFunction']]], + ['height',['Height',['../class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068',1,'Model::Graph']]], + ['howtoplay',['HowToPlay',['../class_view_1_1_how_to_play.html',1,'View']]], + ['howtoplay',['HowToPlay',['../class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960',1,'View::HowToPlay']]], + ['howtoplay2',['HowToPlay2',['../class_view_1_1_how_to_play2.html',1,'View']]], + ['howtoplay2',['HowToPlay2',['../class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0',1,'View::HowToPlay2']]], + ['howtoplay3',['HowToPlay3',['../class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1',1,'View::HowToPlay3']]], + ['howtoplay3',['HowToPlay3',['../class_view_1_1_how_to_play3.html',1,'View']]], + ['hp',['Hp',['../class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f',1,'Model.Archer.Hp()'],['../class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce',1,'Model.Mage.Hp()'],['../interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1',1,'Model.Unit.Hp()'],['../class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735',1,'Model.Warrior.Hp()']]] +]; diff --git a/Doc/MIS/html/search/all_8.html b/Doc/MIS/html/search/all_8.html new file mode 100644 index 0000000000000000000000000000000000000000..80bda06772eafe6436ac97b22eaee17abfdfe730 --- /dev/null +++ b/Doc/MIS/html/search/all_8.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_8.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_8.js b/Doc/MIS/html/search/all_8.js new file mode 100644 index 0000000000000000000000000000000000000000..22580b78148a7bed09246deb60e90a2edc0734bf --- /dev/null +++ b/Doc/MIS/html/search/all_8.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['initialize',['Initialize',['../class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608',1,'Controller::Game']]], + ['int',['Int',['../interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa',1,'Model::Unit']]], + ['isanenemyunitinrange',['isAnEnemyUnitInRange',['../class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c',1,'Controller::GameFunction']]], + ['isbuttonactive',['isButtonActive',['../class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e',1,'Model.Archer.isButtonActive()'],['../class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914',1,'Model.Mage.isButtonActive()'],['../interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4',1,'Model.Unit.isButtonActive()'],['../class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2',1,'Model.Warrior.isButtonActive()']]], + ['isenemyunitinrange',['isEnemyUnitInRange',['../class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517',1,'Controller::GameFunction']]], + ['isgameover',['isGameOver',['../class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43',1,'Controller::GameFunction']]], + ['isobstacle',['isObstacle',['../class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34',1,'Model::Node']]], + ['isoccupied',['isOccupied',['../class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4',1,'Model::Node']]], + ['isturnover',['isTurnOver',['../class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385',1,'Controller::GameFunction']]] +]; diff --git a/Doc/MIS/html/search/all_9.html b/Doc/MIS/html/search/all_9.html new file mode 100644 index 0000000000000000000000000000000000000000..8ebc8a2aaaac624fbd0533b371b28df518eaa699 --- /dev/null +++ b/Doc/MIS/html/search/all_9.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_9.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_9.js b/Doc/MIS/html/search/all_9.js new file mode 100644 index 0000000000000000000000000000000000000000..051f60d2cc085afc9278f7cbd10e78bab970a094 --- /dev/null +++ b/Doc/MIS/html/search/all_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['level',['Level',['../class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6',1,'Model.Archer.Level()'],['../class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af',1,'Model.Mage.Level()'],['../interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5',1,'Model.Unit.Level()'],['../class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6',1,'Model.Warrior.Level()']]], + ['loadcontent',['LoadContent',['../class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770',1,'Controller::Game']]] +]; diff --git a/Doc/MIS/html/search/all_a.html b/Doc/MIS/html/search/all_a.html new file mode 100644 index 0000000000000000000000000000000000000000..f17bf66a3c54ee0451737e18ce9ab62b23a4ebcf --- /dev/null +++ b/Doc/MIS/html/search/all_a.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_a.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_a.js b/Doc/MIS/html/search/all_a.js new file mode 100644 index 0000000000000000000000000000000000000000..4be9a3b4095f384cc39cf0492a23fdb1d01e8be7 --- /dev/null +++ b/Doc/MIS/html/search/all_a.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['mage',['Mage',['../class_model_1_1_mage.html',1,'Model']]], + ['mage',['Mage',['../class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16',1,'Model::Mage']]], + ['mainmenu',['MainMenu',['../class_view_1_1_main_menu.html',1,'View']]], + ['mainmenu',['MainMenu',['../class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32',1,'View::MainMenu']]], + ['model',['Model',['../namespace_model.html',1,'']]], + ['modint',['modInt',['../interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c',1,'Model::Weapon']]], + ['modskill',['modSkill',['../interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab',1,'Model::Weapon']]], + ['modstr',['modStr',['../interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027',1,'Model::Weapon']]], + ['mousehandler',['MouseHandler',['../class_controller_1_1_mouse_handler.html',1,'Controller']]], + ['movabilityobstruction',['movabilityObstruction',['../class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632',1,'Model::Node']]] +]; diff --git a/Doc/MIS/html/search/all_b.html b/Doc/MIS/html/search/all_b.html new file mode 100644 index 0000000000000000000000000000000000000000..6ef469ecc433a9ec98e5a9f50a5f01073036d6a9 --- /dev/null +++ b/Doc/MIS/html/search/all_b.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_b.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_b.js b/Doc/MIS/html/search/all_b.js new file mode 100644 index 0000000000000000000000000000000000000000..3b7aac000c59dbf05bf82d83deba49eddd35eafd --- /dev/null +++ b/Doc/MIS/html/search/all_b.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['name',['name',['../interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8',1,'Model::Weapon']]], + ['node',['Node',['../class_model_1_1_node.html',1,'Model']]], + ['node',['Node',['../class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4',1,'Model::Node']]], + ['numberofnodes',['NumberOfNodes',['../class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544',1,'Model::Graph']]] +]; diff --git a/Doc/MIS/html/search/all_c.html b/Doc/MIS/html/search/all_c.html new file mode 100644 index 0000000000000000000000000000000000000000..4ca7bb9e5688c3518184b3955ceb3e09a5e8c2e9 --- /dev/null +++ b/Doc/MIS/html/search/all_c.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_c.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_c.js b/Doc/MIS/html/search/all_c.js new file mode 100644 index 0000000000000000000000000000000000000000..aeba49f33f439d3020c5ff11969c909927625e82 --- /dev/null +++ b/Doc/MIS/html/search/all_c.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ownsunit',['ownsUnit',['../class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e',1,'Model::Player']]] +]; diff --git a/Doc/MIS/html/search/all_d.html b/Doc/MIS/html/search/all_d.html new file mode 100644 index 0000000000000000000000000000000000000000..fedf606a72598b869ef26827fc2eb34f6f868609 --- /dev/null +++ b/Doc/MIS/html/search/all_d.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_d.js b/Doc/MIS/html/search/all_d.js new file mode 100644 index 0000000000000000000000000000000000000000..35fbdbd28ad391c0edea73643cda36063ca66138 --- /dev/null +++ b/Doc/MIS/html/search/all_d.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['pathfinder',['pathFinder',['../class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8',1,'Controller::GameFunction']]], + ['pixelcoordinates',['PixelCoordinates',['../class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e',1,'Model.Archer.PixelCoordinates()'],['../class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa',1,'Model.Mage.PixelCoordinates()'],['../interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425',1,'Model.Unit.PixelCoordinates()'],['../class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa',1,'Model.Warrior.PixelCoordinates()']]], + ['playableunitselected',['playableUnitSelected',['../class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9',1,'Model::GameState']]], + ['player',['Player',['../class_model_1_1_player.html',1,'Model']]], + ['player',['Player',['../class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170',1,'Model::Player']]], + ['position',['Position',['../class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533',1,'Model.Archer.Position()'],['../class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8',1,'Model.Mage.Position()'],['../interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b',1,'Model.Unit.Position()'],['../class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5',1,'Model.Warrior.Position()']]] +]; diff --git a/Doc/MIS/html/search/all_e.html b/Doc/MIS/html/search/all_e.html new file mode 100644 index 0000000000000000000000000000000000000000..9b7808609960b3860aa2e1bc5c5042bf8f221e63 --- /dev/null +++ b/Doc/MIS/html/search/all_e.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_e.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_e.js b/Doc/MIS/html/search/all_e.js new file mode 100644 index 0000000000000000000000000000000000000000..c81ce55c3fcb55976782341dbab16bd53e2a6979 --- /dev/null +++ b/Doc/MIS/html/search/all_e.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['range',['range',['../interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8',1,'Model::Weapon']]], + ['res',['Res',['../class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7',1,'Model.Archer.Res()'],['../class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27',1,'Model.Mage.Res()'],['../interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22',1,'Model.Unit.Res()'],['../class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6',1,'Model.Warrior.Res()']]] +]; diff --git a/Doc/MIS/html/search/all_f.html b/Doc/MIS/html/search/all_f.html new file mode 100644 index 0000000000000000000000000000000000000000..3bf97c66fbd89669454fa079c665f915b3c33c18 --- /dev/null +++ b/Doc/MIS/html/search/all_f.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_f.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/all_f.js b/Doc/MIS/html/search/all_f.js new file mode 100644 index 0000000000000000000000000000000000000000..43123fcb6075fcbb64781ded184b8154093c558a --- /dev/null +++ b/Doc/MIS/html/search/all_f.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['selectedunit',['selectedUnit',['../class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9',1,'Model::GameState']]], + ['setbuttoncoordinates',['setButtonCoordinates',['../class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc',1,'Model.Archer.setButtonCoordinates()'],['../class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1',1,'Model.Mage.setButtonCoordinates()'],['../interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb',1,'Model.Unit.setButtonCoordinates()'],['../class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a',1,'Model.Warrior.setButtonCoordinates()']]], + ['setinitialstats',['setInitialStats',['../class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2',1,'Model.Archer.setInitialStats()'],['../class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d',1,'Model.Mage.setInitialStats()'],['../interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5',1,'Model.Unit.setInitialStats()'],['../class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd',1,'Model.Warrior.setInitialStats()']]], + ['setinstructfalse',['setInstructFalse',['../class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5',1,'View::MainMenu']]], + ['setmovablenodes',['setMovableNodes',['../class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93',1,'Controller::GameFunction']]], + ['setnextfalse',['setNextFalse',['../class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973',1,'View.HowToPlay.setNextFalse()'],['../class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d',1,'View.HowToPlay2.setNextFalse()']]], + ['setnode',['setNode',['../class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4',1,'Model::Graph']]], + ['setpixelcoordinates',['setPixelCoordinates',['../class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d',1,'View::Button']]], + ['setquitfalse',['setQuitFalse',['../class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59',1,'View.HowToPlay.setQuitFalse()'],['../class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5',1,'View.HowToPlay2.setQuitFalse()'],['../class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6',1,'View.HowToPlay3.setQuitFalse()']]], + ['skill',['Skill',['../interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81',1,'Model::Unit']]], + ['speed',['Speed',['../class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252',1,'Model.Archer.Speed()'],['../class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60',1,'Model.Mage.Speed()'],['../interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920',1,'Model.Unit.Speed()'],['../class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4',1,'Model.Warrior.Speed()']]], + ['startturn',['startTurn',['../class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5',1,'Controller::GameFunction']]], + ['str',['Str',['../interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17',1,'Model::Unit']]] +]; diff --git a/Doc/MIS/html/search/classes_0.html b/Doc/MIS/html/search/classes_0.html new file mode 100644 index 0000000000000000000000000000000000000000..2e45b2cb48c529895c7d33695988b39bcb4fbb77 --- /dev/null +++ b/Doc/MIS/html/search/classes_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_0.js b/Doc/MIS/html/search/classes_0.js new file mode 100644 index 0000000000000000000000000000000000000000..d86613c9465e446fd0ae76b85eb792099a2dcdca --- /dev/null +++ b/Doc/MIS/html/search/classes_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['archer',['Archer',['../class_model_1_1_archer.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_1.html b/Doc/MIS/html/search/classes_1.html new file mode 100644 index 0000000000000000000000000000000000000000..5f1bc63bb04ef3dcf3dcfcc9482526b4204466df --- /dev/null +++ b/Doc/MIS/html/search/classes_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_1.js b/Doc/MIS/html/search/classes_1.js new file mode 100644 index 0000000000000000000000000000000000000000..c58ea81a1c65f2f9d7794f2818f21f1c7809d2dc --- /dev/null +++ b/Doc/MIS/html/search/classes_1.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['bronzebow',['BronzeBow',['../class_model_1_1_bronze_bow.html',1,'Model']]], + ['bronzesword',['BronzeSword',['../class_model_1_1_bronze_sword.html',1,'Model']]], + ['button',['Button',['../class_view_1_1_button.html',1,'View']]] +]; diff --git a/Doc/MIS/html/search/classes_2.html b/Doc/MIS/html/search/classes_2.html new file mode 100644 index 0000000000000000000000000000000000000000..e3a6f9c0142a2741d97518711a7302d2021a68a9 --- /dev/null +++ b/Doc/MIS/html/search/classes_2.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_2.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_2.js b/Doc/MIS/html/search/classes_2.js new file mode 100644 index 0000000000000000000000000000000000000000..fbba45e452c716ead529c6765f57442d5d8d43e5 --- /dev/null +++ b/Doc/MIS/html/search/classes_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['damagecalculations',['DamageCalculations',['../class_model_1_1_damage_calculations.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_3.html b/Doc/MIS/html/search/classes_3.html new file mode 100644 index 0000000000000000000000000000000000000000..ed4b46eaf1e41e410d87220b8edede0f466d7851 --- /dev/null +++ b/Doc/MIS/html/search/classes_3.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_3.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_3.js b/Doc/MIS/html/search/classes_3.js new file mode 100644 index 0000000000000000000000000000000000000000..364a043acd16e5fb4a07884721a94ff3f5c111a1 --- /dev/null +++ b/Doc/MIS/html/search/classes_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['fireball',['Fireball',['../class_model_1_1_fireball.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_4.html b/Doc/MIS/html/search/classes_4.html new file mode 100644 index 0000000000000000000000000000000000000000..b1f5f93aeebaf40879616593328058ecf05699b8 --- /dev/null +++ b/Doc/MIS/html/search/classes_4.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_4.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_4.js b/Doc/MIS/html/search/classes_4.js new file mode 100644 index 0000000000000000000000000000000000000000..d3228cdeafc8414d1ba40fc024f1624ad8ab15a0 --- /dev/null +++ b/Doc/MIS/html/search/classes_4.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['game',['Game',['../class_controller_1_1_game.html',1,'Controller']]], + ['gamefunction',['GameFunction',['../class_controller_1_1_game_function.html',1,'Controller']]], + ['gamestate',['GameState',['../class_model_1_1_game_state.html',1,'Model']]], + ['graph',['Graph',['../class_model_1_1_graph.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_5.html b/Doc/MIS/html/search/classes_5.html new file mode 100644 index 0000000000000000000000000000000000000000..7f718b394b744235afd7c4b0a5eb2661a2c1f582 --- /dev/null +++ b/Doc/MIS/html/search/classes_5.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_5.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_5.js b/Doc/MIS/html/search/classes_5.js new file mode 100644 index 0000000000000000000000000000000000000000..dc7ff6e9589dd4dc765865ba0ba0adea38a812a7 --- /dev/null +++ b/Doc/MIS/html/search/classes_5.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['howtoplay',['HowToPlay',['../class_view_1_1_how_to_play.html',1,'View']]], + ['howtoplay2',['HowToPlay2',['../class_view_1_1_how_to_play2.html',1,'View']]], + ['howtoplay3',['HowToPlay3',['../class_view_1_1_how_to_play3.html',1,'View']]] +]; diff --git a/Doc/MIS/html/search/classes_6.html b/Doc/MIS/html/search/classes_6.html new file mode 100644 index 0000000000000000000000000000000000000000..1c02825c67e9987a4dabae37d9f629190b286922 --- /dev/null +++ b/Doc/MIS/html/search/classes_6.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_6.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_6.js b/Doc/MIS/html/search/classes_6.js new file mode 100644 index 0000000000000000000000000000000000000000..daf4f80be1b99bd37c235360164e54f979eaa4fd --- /dev/null +++ b/Doc/MIS/html/search/classes_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['mage',['Mage',['../class_model_1_1_mage.html',1,'Model']]], + ['mainmenu',['MainMenu',['../class_view_1_1_main_menu.html',1,'View']]], + ['mousehandler',['MouseHandler',['../class_controller_1_1_mouse_handler.html',1,'Controller']]] +]; diff --git a/Doc/MIS/html/search/classes_7.html b/Doc/MIS/html/search/classes_7.html new file mode 100644 index 0000000000000000000000000000000000000000..2af8b706d904ae24ddd823042ee3c02c14f06956 --- /dev/null +++ b/Doc/MIS/html/search/classes_7.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_7.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_7.js b/Doc/MIS/html/search/classes_7.js new file mode 100644 index 0000000000000000000000000000000000000000..3bf8faed87a42c2bdf50d2da4cf5b60d66141de0 --- /dev/null +++ b/Doc/MIS/html/search/classes_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['node',['Node',['../class_model_1_1_node.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_8.html b/Doc/MIS/html/search/classes_8.html new file mode 100644 index 0000000000000000000000000000000000000000..a57aeaeca031ea43ba4679f4e2a8e05907e30ccd --- /dev/null +++ b/Doc/MIS/html/search/classes_8.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_8.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_8.js b/Doc/MIS/html/search/classes_8.js new file mode 100644 index 0000000000000000000000000000000000000000..0cdf767d3e8d57186a565df7af373403ff1a1cd4 --- /dev/null +++ b/Doc/MIS/html/search/classes_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['player',['Player',['../class_model_1_1_player.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_9.html b/Doc/MIS/html/search/classes_9.html new file mode 100644 index 0000000000000000000000000000000000000000..59ec04485b7a8f55c779c66dbbbecd4878539a67 --- /dev/null +++ b/Doc/MIS/html/search/classes_9.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_9.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_9.js b/Doc/MIS/html/search/classes_9.js new file mode 100644 index 0000000000000000000000000000000000000000..15c7d8df249802a2d13efb7ace8e39b1d8e36479 --- /dev/null +++ b/Doc/MIS/html/search/classes_9.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['unit',['Unit',['../interface_model_1_1_unit.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/classes_a.html b/Doc/MIS/html/search/classes_a.html new file mode 100644 index 0000000000000000000000000000000000000000..aaef5a5326b6a511c7b49fc45ad07aab95c829a6 --- /dev/null +++ b/Doc/MIS/html/search/classes_a.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_a.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/classes_a.js b/Doc/MIS/html/search/classes_a.js new file mode 100644 index 0000000000000000000000000000000000000000..1b11b7e8cb7fd7185e0d5f2c1f0d81f7e20495b9 --- /dev/null +++ b/Doc/MIS/html/search/classes_a.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['warrior',['Warrior',['../class_model_1_1_warrior.html',1,'Model']]], + ['weapon',['Weapon',['../interface_model_1_1_weapon.html',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/close.png b/Doc/MIS/html/search/close.png new file mode 100644 index 0000000000000000000000000000000000000000..9342d3dfeea7b7c4ee610987e717804b5a42ceb9 Binary files /dev/null and b/Doc/MIS/html/search/close.png differ diff --git a/Doc/MIS/html/search/enums_0.html b/Doc/MIS/html/search/enums_0.html new file mode 100644 index 0000000000000000000000000000000000000000..f3028adbd2b5e4dcd0f55e0ff9ecc267b41fd239 --- /dev/null +++ b/Doc/MIS/html/search/enums_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="enums_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/enums_0.js b/Doc/MIS/html/search/enums_0.js new file mode 100644 index 0000000000000000000000000000000000000000..7a0d851e38103faf89240b28b5ab0b76cf6c00f3 --- /dev/null +++ b/Doc/MIS/html/search/enums_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['buttontype',['ButtonType',['../namespace_view.html#a422668be256dfc045dfa818cfd90a99e',1,'View']]] +]; diff --git a/Doc/MIS/html/search/enums_1.html b/Doc/MIS/html/search/enums_1.html new file mode 100644 index 0000000000000000000000000000000000000000..557299db3cdf68fb3beedab0e7b7b69b757d8f1a --- /dev/null +++ b/Doc/MIS/html/search/enums_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="enums_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/enums_1.js b/Doc/MIS/html/search/enums_1.js new file mode 100644 index 0000000000000000000000000000000000000000..f9103bf11ef15be0cf8e8ef7ddb59cef81c3c0db --- /dev/null +++ b/Doc/MIS/html/search/enums_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['unittype',['UnitType',['../namespace_model.html#a68c359d1437f179951c3fe1315410fcf',1,'Model']]] +]; diff --git a/Doc/MIS/html/search/functions_0.html b/Doc/MIS/html/search/functions_0.html new file mode 100644 index 0000000000000000000000000000000000000000..03cae5d9b902c36cf962bd9a145625e53d4300bf --- /dev/null +++ b/Doc/MIS/html/search/functions_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_0.js b/Doc/MIS/html/search/functions_0.js new file mode 100644 index 0000000000000000000000000000000000000000..e2951e57b175e7e53610fd4dbd02056f41511655 --- /dev/null +++ b/Doc/MIS/html/search/functions_0.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['addunit',['addUnit',['../class_model_1_1_player.html#a6eb0891c6c56bc41c87b3ebd4bbe3cb0',1,'Model::Player']]], + ['animate',['animate',['../class_model_1_1_archer.html#a98d25f7b4b7f365402668bcfc03eff28',1,'Model.Archer.animate()'],['../class_model_1_1_mage.html#a392e364fdf2970caec5941366cfdc6f9',1,'Model.Mage.animate()'],['../interface_model_1_1_unit.html#ae8e7d85dbf553f53c6a97a69a131e302',1,'Model.Unit.animate()'],['../class_model_1_1_warrior.html#a0e4d364c551d62c4c9b8993f299e5688',1,'Model.Warrior.animate()']]], + ['archer',['Archer',['../class_model_1_1_archer.html#ac009b1b8fdcdd5f004636f2929a24f1d',1,'Model::Archer']]] +]; diff --git a/Doc/MIS/html/search/functions_1.html b/Doc/MIS/html/search/functions_1.html new file mode 100644 index 0000000000000000000000000000000000000000..5d7a2e300520c76eb43bad3355b0ac800695b93a --- /dev/null +++ b/Doc/MIS/html/search/functions_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_1.js b/Doc/MIS/html/search/functions_1.js new file mode 100644 index 0000000000000000000000000000000000000000..296af52162f8e4561496d0328d4f0a69276676f6 --- /dev/null +++ b/Doc/MIS/html/search/functions_1.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['bronzebow',['BronzeBow',['../class_model_1_1_bronze_bow.html#a13a8963c53c07fe2d66c5428ab9c9bd6',1,'Model::BronzeBow']]], + ['bronzesword',['BronzeSword',['../class_model_1_1_bronze_sword.html#a2b6859b3e48e9cc762a236c21a2b2778',1,'Model::BronzeSword']]], + ['button',['Button',['../class_view_1_1_button.html#af1811d9154063453744af47950aeefc0',1,'View::Button']]] +]; diff --git a/Doc/MIS/html/search/functions_2.html b/Doc/MIS/html/search/functions_2.html new file mode 100644 index 0000000000000000000000000000000000000000..c21af161378e15a17ce7f798309a411d4ca2d553 --- /dev/null +++ b/Doc/MIS/html/search/functions_2.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_2.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_2.js b/Doc/MIS/html/search/functions_2.js new file mode 100644 index 0000000000000000000000000000000000000000..cbbbe7d4341bb67bb12b77949b542525467d4a55 --- /dev/null +++ b/Doc/MIS/html/search/functions_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['dispose',['Dispose',['../class_view_1_1_how_to_play.html#a459b97062e80b85abff7660bbee504c8',1,'View.HowToPlay.Dispose()'],['../class_view_1_1_how_to_play2.html#abf387c99fbdd073bae8f6134235904ac',1,'View.HowToPlay2.Dispose()'],['../class_view_1_1_how_to_play3.html#a9383ffca40f40f1554ee919b72b6af54',1,'View.HowToPlay3.Dispose()'],['../class_view_1_1_main_menu.html#aa2671453d4e5063258fb3cef3b125a9b',1,'View.MainMenu.Dispose()']]], + ['draw',['Draw',['../class_controller_1_1_game.html#a243addf184836c81e6a4f793b0ba0a9f',1,'Controller::Game']]] +]; diff --git a/Doc/MIS/html/search/functions_3.html b/Doc/MIS/html/search/functions_3.html new file mode 100644 index 0000000000000000000000000000000000000000..e6f4744248b4d7e8b208acbc506dfdc1e46ecb0d --- /dev/null +++ b/Doc/MIS/html/search/functions_3.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_3.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_3.js b/Doc/MIS/html/search/functions_3.js new file mode 100644 index 0000000000000000000000000000000000000000..98a525fdac4f3f84183cf3acd037d4d89da0e12b --- /dev/null +++ b/Doc/MIS/html/search/functions_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['enemyunitsinrange',['enemyUnitsInRange',['../class_controller_1_1_game_function.html#a0854a33c1864a8196c1037fd88d7b1c0',1,'Controller::GameFunction']]] +]; diff --git a/Doc/MIS/html/search/functions_4.html b/Doc/MIS/html/search/functions_4.html new file mode 100644 index 0000000000000000000000000000000000000000..9ae34ff2e684481f3d8fca4d50886555dcb32a85 --- /dev/null +++ b/Doc/MIS/html/search/functions_4.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_4.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_4.js b/Doc/MIS/html/search/functions_4.js new file mode 100644 index 0000000000000000000000000000000000000000..b7c34de948370140e038eb306e035f4844fb5c82 --- /dev/null +++ b/Doc/MIS/html/search/functions_4.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['finaldamage',['finalDamage',['../class_model_1_1_damage_calculations.html#a3b2362132e274bc821c9c365511fc11b',1,'Model::DamageCalculations']]], + ['fireball',['Fireball',['../class_model_1_1_fireball.html#a7d641800d5354711f67ce3554a2deb0d',1,'Model::Fireball']]] +]; diff --git a/Doc/MIS/html/search/functions_5.html b/Doc/MIS/html/search/functions_5.html new file mode 100644 index 0000000000000000000000000000000000000000..54f53d07228ec31af523835f79ee2ae14da58af1 --- /dev/null +++ b/Doc/MIS/html/search/functions_5.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_5.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_5.js b/Doc/MIS/html/search/functions_5.js new file mode 100644 index 0000000000000000000000000000000000000000..55245e306da9ce09d2893387a37d731f4d92614a --- /dev/null +++ b/Doc/MIS/html/search/functions_5.js @@ -0,0 +1,33 @@ +var searchData= +[ + ['getattackablenodes',['getAttackableNodes',['../class_controller_1_1_game_function.html#ad6e9b27c164633455ec7433d3b7b6f50',1,'Controller::GameFunction']]], + ['getattackrangeaftermoving',['getAttackRangeAfterMoving',['../class_controller_1_1_game_function.html#a6b9f4cc1fad812ac925b242d0debe4a5',1,'Controller::GameFunction']]], + ['getbuttonimage',['getButtonImage',['../class_model_1_1_archer.html#aa643e878609d234a3fddca294d4d6756',1,'Model.Archer.getButtonImage()'],['../class_model_1_1_mage.html#a6c34591377675f0643fa36a2d1cb378d',1,'Model.Mage.getButtonImage()'],['../interface_model_1_1_unit.html#a626820d6c1777ab3e3c2f3a2ce272e80',1,'Model.Unit.getButtonImage()'],['../class_model_1_1_warrior.html#a113fc7c767ebae89aa0968f2b467a007',1,'Model.Warrior.getButtonImage()']]], + ['getbuttonoftype',['getButtonOfType',['../class_model_1_1_archer.html#a31d5c71c429ebedef4a23b84b93408ff',1,'Model.Archer.getButtonOfType()'],['../class_model_1_1_mage.html#adeea72218aed1013de839d04e5bde84c',1,'Model.Mage.getButtonOfType()'],['../interface_model_1_1_unit.html#a4988717b894a45723cca1a8b4dac5060',1,'Model.Unit.getButtonOfType()'],['../class_model_1_1_warrior.html#a0f5a9c6f5e550f44c84ca64ce022e9a6',1,'Model.Warrior.getButtonOfType()']]], + ['getbuttons',['getButtons',['../class_model_1_1_archer.html#a9bbc5e879beafc25e5a33ff80c59ae82',1,'Model.Archer.getButtons()'],['../class_model_1_1_mage.html#a57c850c709b509cf0e23f8ebf24da6f0',1,'Model.Mage.getButtons()'],['../interface_model_1_1_unit.html#a99c8b10dfe133f56582ca11c1dbd230d',1,'Model.Unit.getButtons()'],['../class_model_1_1_warrior.html#acfd43847689bf1dc0d58429688c33b24',1,'Model.Warrior.getButtons()']]], + ['getbuttontype',['getButtonType',['../class_view_1_1_button.html#ad4e4d38e1b9292cfca0640d28b40e755',1,'View::Button']]], + ['getcharattackinfo',['getCharAttackInfo',['../class_model_1_1_archer.html#a9f123fc3a324eaf0041462dd40b5ae10',1,'Model.Archer.getCharAttackInfo()'],['../class_model_1_1_mage.html#aa7c9dac02c4b3c6cd7c6de256c3b2f92',1,'Model.Mage.getCharAttackInfo()'],['../interface_model_1_1_unit.html#aeb30a63287028d9e2d123805b62d3208',1,'Model.Unit.getCharAttackInfo()'],['../class_model_1_1_warrior.html#a40dcd822abdd36758035af6c6d08c0b9',1,'Model.Warrior.getCharAttackInfo()']]], + ['getcharinfo',['getCharInfo',['../class_model_1_1_archer.html#a4b1194492d3f9f83fe9842691fc110d9',1,'Model.Archer.getCharInfo()'],['../class_model_1_1_mage.html#ae6256780be01124c7c9864f4f44b9810',1,'Model.Mage.getCharInfo()'],['../interface_model_1_1_unit.html#adc54c0be5f1b657e30b56255a918f32b',1,'Model.Unit.getCharInfo()'],['../class_model_1_1_warrior.html#a243b4ba6d7657e5275c0d74c1e9800e5',1,'Model.Warrior.getCharInfo()']]], + ['getclass',['getClass',['../class_model_1_1_archer.html#abd8b38fd96a6bf778cd635afd1ae13a4',1,'Model.Archer.getClass()'],['../class_model_1_1_mage.html#aa8290998eb8b6db8fd6544478771b4ab',1,'Model.Mage.getClass()'],['../interface_model_1_1_unit.html#aab6dc07db093c4bb9f5a7beb0ac02480',1,'Model.Unit.getClass()'],['../class_model_1_1_warrior.html#a0b8ae1e95b8b00d7da976330db80b968',1,'Model.Warrior.getClass()']]], + ['getcritrate',['getCritRate',['../class_model_1_1_damage_calculations.html#a8d8f1598155ed6d7719b9adc973831ed',1,'Model::DamageCalculations']]], + ['getcurrentframe',['getCurrentFrame',['../class_model_1_1_archer.html#a5fc8cd405796886cde8f15f3ad095ca2',1,'Model.Archer.getCurrentFrame()'],['../class_model_1_1_mage.html#a1da4d9ee53db7b09e338bdab37a57167',1,'Model.Mage.getCurrentFrame()'],['../interface_model_1_1_unit.html#aecb5510d53b67568a17e89b40cdadda7',1,'Model.Unit.getCurrentFrame()'],['../class_model_1_1_warrior.html#a8e10a65906547abdc55aabb7852eb34a',1,'Model.Warrior.getCurrentFrame()']]], + ['getdamagedealt',['getDamageDealt',['../class_model_1_1_damage_calculations.html#a40a09ac0e5901820aed5d66ccd2725ea',1,'Model::DamageCalculations']]], + ['getequipableweapons',['getEquipableWeapons',['../class_model_1_1_archer.html#a7a0e7ac7aae02a3f7ceb19a5581f114b',1,'Model.Archer.getEquipableWeapons()'],['../class_model_1_1_mage.html#a5735ecc56cf62b4dccaf218560458bef',1,'Model.Mage.getEquipableWeapons()'],['../interface_model_1_1_unit.html#aa57825903df804dda77d78eb2ca90201',1,'Model.Unit.getEquipableWeapons()'],['../class_model_1_1_warrior.html#a8f611698ecb5f6b287fd68863462a344',1,'Model.Warrior.getEquipableWeapons()']]], + ['gethitcount',['getHitCount',['../class_model_1_1_damage_calculations.html#a4f32191388e849f2f1dbaa6bac1015fa',1,'Model::DamageCalculations']]], + ['gethitrate',['getHitRate',['../class_model_1_1_damage_calculations.html#a21e4eed0da4ff5c11ed59949f7a4a4f8',1,'Model::DamageCalculations']]], + ['getimage',['getImage',['../class_view_1_1_button.html#a78a9a7b0a48dddfe30553e964a39e576',1,'View::Button']]], + ['getinstruct',['getInstruct',['../class_view_1_1_main_menu.html#ae90536ff5fa8f90ebe1d99623021817f',1,'View::MainMenu']]], + ['getmovability',['getMovability',['../class_model_1_1_archer.html#a29de04ac6f33498c7b0b11aa7000846d',1,'Model.Archer.getMovability()'],['../class_model_1_1_mage.html#a90c0cbd19877be1cb16be4300e7413b2',1,'Model.Mage.getMovability()'],['../interface_model_1_1_unit.html#afc43169b2f01f5015540c220bc9d2b9c',1,'Model.Unit.getMovability()'],['../class_model_1_1_warrior.html#a0810e8a8317bf596b2368100fcc6ca75',1,'Model.Warrior.getMovability()']]], + ['getnext',['getNext',['../class_view_1_1_how_to_play.html#a0381eec7136accb054e37dea55e949ba',1,'View.HowToPlay.getNext()'],['../class_view_1_1_how_to_play2.html#acc5864615b7fce1f8cb3b46af0ea8abb',1,'View.HowToPlay2.getNext()']]], + ['getnode',['getNode',['../class_model_1_1_graph.html#a1ea50115c6a9535a1040c336d7cd8d19',1,'Model.Graph.getNode(int x, int y)'],['../class_model_1_1_graph.html#a7acc189afb46afd8b3ca2525a231d936',1,'Model.Graph.getNode(Vector2 pixelCoordinates)'],['../class_model_1_1_graph.html#ab52a2f2957dec95ebb923ef3f6af607a',1,'Model.Graph.getNode(Tuple< int, int > position)']]], + ['getnumofunits',['getNumOfUnits',['../class_model_1_1_player.html#ad128636680b101f6c4462d6630368a56',1,'Model::Player']]], + ['getpixelcoordinates',['getPixelCoordinates',['../class_view_1_1_button.html#ab5af522cf14ccd4b5cb98db22b3d2148',1,'View::Button']]], + ['getposition',['getPosition',['../class_model_1_1_node.html#a83a08bcb71d957094e9bc5661f6f4c35',1,'Model::Node']]], + ['getpositionx',['getPositionX',['../class_model_1_1_node.html#ab846e889c97ad9a5f7db27142e48f58c',1,'Model::Node']]], + ['getpositiony',['getPositionY',['../class_model_1_1_node.html#a852b1840bbb35cdd5ce1e4eba2e43819',1,'Model::Node']]], + ['getquit',['getQuit',['../class_view_1_1_how_to_play.html#a271b045914c0603653a830098b806f27',1,'View.HowToPlay.getQuit()'],['../class_view_1_1_how_to_play2.html#a199c1bf8e53a56e23c14ea81e5900c28',1,'View.HowToPlay2.getQuit()'],['../class_view_1_1_how_to_play3.html#a0e08141a83247c96907d6677ac0da539',1,'View.HowToPlay3.getQuit()']]], + ['getspriteimage',['getSpriteImage',['../class_model_1_1_archer.html#a4efe27d91b20d37fee32b7144bbe4af2',1,'Model.Archer.getSpriteImage()'],['../class_model_1_1_mage.html#af32359315cd33ca16d78c83d3f898e8f',1,'Model.Mage.getSpriteImage()'],['../interface_model_1_1_unit.html#a7c076427c8ef933d33ae50c76ea995b3',1,'Model.Unit.getSpriteImage()'],['../class_model_1_1_warrior.html#abcbb2031c3f28d0a4c3509aa30b6308a',1,'Model.Warrior.getSpriteImage()']]], + ['getstats',['getStats',['../class_model_1_1_archer.html#a6b4732f3d000afcc82512e5e35ede43d',1,'Model.Archer.getStats()'],['../class_model_1_1_mage.html#a226ae9e107258aca2485b887a9f2015f',1,'Model.Mage.getStats()'],['../interface_model_1_1_unit.html#a52301b538035cebd1ac9bc76bb09948b',1,'Model.Unit.getStats()'],['../class_model_1_1_warrior.html#a6361e8105573a09d8f29935b41d2a59a',1,'Model.Warrior.getStats()']]], + ['getunits',['getUnits',['../class_model_1_1_player.html#a3c61df9a7f3755ed7355e4a3cd4e685a',1,'Model::Player']]], + ['graph',['Graph',['../class_model_1_1_graph.html#a70e0c2327268c051423e64454fd63c1c',1,'Model::Graph']]] +]; diff --git a/Doc/MIS/html/search/functions_6.html b/Doc/MIS/html/search/functions_6.html new file mode 100644 index 0000000000000000000000000000000000000000..c7bc6fbc7a60bd331ae5bdb509946d08945429bc --- /dev/null +++ b/Doc/MIS/html/search/functions_6.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_6.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_6.js b/Doc/MIS/html/search/functions_6.js new file mode 100644 index 0000000000000000000000000000000000000000..c2d6aa39af5df45ec872735835c8060443f3fa97 --- /dev/null +++ b/Doc/MIS/html/search/functions_6.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['hasunitfinishedactions',['hasUnitFinishedActions',['../class_controller_1_1_game_function.html#ac23bfd530d3a087da49065fce84821ab',1,'Controller::GameFunction']]], + ['howtoplay',['HowToPlay',['../class_view_1_1_how_to_play.html#a5c24309243dd0682ad9e25ecaf15e960',1,'View::HowToPlay']]], + ['howtoplay2',['HowToPlay2',['../class_view_1_1_how_to_play2.html#a275238cab088650a4930ba6e0f1ba7b0',1,'View::HowToPlay2']]], + ['howtoplay3',['HowToPlay3',['../class_view_1_1_how_to_play3.html#a55470f85b01b5025cc11d7f75655f9d1',1,'View::HowToPlay3']]] +]; diff --git a/Doc/MIS/html/search/functions_7.html b/Doc/MIS/html/search/functions_7.html new file mode 100644 index 0000000000000000000000000000000000000000..7f10e2bd1a3c16597a059cc84b8fbea41e8c391d --- /dev/null +++ b/Doc/MIS/html/search/functions_7.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_7.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_7.js b/Doc/MIS/html/search/functions_7.js new file mode 100644 index 0000000000000000000000000000000000000000..5e69fa400a195de84f99f1417adb4f50a93b668d --- /dev/null +++ b/Doc/MIS/html/search/functions_7.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['initialize',['Initialize',['../class_controller_1_1_game.html#aa3a270df3da66d794d8607e029bf9608',1,'Controller::Game']]], + ['isanenemyunitinrange',['isAnEnemyUnitInRange',['../class_controller_1_1_game_function.html#a22e673cfb256b9f2428f0fd81546bd7c',1,'Controller::GameFunction']]], + ['isbuttonactive',['isButtonActive',['../class_model_1_1_archer.html#ae2eb6257593149ac06d4518e3ee52d5e',1,'Model.Archer.isButtonActive()'],['../class_model_1_1_mage.html#ad4c42c550ad5993ee7fd773e896fc914',1,'Model.Mage.isButtonActive()'],['../interface_model_1_1_unit.html#ae9cd223ee338da82906a99bd32e72bb4',1,'Model.Unit.isButtonActive()'],['../class_model_1_1_warrior.html#a10925eec2f2749a02bcee78c273646f2',1,'Model.Warrior.isButtonActive()']]], + ['isenemyunitinrange',['isEnemyUnitInRange',['../class_controller_1_1_game_function.html#a0e573edb9537563b1ef6a854739c5517',1,'Controller::GameFunction']]], + ['isgameover',['isGameOver',['../class_controller_1_1_game_function.html#a0696007a9d80f8e6ae9b28b3a3ba4b43',1,'Controller::GameFunction']]], + ['isoccupied',['isOccupied',['../class_model_1_1_node.html#a470e31a9c20caf629e6922eb5c3688e4',1,'Model::Node']]], + ['isturnover',['isTurnOver',['../class_controller_1_1_game_function.html#ad685bf2e60bc063664f47ac2cc1fc385',1,'Controller::GameFunction']]] +]; diff --git a/Doc/MIS/html/search/functions_8.html b/Doc/MIS/html/search/functions_8.html new file mode 100644 index 0000000000000000000000000000000000000000..347734a834266b0bbbaa3eace36772d6227c5b71 --- /dev/null +++ b/Doc/MIS/html/search/functions_8.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_8.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_8.js b/Doc/MIS/html/search/functions_8.js new file mode 100644 index 0000000000000000000000000000000000000000..9d8c5af6bdbf1314543df901cb8b1dbfce08efcb --- /dev/null +++ b/Doc/MIS/html/search/functions_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['loadcontent',['LoadContent',['../class_controller_1_1_game.html#a05c5bf033337a7f5130735e218772770',1,'Controller::Game']]] +]; diff --git a/Doc/MIS/html/search/functions_9.html b/Doc/MIS/html/search/functions_9.html new file mode 100644 index 0000000000000000000000000000000000000000..6999e7e0071daf0596a599285ef1f906c9e0021a --- /dev/null +++ b/Doc/MIS/html/search/functions_9.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_9.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_9.js b/Doc/MIS/html/search/functions_9.js new file mode 100644 index 0000000000000000000000000000000000000000..54d3316685e878eebcb77c82c4125d617c29d559 --- /dev/null +++ b/Doc/MIS/html/search/functions_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['mage',['Mage',['../class_model_1_1_mage.html#a0b3127050836fcc51e07d18f9e6b9b16',1,'Model::Mage']]], + ['mainmenu',['MainMenu',['../class_view_1_1_main_menu.html#a148c2fad834c39e44eab811b9bf7cb32',1,'View::MainMenu']]] +]; diff --git a/Doc/MIS/html/search/functions_a.html b/Doc/MIS/html/search/functions_a.html new file mode 100644 index 0000000000000000000000000000000000000000..8ca8f111ab6e4d13fea48ef6718c706d9b25148d --- /dev/null +++ b/Doc/MIS/html/search/functions_a.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_a.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_a.js b/Doc/MIS/html/search/functions_a.js new file mode 100644 index 0000000000000000000000000000000000000000..b8febe4d5a7695788ecea7239ca831a4676218e3 --- /dev/null +++ b/Doc/MIS/html/search/functions_a.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['node',['Node',['../class_model_1_1_node.html#aa89ec584d03eab67ea243753c15dbbb4',1,'Model::Node']]] +]; diff --git a/Doc/MIS/html/search/functions_b.html b/Doc/MIS/html/search/functions_b.html new file mode 100644 index 0000000000000000000000000000000000000000..a6efa74805fd51e875e7df9b291989b2a179cf4f --- /dev/null +++ b/Doc/MIS/html/search/functions_b.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_b.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_b.js b/Doc/MIS/html/search/functions_b.js new file mode 100644 index 0000000000000000000000000000000000000000..aeba49f33f439d3020c5ff11969c909927625e82 --- /dev/null +++ b/Doc/MIS/html/search/functions_b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ownsunit',['ownsUnit',['../class_model_1_1_player.html#a13d973c52472d7f54e4a3451ae16236e',1,'Model::Player']]] +]; diff --git a/Doc/MIS/html/search/functions_c.html b/Doc/MIS/html/search/functions_c.html new file mode 100644 index 0000000000000000000000000000000000000000..657866505803c0e686c145d376abd31d740d8275 --- /dev/null +++ b/Doc/MIS/html/search/functions_c.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_c.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_c.js b/Doc/MIS/html/search/functions_c.js new file mode 100644 index 0000000000000000000000000000000000000000..74d619911c7d712a641cb0eeac0fccc25c057488 --- /dev/null +++ b/Doc/MIS/html/search/functions_c.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['pathfinder',['pathFinder',['../class_controller_1_1_game_function.html#a4d9123c98fec7919087096f35838acc8',1,'Controller::GameFunction']]], + ['player',['Player',['../class_model_1_1_player.html#a7d58b47184f288c3e9edffbbe1580170',1,'Model::Player']]] +]; diff --git a/Doc/MIS/html/search/functions_d.html b/Doc/MIS/html/search/functions_d.html new file mode 100644 index 0000000000000000000000000000000000000000..9f4209c9877f7ca5f176776adfd4c59d1d65156b --- /dev/null +++ b/Doc/MIS/html/search/functions_d.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_d.js b/Doc/MIS/html/search/functions_d.js new file mode 100644 index 0000000000000000000000000000000000000000..c30c00192dc5993f1408f12aa8d17a9d435c31e8 --- /dev/null +++ b/Doc/MIS/html/search/functions_d.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['setbuttoncoordinates',['setButtonCoordinates',['../class_model_1_1_archer.html#a18527b95d270412cf4e8c7500c6635fc',1,'Model.Archer.setButtonCoordinates()'],['../class_model_1_1_mage.html#a4bada92e977b0edd41cb054a44f6d2e1',1,'Model.Mage.setButtonCoordinates()'],['../interface_model_1_1_unit.html#a9fe162206435e50e8da130388ab50fdb',1,'Model.Unit.setButtonCoordinates()'],['../class_model_1_1_warrior.html#acdc442170e6d92c84dadcd7e49b90a7a',1,'Model.Warrior.setButtonCoordinates()']]], + ['setinitialstats',['setInitialStats',['../class_model_1_1_archer.html#a4de690927cc791da8de82e7bedf13cf2',1,'Model.Archer.setInitialStats()'],['../class_model_1_1_mage.html#ac9fb76a259c754214a3b9cc84c1da58d',1,'Model.Mage.setInitialStats()'],['../interface_model_1_1_unit.html#a56e3ad622997f6c49e10f4b695644eb5',1,'Model.Unit.setInitialStats()'],['../class_model_1_1_warrior.html#a8b774a43312fc8594725578630b27dfd',1,'Model.Warrior.setInitialStats()']]], + ['setinstructfalse',['setInstructFalse',['../class_view_1_1_main_menu.html#a2efeeb76551d4eceeb90f7245ad096d5',1,'View::MainMenu']]], + ['setmovablenodes',['setMovableNodes',['../class_controller_1_1_game_function.html#a9910af0161e502a272fa6fbc025d6a93',1,'Controller::GameFunction']]], + ['setnextfalse',['setNextFalse',['../class_view_1_1_how_to_play.html#acbd92ee6af1908ac5fe90e19fbc9e973',1,'View.HowToPlay.setNextFalse()'],['../class_view_1_1_how_to_play2.html#ae730b191665b52e780b0313f4906719d',1,'View.HowToPlay2.setNextFalse()']]], + ['setnode',['setNode',['../class_model_1_1_graph.html#a9bd131e174df6cf21a64cf5af0cde0d4',1,'Model::Graph']]], + ['setpixelcoordinates',['setPixelCoordinates',['../class_view_1_1_button.html#a74efddb86bfe8f4a765bd124c0fa492d',1,'View::Button']]], + ['setquitfalse',['setQuitFalse',['../class_view_1_1_how_to_play.html#a3c3a75e8e633b002acee5565578cca59',1,'View.HowToPlay.setQuitFalse()'],['../class_view_1_1_how_to_play2.html#aa9f430897069f4ed3921a0d9452052c5',1,'View.HowToPlay2.setQuitFalse()'],['../class_view_1_1_how_to_play3.html#ad31d606a58cd810afbfb12b45f3b4ca6',1,'View.HowToPlay3.setQuitFalse()']]], + ['startturn',['startTurn',['../class_controller_1_1_game_function.html#aad2a98ed072875b85bb7168c805db0e5',1,'Controller::GameFunction']]] +]; diff --git a/Doc/MIS/html/search/functions_e.html b/Doc/MIS/html/search/functions_e.html new file mode 100644 index 0000000000000000000000000000000000000000..3c23488430dd6c1c9d393b210026f4f6425f6e0d --- /dev/null +++ b/Doc/MIS/html/search/functions_e.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_e.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_e.js b/Doc/MIS/html/search/functions_e.js new file mode 100644 index 0000000000000000000000000000000000000000..d4d008ac73eeab1e02e341777a86371219ee4588 --- /dev/null +++ b/Doc/MIS/html/search/functions_e.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['update',['Update',['../class_controller_1_1_game.html#a57f4f23e2ca97a9ed820aab106a2ebe3',1,'Controller::Game']]], + ['updatemouse',['updateMouse',['../class_controller_1_1_mouse_handler.html#a13cccfe6989e87549027a0dcc694d1f6',1,'Controller::MouseHandler']]] +]; diff --git a/Doc/MIS/html/search/functions_f.html b/Doc/MIS/html/search/functions_f.html new file mode 100644 index 0000000000000000000000000000000000000000..07e22cf6a9eeda8a31b6d82cd1f286fed0fd491d --- /dev/null +++ b/Doc/MIS/html/search/functions_f.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_f.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/functions_f.js b/Doc/MIS/html/search/functions_f.js new file mode 100644 index 0000000000000000000000000000000000000000..304fd3ad7703d812039f093e7feeb3bc4270a912 --- /dev/null +++ b/Doc/MIS/html/search/functions_f.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['warrior',['Warrior',['../class_model_1_1_warrior.html#ab78e2fbb3c55ddcf59c81457c1aa97f7',1,'Model::Warrior']]] +]; diff --git a/Doc/MIS/html/search/mag_sel.png b/Doc/MIS/html/search/mag_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..81f6040a2092402b4d98f9ffa8855d12a0d4ca17 Binary files /dev/null and b/Doc/MIS/html/search/mag_sel.png differ diff --git a/Doc/MIS/html/search/namespaces_0.html b/Doc/MIS/html/search/namespaces_0.html new file mode 100644 index 0000000000000000000000000000000000000000..becd52be14bade809062d3e285495ea9b86e3fef --- /dev/null +++ b/Doc/MIS/html/search/namespaces_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="namespaces_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/namespaces_0.js b/Doc/MIS/html/search/namespaces_0.js new file mode 100644 index 0000000000000000000000000000000000000000..51b44a365929921d5a3491c67458d9d9f5367088 --- /dev/null +++ b/Doc/MIS/html/search/namespaces_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['blaze_5fbrigade',['Blaze_Brigade',['../namespace_blaze___brigade.html',1,'']]] +]; diff --git a/Doc/MIS/html/search/namespaces_1.html b/Doc/MIS/html/search/namespaces_1.html new file mode 100644 index 0000000000000000000000000000000000000000..7c1852bd78e36f6b99814ea9c77e65d858edfabb --- /dev/null +++ b/Doc/MIS/html/search/namespaces_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="namespaces_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/namespaces_1.js b/Doc/MIS/html/search/namespaces_1.js new file mode 100644 index 0000000000000000000000000000000000000000..e490a9399cb81aaa877e07bd227e1aea5c4e40b7 --- /dev/null +++ b/Doc/MIS/html/search/namespaces_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['controller',['Controller',['../namespace_controller.html',1,'']]] +]; diff --git a/Doc/MIS/html/search/namespaces_2.html b/Doc/MIS/html/search/namespaces_2.html new file mode 100644 index 0000000000000000000000000000000000000000..90fa0dc6c0cd5d2790980b93c46a320df9d00d82 --- /dev/null +++ b/Doc/MIS/html/search/namespaces_2.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="namespaces_2.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/namespaces_2.js b/Doc/MIS/html/search/namespaces_2.js new file mode 100644 index 0000000000000000000000000000000000000000..c7e91107727e02952c3aea2cf6bef56d69994abd --- /dev/null +++ b/Doc/MIS/html/search/namespaces_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['model',['Model',['../namespace_model.html',1,'']]] +]; diff --git a/Doc/MIS/html/search/namespaces_3.html b/Doc/MIS/html/search/namespaces_3.html new file mode 100644 index 0000000000000000000000000000000000000000..331313f8d37479b69a58eb592eabea444a3dff2b --- /dev/null +++ b/Doc/MIS/html/search/namespaces_3.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="namespaces_3.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/namespaces_3.js b/Doc/MIS/html/search/namespaces_3.js new file mode 100644 index 0000000000000000000000000000000000000000..04f9f401f191276dc264a2477518505b6a86b953 --- /dev/null +++ b/Doc/MIS/html/search/namespaces_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['view',['View',['../namespace_view.html',1,'']]] +]; diff --git a/Doc/MIS/html/search/nomatches.html b/Doc/MIS/html/search/nomatches.html new file mode 100644 index 0000000000000000000000000000000000000000..b1ded27e9ad6af3a2ac11e6b21ce159dcaf87e0c --- /dev/null +++ b/Doc/MIS/html/search/nomatches.html @@ -0,0 +1,12 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="NoMatches">No Matches</div> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_0.html b/Doc/MIS/html/search/properties_0.html new file mode 100644 index 0000000000000000000000000000000000000000..20294af0780ebafbef40f1c3f5c276e32cf407bf --- /dev/null +++ b/Doc/MIS/html/search/properties_0.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_0.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_0.js b/Doc/MIS/html/search/properties_0.js new file mode 100644 index 0000000000000000000000000000000000000000..5e024625de75dc07884c725392ea5892ff1c76db --- /dev/null +++ b/Doc/MIS/html/search/properties_0.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['alive',['Alive',['../class_model_1_1_archer.html#acfa916c37c6191050a84e51100f12f16',1,'Model.Archer.Alive()'],['../class_model_1_1_mage.html#a50c531809941d6831b578fcbdf5d3679',1,'Model.Mage.Alive()'],['../interface_model_1_1_unit.html#a9ec349169a911cbd3400fd8ac805bbc9',1,'Model.Unit.Alive()'],['../class_model_1_1_warrior.html#a064845f1f36d363cb12089743eb277d0',1,'Model.Warrior.Alive()']]], + ['attackconfirmopen',['attackConfirmOpen',['../class_model_1_1_game_state.html#ab5781c1403edc30064ae2a8cbaad4c4c',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/properties_1.html b/Doc/MIS/html/search/properties_1.html new file mode 100644 index 0000000000000000000000000000000000000000..77de17902e6d46a2c2c641e95e5f9189f9438c96 --- /dev/null +++ b/Doc/MIS/html/search/properties_1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_1.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_1.js b/Doc/MIS/html/search/properties_1.js new file mode 100644 index 0000000000000000000000000000000000000000..a8b50189443deff0e4c53bb2d9b2adaa58d0b7e9 --- /dev/null +++ b/Doc/MIS/html/search/properties_1.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['beforemove',['beforeMove',['../class_model_1_1_game_state.html#af546cfa01e29773b5260cd6bfe8132b7',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/properties_2.html b/Doc/MIS/html/search/properties_2.html new file mode 100644 index 0000000000000000000000000000000000000000..4d6785cdfe7975c3d2ab5a5e6494556857080397 --- /dev/null +++ b/Doc/MIS/html/search/properties_2.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_2.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_2.js b/Doc/MIS/html/search/properties_2.js new file mode 100644 index 0000000000000000000000000000000000000000..86eaff195840f56d3b8f7ca38bd9af178cfa07f7 --- /dev/null +++ b/Doc/MIS/html/search/properties_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['currentplayer',['currentPlayer',['../class_model_1_1_game_state.html#aa541a7b45ea55484db8a3357d8e680de',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/properties_3.html b/Doc/MIS/html/search/properties_3.html new file mode 100644 index 0000000000000000000000000000000000000000..6d4064ca62edbdc6ccccf91c7749f2e367195a41 --- /dev/null +++ b/Doc/MIS/html/search/properties_3.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_3.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_3.js b/Doc/MIS/html/search/properties_3.js new file mode 100644 index 0000000000000000000000000000000000000000..933a73c5e37cf265cb1377844ba575058ffa024d --- /dev/null +++ b/Doc/MIS/html/search/properties_3.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['def',['Def',['../class_model_1_1_archer.html#a9aff46cc90c3542276c55ca22a37b113',1,'Model.Archer.Def()'],['../class_model_1_1_mage.html#a84857d68772ac3b466a64123fde94373',1,'Model.Mage.Def()'],['../interface_model_1_1_unit.html#afca346077df4376dc519435f3a192949',1,'Model.Unit.Def()'],['../class_model_1_1_warrior.html#aadd627830a738fc79a32da54a1349d4d',1,'Model.Warrior.Def()']]], + ['dropdownmenuopen',['dropDownMenuOpen',['../class_model_1_1_game_state.html#a6e723d6c3b99e1c235c6d214ee17929a',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/properties_4.html b/Doc/MIS/html/search/properties_4.html new file mode 100644 index 0000000000000000000000000000000000000000..34aca55028e98d3e4cfa270a4e3e81c1a3bd952c --- /dev/null +++ b/Doc/MIS/html/search/properties_4.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_4.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_4.js b/Doc/MIS/html/search/properties_4.js new file mode 100644 index 0000000000000000000000000000000000000000..41ec12cc8283c04509dd7d3bb3c258fdd270295c --- /dev/null +++ b/Doc/MIS/html/search/properties_4.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['enemyplayer',['enemyPlayer',['../class_model_1_1_game_state.html#ae276234c4a6b2b182b13f125abb61ba3',1,'Model::GameState']]], + ['equippedweapon',['equippedWeapon',['../class_model_1_1_archer.html#ac45f0a6f72a9d629b36e1486e444a6c9',1,'Model.Archer.equippedWeapon()'],['../class_model_1_1_mage.html#a127db923ebfd0b232d8aa7cdcf5d8b63',1,'Model.Mage.equippedWeapon()'],['../interface_model_1_1_unit.html#a6768928c4a12dfd60675b830bdc70167',1,'Model.Unit.equippedWeapon()'],['../class_model_1_1_warrior.html#a78b6ebe81e84bf816401c766fc5366ea',1,'Model.Warrior.equippedWeapon()']]] +]; diff --git a/Doc/MIS/html/search/properties_5.html b/Doc/MIS/html/search/properties_5.html new file mode 100644 index 0000000000000000000000000000000000000000..e9aca830e357de7e9e3793ca0e9eba741b48cf85 --- /dev/null +++ b/Doc/MIS/html/search/properties_5.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_5.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_5.js b/Doc/MIS/html/search/properties_5.js new file mode 100644 index 0000000000000000000000000000000000000000..05e0a4501f8d70ee538a8bc2f8d858e5370df6df --- /dev/null +++ b/Doc/MIS/html/search/properties_5.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['height',['Height',['../class_model_1_1_graph.html#ad80b7be893e46c9149552ef8bfc18068',1,'Model::Graph']]], + ['hp',['Hp',['../class_model_1_1_archer.html#af7364e7c13118293dac16c9caacd180f',1,'Model.Archer.Hp()'],['../class_model_1_1_mage.html#abf7607506d325e0c08ba41a7b7d831ce',1,'Model.Mage.Hp()'],['../interface_model_1_1_unit.html#add5c3b029398346c448bfa3a64f278f1',1,'Model.Unit.Hp()'],['../class_model_1_1_warrior.html#a0d8ed534eedb08e75884fedb14277735',1,'Model.Warrior.Hp()']]] +]; diff --git a/Doc/MIS/html/search/properties_6.html b/Doc/MIS/html/search/properties_6.html new file mode 100644 index 0000000000000000000000000000000000000000..1eeaf837cf1a28268aca87d610decf767e6b6636 --- /dev/null +++ b/Doc/MIS/html/search/properties_6.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_6.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_6.js b/Doc/MIS/html/search/properties_6.js new file mode 100644 index 0000000000000000000000000000000000000000..37e2c70c81e88042a76049dad84e548115ac904a --- /dev/null +++ b/Doc/MIS/html/search/properties_6.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['int',['Int',['../interface_model_1_1_unit.html#a9bef9ff10e4fb3d643632c431f1d3cfa',1,'Model::Unit']]], + ['isobstacle',['isObstacle',['../class_model_1_1_node.html#a93438af5996ee894fafd4e70b572af34',1,'Model::Node']]] +]; diff --git a/Doc/MIS/html/search/properties_7.html b/Doc/MIS/html/search/properties_7.html new file mode 100644 index 0000000000000000000000000000000000000000..2bd4c82afc81cfe1ff3a312861569fee4deefc55 --- /dev/null +++ b/Doc/MIS/html/search/properties_7.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_7.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_7.js b/Doc/MIS/html/search/properties_7.js new file mode 100644 index 0000000000000000000000000000000000000000..d45b688c0fa6c08c885e8e4f4bd536fba04bd910 --- /dev/null +++ b/Doc/MIS/html/search/properties_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['level',['Level',['../class_model_1_1_archer.html#ad2e43d0f3cf52494c703de0c7bfd8af6',1,'Model.Archer.Level()'],['../class_model_1_1_mage.html#a2af40b60ebdb327efc277a1e920a82af',1,'Model.Mage.Level()'],['../interface_model_1_1_unit.html#afdbcc5ed513f2d2ac9b1817b542dcce5',1,'Model.Unit.Level()'],['../class_model_1_1_warrior.html#a40ebb67fd534b727ceb63cfdbe5e1af6',1,'Model.Warrior.Level()']]] +]; diff --git a/Doc/MIS/html/search/properties_8.html b/Doc/MIS/html/search/properties_8.html new file mode 100644 index 0000000000000000000000000000000000000000..e853017cf86b5f4cc5ba8ca9543c3a4d4f711385 --- /dev/null +++ b/Doc/MIS/html/search/properties_8.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_8.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_8.js b/Doc/MIS/html/search/properties_8.js new file mode 100644 index 0000000000000000000000000000000000000000..6dd05a905e13a84f1b16c332a2b8369314b00c24 --- /dev/null +++ b/Doc/MIS/html/search/properties_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['modint',['modInt',['../interface_model_1_1_weapon.html#a1ef41fea09be5beda6c21594fd648a5c',1,'Model::Weapon']]], + ['modskill',['modSkill',['../interface_model_1_1_weapon.html#ab9c4d1b5151aedba51ddfd187d2b98ab',1,'Model::Weapon']]], + ['modstr',['modStr',['../interface_model_1_1_weapon.html#ae257017428d45a9d5d0de7071565c027',1,'Model::Weapon']]], + ['movabilityobstruction',['movabilityObstruction',['../class_model_1_1_node.html#a71c12ee4c3e1d8eecbf757dd4f6d8632',1,'Model::Node']]] +]; diff --git a/Doc/MIS/html/search/properties_9.html b/Doc/MIS/html/search/properties_9.html new file mode 100644 index 0000000000000000000000000000000000000000..e52eee4422732f4229507e7256daadfda4586705 --- /dev/null +++ b/Doc/MIS/html/search/properties_9.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_9.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_9.js b/Doc/MIS/html/search/properties_9.js new file mode 100644 index 0000000000000000000000000000000000000000..4eb5b1ed34c3703ce2eebb29fc1f41145938fb1a --- /dev/null +++ b/Doc/MIS/html/search/properties_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['name',['name',['../interface_model_1_1_weapon.html#a09f71c2dd3100e08a5d9cfc685e990e8',1,'Model::Weapon']]], + ['numberofnodes',['NumberOfNodes',['../class_model_1_1_graph.html#ae4dd5d130ea173ac6a38e15f6fa53544',1,'Model::Graph']]] +]; diff --git a/Doc/MIS/html/search/properties_a.html b/Doc/MIS/html/search/properties_a.html new file mode 100644 index 0000000000000000000000000000000000000000..79ca1e728f4e32027cf2b03e6fa9f54c0142dc62 --- /dev/null +++ b/Doc/MIS/html/search/properties_a.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_a.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_a.js b/Doc/MIS/html/search/properties_a.js new file mode 100644 index 0000000000000000000000000000000000000000..b981daa121106b8bdc4a88939a026856d1244b2e --- /dev/null +++ b/Doc/MIS/html/search/properties_a.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['pixelcoordinates',['PixelCoordinates',['../class_model_1_1_archer.html#aa923ebbd8825483f6d3ac8002c26b49e',1,'Model.Archer.PixelCoordinates()'],['../class_model_1_1_mage.html#a4eccff4c1472a462c35b3d92bce315aa',1,'Model.Mage.PixelCoordinates()'],['../interface_model_1_1_unit.html#a40c0baa06bc651953048d73599070425',1,'Model.Unit.PixelCoordinates()'],['../class_model_1_1_warrior.html#a0cf0d3bc4998616c193a836237bd56aa',1,'Model.Warrior.PixelCoordinates()']]], + ['playableunitselected',['playableUnitSelected',['../class_model_1_1_game_state.html#ac5ac5083088be3636da64ac0a3eb3ac9',1,'Model::GameState']]], + ['position',['Position',['../class_model_1_1_archer.html#a29c86df7ddc2c4cc8b31442f6e33f533',1,'Model.Archer.Position()'],['../class_model_1_1_mage.html#a05ff43cdf2f71db0ea0486c49c59c8a8',1,'Model.Mage.Position()'],['../interface_model_1_1_unit.html#a090b11590e5dbfa1a064c21d831d0a3b',1,'Model.Unit.Position()'],['../class_model_1_1_warrior.html#a8d72341804e201466fede9543cf6b9a5',1,'Model.Warrior.Position()']]] +]; diff --git a/Doc/MIS/html/search/properties_b.html b/Doc/MIS/html/search/properties_b.html new file mode 100644 index 0000000000000000000000000000000000000000..7d39fc772ad58fd89c01171046cc4321b9a109f8 --- /dev/null +++ b/Doc/MIS/html/search/properties_b.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_b.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_b.js b/Doc/MIS/html/search/properties_b.js new file mode 100644 index 0000000000000000000000000000000000000000..c81ce55c3fcb55976782341dbab16bd53e2a6979 --- /dev/null +++ b/Doc/MIS/html/search/properties_b.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['range',['range',['../interface_model_1_1_weapon.html#acb042377d7f54c710d4f1e4a7299a2b8',1,'Model::Weapon']]], + ['res',['Res',['../class_model_1_1_archer.html#a3310ec0b0903dbfb836be9663a8778d7',1,'Model.Archer.Res()'],['../class_model_1_1_mage.html#ab858284f5c8814471d756f5637de8f27',1,'Model.Mage.Res()'],['../interface_model_1_1_unit.html#acc73a95a98cadd660da4df26aa1dab22',1,'Model.Unit.Res()'],['../class_model_1_1_warrior.html#a6fb225addb43acf799fefb5177b690f6',1,'Model.Warrior.Res()']]] +]; diff --git a/Doc/MIS/html/search/properties_c.html b/Doc/MIS/html/search/properties_c.html new file mode 100644 index 0000000000000000000000000000000000000000..9573a8d1ec268fb86eca8448751fea2c62c3820f --- /dev/null +++ b/Doc/MIS/html/search/properties_c.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_c.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_c.js b/Doc/MIS/html/search/properties_c.js new file mode 100644 index 0000000000000000000000000000000000000000..da363c0074d61faf7488e2ad667d966c1ee13e12 --- /dev/null +++ b/Doc/MIS/html/search/properties_c.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['selectedunit',['selectedUnit',['../class_model_1_1_game_state.html#ab163d599e6e1f46c470d0835d8053ad9',1,'Model::GameState']]], + ['skill',['Skill',['../interface_model_1_1_unit.html#aacecaa31661bd95dcc36bde480a2ea81',1,'Model::Unit']]], + ['speed',['Speed',['../class_model_1_1_archer.html#a28caf09ef08983577d2f392c72055252',1,'Model.Archer.Speed()'],['../class_model_1_1_mage.html#a5bd9d7d272350503a3a8c921c9d5bb60',1,'Model.Mage.Speed()'],['../interface_model_1_1_unit.html#aecee4e038fc518751386c525331ac920',1,'Model.Unit.Speed()'],['../class_model_1_1_warrior.html#a39a53eedbc5f1580b18ac206626e76e4',1,'Model.Warrior.Speed()']]], + ['str',['Str',['../interface_model_1_1_unit.html#a3d1d61e9c50cb7e005343a17bd9eff17',1,'Model::Unit']]] +]; diff --git a/Doc/MIS/html/search/properties_d.html b/Doc/MIS/html/search/properties_d.html new file mode 100644 index 0000000000000000000000000000000000000000..e8dc214683b0c5594e372e05d4b4a72652bb8d16 --- /dev/null +++ b/Doc/MIS/html/search/properties_d.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_d.js b/Doc/MIS/html/search/properties_d.js new file mode 100644 index 0000000000000000000000000000000000000000..eb0a6a62359d01b9f3d0ef3f1f9254aad3747d6d --- /dev/null +++ b/Doc/MIS/html/search/properties_d.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['unitonnode',['unitOnNode',['../class_model_1_1_node.html#a82ca414242eee3d8542a935149049427',1,'Model::Node']]], + ['unittoattack',['unitToAttack',['../class_model_1_1_game_state.html#af352baaca46aaf95b984980ca55693ed',1,'Model::GameState']]] +]; diff --git a/Doc/MIS/html/search/properties_e.html b/Doc/MIS/html/search/properties_e.html new file mode 100644 index 0000000000000000000000000000000000000000..c2dab296163657152446a0a5d4820eb5ff5e34b4 --- /dev/null +++ b/Doc/MIS/html/search/properties_e.html @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta name="generator" content="Doxygen 1.8.12"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="properties_e.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Doc/MIS/html/search/properties_e.js b/Doc/MIS/html/search/properties_e.js new file mode 100644 index 0000000000000000000000000000000000000000..f86d82217f206f3d53f4681d9325ff1c87e9964b --- /dev/null +++ b/Doc/MIS/html/search/properties_e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['width',['Width',['../class_model_1_1_graph.html#ac3b8b0d5608f48b36c624108dca52695',1,'Model::Graph']]] +]; diff --git a/Doc/MIS/html/search/search.css b/Doc/MIS/html/search/search.css new file mode 100644 index 0000000000000000000000000000000000000000..3cf9df94a419c3175edbf2ca1719a2deb7a497dd --- /dev/null +++ b/Doc/MIS/html/search/search.css @@ -0,0 +1,271 @@ +/*---------------- Search Box */ + +#FSearchBox { + float: left; +} + +#MSearchBox { + white-space : nowrap; + float: none; + margin-top: 8px; + right: 0px; + width: 170px; + height: 24px; + z-index: 102; +} + +#MSearchBox .left +{ + display:block; + position:absolute; + left:10px; + width:20px; + height:19px; + background:url('search_l.png') no-repeat; + background-position:right; +} + +#MSearchSelect { + display:block; + position:absolute; + width:20px; + height:19px; +} + +.left #MSearchSelect { + left:4px; +} + +.right #MSearchSelect { + right:5px; +} + +#MSearchField { + display:block; + position:absolute; + height:19px; + background:url('search_m.png') repeat-x; + border:none; + width:115px; + margin-left:20px; + padding-left:4px; + color: #909090; + outline: none; + font: 9pt Arial, Verdana, sans-serif; + -webkit-border-radius: 0px; +} + +#FSearchBox #MSearchField { + margin-left:15px; +} + +#MSearchBox .right { + display:block; + position:absolute; + right:10px; + top:8px; + width:20px; + height:19px; + background:url('search_r.png') no-repeat; + background-position:left; +} + +#MSearchClose { + display: none; + position: absolute; + top: 4px; + background : none; + border: none; + margin: 0px 4px 0px 0px; + padding: 0px 0px; + outline: none; +} + +.left #MSearchClose { + left: 6px; +} + +.right #MSearchClose { + right: 2px; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; + z-index:10000; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; +} + +.SRResult { + display: none; +} + +DIV.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/Doc/MIS/html/search/search.js b/Doc/MIS/html/search/search.js new file mode 100644 index 0000000000000000000000000000000000000000..dedce3bf093890b8693ec9b110414855542fb79b --- /dev/null +++ b/Doc/MIS/html/search/search.js @@ -0,0 +1,791 @@ +function convertToId(search) +{ + var result = ''; + for (i=0;i<search.length;i++) + { + var c = search.charAt(i); + var cn = c.charCodeAt(0); + if (c.match(/[a-z0-9\u0080-\uFFFF]/)) + { + result+=c; + } + else if (cn<16) + { + result+="_0"+cn.toString(16); + } + else + { + result+="_"+cn.toString(16); + } + } + return result; +} + +function getXPos(item) +{ + var x = 0; + if (item.offsetWidth) + { + while (item && item!=document.body) + { + x += item.offsetLeft; + item = item.offsetParent; + } + } + return x; +} + +function getYPos(item) +{ + var y = 0; + if (item.offsetWidth) + { + while (item && item!=document.body) + { + y += item.offsetTop; + item = item.offsetParent; + } + } + return y; +} + +/* A class handling everything associated with the search panel. + + Parameters: + name - The name of the global variable that will be + storing this instance. Is needed to be able to set timeouts. + resultPath - path to use for external files +*/ +function SearchBox(name, resultsPath, inFrame, label) +{ + if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + + // ---------- Instance variables + this.name = name; + this.resultsPath = resultsPath; + this.keyTimeout = 0; + this.keyTimeoutLength = 500; + this.closeSelectionTimeout = 300; + this.lastSearchValue = ""; + this.lastResultsPage = ""; + this.hideTimeout = 0; + this.searchIndex = 0; + this.searchActive = false; + this.insideFrame = inFrame; + this.searchLabel = label; + + // ----------- DOM Elements + + this.DOMSearchField = function() + { return document.getElementById("MSearchField"); } + + this.DOMSearchSelect = function() + { return document.getElementById("MSearchSelect"); } + + this.DOMSearchSelectWindow = function() + { return document.getElementById("MSearchSelectWindow"); } + + this.DOMPopupSearchResults = function() + { return document.getElementById("MSearchResults"); } + + this.DOMPopupSearchResultsWindow = function() + { return document.getElementById("MSearchResultsWindow"); } + + this.DOMSearchClose = function() + { return document.getElementById("MSearchClose"); } + + this.DOMSearchBox = function() + { return document.getElementById("MSearchBox"); } + + // ------------ Event Handlers + + // Called when focus is added or removed from the search field. + this.OnSearchFieldFocus = function(isActive) + { + this.Activate(isActive); + } + + this.OnSearchSelectShow = function() + { + var searchSelectWindow = this.DOMSearchSelectWindow(); + var searchField = this.DOMSearchSelect(); + + if (this.insideFrame) + { + var left = getXPos(searchField); + var top = getYPos(searchField); + left += searchField.offsetWidth + 6; + top += searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + left -= searchSelectWindow.offsetWidth; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + } + else + { + var left = getXPos(searchField); + var top = getYPos(searchField); + top += searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + } + + // stop selection hide timer + if (this.hideTimeout) + { + clearTimeout(this.hideTimeout); + this.hideTimeout=0; + } + return false; // to avoid "image drag" default event + } + + this.OnSearchSelectHide = function() + { + this.hideTimeout = setTimeout(this.name +".CloseSelectionWindow()", + this.closeSelectionTimeout); + } + + // Called when the content of the search field is changed. + this.OnSearchFieldChange = function(evt) + { + if (this.keyTimeout) // kill running timer + { + clearTimeout(this.keyTimeout); + this.keyTimeout = 0; + } + + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 || e.keyCode==13) + { + if (e.shiftKey==1) + { + this.OnSearchSelectShow(); + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + child.focus(); + return; + } + } + return; + } + else if (window.frames.MSearchResults.searchResults) + { + var elem = window.frames.MSearchResults.searchResults.NavNext(0); + if (elem) elem.focus(); + } + } + else if (e.keyCode==27) // Escape out of the search field + { + this.DOMSearchField().blur(); + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.lastSearchValue = ''; + this.Activate(false); + return; + } + + // strip whitespaces + var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); + + if (searchValue != this.lastSearchValue) // search value has changed + { + if (searchValue != "") // non-empty search + { + // set timer for search update + this.keyTimeout = setTimeout(this.name + '.Search()', + this.keyTimeoutLength); + } + else // empty search field + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.lastSearchValue = ''; + } + } + } + + this.SelectItemCount = function(id) + { + var count=0; + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + count++; + } + } + return count; + } + + this.SelectItemSet = function(id) + { + var i,j=0; + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + var node = child.firstChild; + if (j==id) + { + node.innerHTML='•'; + } + else + { + node.innerHTML=' '; + } + j++; + } + } + } + + // Called when an search filter selection is made. + // set item with index id as the active item + this.OnSelectItem = function(id) + { + this.searchIndex = id; + this.SelectItemSet(id); + var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); + if (searchValue!="" && this.searchActive) // something was found -> do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down + { + this.searchIndex++; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==38 && this.searchIndex>0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of <Search()>. + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e<searchData.length; e++) + { + var id = searchData[e][0]; + var srResult = document.createElement('div'); + srResult.setAttribute('id','SR_'+id); + setClassAttr(srResult,'SRResult'); + var srEntry = document.createElement('div'); + setClassAttr(srEntry,'SREntry'); + var srLink = document.createElement('a'); + srLink.setAttribute('id','Item'+e); + setKeyActions(srLink,'return searchResults.Nav(event,'+e+')'); + setClassAttr(srLink,'SRSymbol'); + srLink.innerHTML = searchData[e][1][0]; + srEntry.appendChild(srLink); + if (searchData[e][1].length==2) // single result + { + srLink.setAttribute('href',searchData[e][1][1][0]); + if (searchData[e][1][1][1]) + { + srLink.setAttribute('target','_parent'); + } + var srScope = document.createElement('span'); + setClassAttr(srScope,'SRScope'); + srScope.innerHTML = searchData[e][1][1][2]; + srEntry.appendChild(srScope); + } + else // multiple results + { + srLink.setAttribute('href','javascript:searchResults.Toggle("SR_'+id+'")'); + var srChildren = document.createElement('div'); + setClassAttr(srChildren,'SRChildren'); + for (var c=0; c<searchData[e][1].length-1; c++) + { + var srChild = document.createElement('a'); + srChild.setAttribute('id','Item'+e+'_c'+c); + setKeyActions(srChild,'return searchResults.NavChild(event,'+e+','+c+')'); + setClassAttr(srChild,'SRScope'); + srChild.setAttribute('href',searchData[e][1][c+1][0]); + if (searchData[e][1][c+1][1]) + { + srChild.setAttribute('target','_parent'); + } + srChild.innerHTML = searchData[e][1][c+1][2]; + srChildren.appendChild(srChild); + } + srEntry.appendChild(srChildren); + } + srResult.appendChild(srEntry); + results.appendChild(srResult); + } +} + +function init_search() +{ + var results = document.getElementById("MSearchSelectWindow"); + for (var key in indexSectionLabels) + { + var link = document.createElement('a'); + link.setAttribute('class','SelectItem'); + link.setAttribute('onclick','searchBox.OnSelectItem('+key+')'); + link.href='javascript:void(0)'; + link.innerHTML='<span class="SelectionMark"> </span>'+indexSectionLabels[key]; + results.appendChild(link); + } + searchBox.OnSelectItem(0); +} + diff --git a/Doc/MIS/html/search/search_l.png b/Doc/MIS/html/search/search_l.png new file mode 100644 index 0000000000000000000000000000000000000000..c872f4da4a01d0754f923e6c94fd8159c0621bd1 Binary files /dev/null and b/Doc/MIS/html/search/search_l.png differ diff --git a/Doc/MIS/html/search/search_m.png b/Doc/MIS/html/search/search_m.png new file mode 100644 index 0000000000000000000000000000000000000000..b429a16ba641960da1e52e5da85dc80fd82635c8 Binary files /dev/null and b/Doc/MIS/html/search/search_m.png differ diff --git a/Doc/MIS/html/search/search_r.png b/Doc/MIS/html/search/search_r.png new file mode 100644 index 0000000000000000000000000000000000000000..97ee8b439687084201b79c6f776a41f495c6392a Binary files /dev/null and b/Doc/MIS/html/search/search_r.png differ diff --git a/Doc/MIS/html/search/searchdata.js b/Doc/MIS/html/search/searchdata.js new file mode 100644 index 0000000000000000000000000000000000000000..0f38dfae9ebbaa486b47bf5d53172fdaf1ea1cff --- /dev/null +++ b/Doc/MIS/html/search/searchdata.js @@ -0,0 +1,30 @@ +var indexSectionsWithContent = +{ + 0: "abcdefghilmnoprsuvw", + 1: "abdfghmnpuw", + 2: "bcmv", + 3: "abdefghilmnopsuw", + 4: "bu", + 5: "abcdehilmnprsuw" +}; + +var indexSectionNames = +{ + 0: "all", + 1: "classes", + 2: "namespaces", + 3: "functions", + 4: "enums", + 5: "properties" +}; + +var indexSectionLabels = +{ + 0: "All", + 1: "Classes", + 2: "Namespaces", + 3: "Functions", + 4: "Enumerations", + 5: "Properties" +}; + diff --git a/Doc/MIS/html/splitbar.png b/Doc/MIS/html/splitbar.png new file mode 100644 index 0000000000000000000000000000000000000000..fe895f2c58179b471a22d8320b39a4bd7312ec8e Binary files /dev/null and b/Doc/MIS/html/splitbar.png differ diff --git a/Doc/MIS/html/sync_off.png b/Doc/MIS/html/sync_off.png new file mode 100644 index 0000000000000000000000000000000000000000..3b443fc62892114406e3d399421b2a881b897acc Binary files /dev/null and b/Doc/MIS/html/sync_off.png differ diff --git a/Doc/MIS/html/sync_on.png b/Doc/MIS/html/sync_on.png new file mode 100644 index 0000000000000000000000000000000000000000..e08320fb64e6fa33b573005ed6d8fe294e19db76 Binary files /dev/null and b/Doc/MIS/html/sync_on.png differ diff --git a/Doc/MIS/html/tab_a.png b/Doc/MIS/html/tab_a.png new file mode 100644 index 0000000000000000000000000000000000000000..3b725c41c5a527a3a3e40097077d0e206a681247 Binary files /dev/null and b/Doc/MIS/html/tab_a.png differ diff --git a/Doc/MIS/html/tab_b.png b/Doc/MIS/html/tab_b.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b4a8638cb3496a016eaed9e16ffc12846dea18 Binary files /dev/null and b/Doc/MIS/html/tab_b.png differ diff --git a/Doc/MIS/html/tab_h.png b/Doc/MIS/html/tab_h.png new file mode 100644 index 0000000000000000000000000000000000000000..fd5cb705488e60fcf30f56fcc951dee74f3b095b Binary files /dev/null and b/Doc/MIS/html/tab_h.png differ diff --git a/Doc/MIS/html/tab_s.png b/Doc/MIS/html/tab_s.png new file mode 100644 index 0000000000000000000000000000000000000000..ab478c95b67371d700a20869f7de1ddd73522d50 Binary files /dev/null and b/Doc/MIS/html/tab_s.png differ diff --git a/Doc/MIS/html/tabs.css b/Doc/MIS/html/tabs.css new file mode 100644 index 0000000000000000000000000000000000000000..a28614b8e3d040d2031627d286e64fbe419a6688 --- /dev/null +++ b/Doc/MIS/html/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#doc-content{overflow:auto;display:block;padding:0;margin:0;-webkit-overflow-scrolling:touch}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/Doc/MIS/index.html - Shortcut.lnk b/Doc/MIS/index.html - Shortcut.lnk new file mode 100644 index 0000000000000000000000000000000000000000..38d8c62f510a73395f53b1ab9184631f21603e38 Binary files /dev/null and b/Doc/MIS/index.html - Shortcut.lnk differ diff --git a/Doc/MIS/latex/Makefile b/Doc/MIS/latex/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..8cc3866f4a039e77b793bd33774ce84e52a9ae16 --- /dev/null +++ b/Doc/MIS/latex/Makefile @@ -0,0 +1,21 @@ +all: refman.pdf + +pdf: refman.pdf + +refman.pdf: clean refman.tex + pdflatex refman + makeindex refman.idx + pdflatex refman + latex_count=8 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ + do \ + echo "Rerunning latex...." ;\ + pdflatex refman ;\ + latex_count=`expr $$latex_count - 1` ;\ + done + makeindex refman.idx + pdflatex refman + + +clean: + rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf diff --git a/Doc/MIS/latex/annotated.tex b/Doc/MIS/latex/annotated.tex new file mode 100644 index 0000000000000000000000000000000000000000..f48df3222a82f64c249438724b58794bfc1df353 --- /dev/null +++ b/Doc/MIS/latex/annotated.tex @@ -0,0 +1,25 @@ +\section{Class List} +Here are the classes, structs, unions and interfaces with brief descriptions\+:\begin{DoxyCompactList} +\item\contentsline{section}{\hyperlink{class_model_1_1_archer}{Model.\+Archer} \\*The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. }{\pageref{class_model_1_1_archer}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_bronze_bow}{Model.\+Bronze\+Bow} \\*Ranged physical \hyperlink{interface_model_1_1_weapon}{Weapon}. }{\pageref{class_model_1_1_bronze_bow}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_bronze_sword}{Model.\+Bronze\+Sword} \\*Melee Physical \hyperlink{interface_model_1_1_weapon}{Weapon}. }{\pageref{class_model_1_1_bronze_sword}}{} +\item\contentsline{section}{\hyperlink{class_view_1_1_button}{View.\+Button} \\*Buttons for the drop down menu buttons when selecting units }{\pageref{class_view_1_1_button}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_damage_calculations}{Model.\+Damage\+Calculations} \\*This class calculates all damage related calculations }{\pageref{class_model_1_1_damage_calculations}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_fireball}{Model.\+Fireball} \\*Ranged Magical \hyperlink{interface_model_1_1_weapon}{Weapon}. }{\pageref{class_model_1_1_fireball}}{} +\item\contentsline{section}{\hyperlink{class_controller_1_1_game}{Controller.\+Game} \\*Main \hyperlink{namespace_controller}{Controller} for game }{\pageref{class_controller_1_1_game}}{} +\item\contentsline{section}{\hyperlink{class_controller_1_1_game_function}{Controller.\+Game\+Function} \\*Contains functions pertaining to the general game. }{\pageref{class_controller_1_1_game_function}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_game_state}{Model.\+Game\+State} \\*This class holds states in the scope of the entire gameplay }{\pageref{class_model_1_1_game_state}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_graph}{Model.\+Graph} \\*Structure that represents the game map. }{\pageref{class_model_1_1_graph}}{} +\item\contentsline{section}{\hyperlink{class_view_1_1_how_to_play}{View.\+How\+To\+Play} \\*How to Play Menu }{\pageref{class_view_1_1_how_to_play}}{} +\item\contentsline{section}{\hyperlink{class_view_1_1_how_to_play2}{View.\+How\+To\+Play2} \\*How to Play Menu 2 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu }{\pageref{class_view_1_1_how_to_play2}}{} +\item\contentsline{section}{\hyperlink{class_view_1_1_how_to_play3}{View.\+How\+To\+Play3} \\*How to Play Menu 3 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu 2 }{\pageref{class_view_1_1_how_to_play3}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_mage}{Model.\+Mage} \\*The \hyperlink{class_model_1_1_mage}{Mage} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} ~\newline + This \hyperlink{interface_model_1_1_unit}{Unit} has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats }{\pageref{class_model_1_1_mage}}{} +\item\contentsline{section}{\hyperlink{class_view_1_1_main_menu}{View.\+Main\+Menu} \\*The Main Menu class. This window is displayed upon starting game, and can link you to \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} playing the Game. }{\pageref{class_view_1_1_main_menu}}{} +\item\contentsline{section}{\hyperlink{class_controller_1_1_mouse_handler}{Controller.\+Mouse\+Handler} \\*Handles all user mouse input. }{\pageref{class_controller_1_1_mouse_handler}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_node}{Model.\+Node} \\*Structure that represents a tile on the game map grid. }{\pageref{class_model_1_1_node}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_player}{Model.\+Player} \\*Represents a \hyperlink{class_model_1_1_player}{Player} in the game. }{\pageref{class_model_1_1_player}}{} +\item\contentsline{section}{\hyperlink{interface_model_1_1_unit}{Model.\+Unit} \\*\hyperlink{interface_model_1_1_unit}{Unit} Interface for \hyperlink{class_model_1_1_warrior}{Warrior}, \hyperlink{class_model_1_1_mage}{Mage}, and \hyperlink{class_model_1_1_archer}{Archer} }{\pageref{interface_model_1_1_unit}}{} +\item\contentsline{section}{\hyperlink{class_model_1_1_warrior}{Model.\+Warrior} \\*The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance }{\pageref{class_model_1_1_warrior}}{} +\item\contentsline{section}{\hyperlink{interface_model_1_1_weapon}{Model.\+Weapon} \\*\hyperlink{interface_model_1_1_weapon}{Weapon} Interface to be implemented when creating new weapons. }{\pageref{interface_model_1_1_weapon}}{} +\end{DoxyCompactList} diff --git a/Doc/MIS/latex/class_controller_1_1_game.eps b/Doc/MIS/latex/class_controller_1_1_game.eps new file mode 100644 index 0000000000000000000000000000000000000000..d1015b887b44b1179ae5426b7bb8316ae273172b --- /dev/null +++ b/Doc/MIS/latex/class_controller_1_1_game.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 357.142857 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.400000 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Controller.Game) cw +(Game) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Controller.Game) 0.000000 0.000000 box + (Game) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_controller_1_1_game.pdf b/Doc/MIS/latex/class_controller_1_1_game.pdf new file mode 100644 index 0000000000000000000000000000000000000000..038ded8e329763ff21eac6dedffd51f66c34a169 --- /dev/null +++ b/Doc/MIS/latex/class_controller_1_1_game.pdf @@ -0,0 +1,94 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•MN1…÷>…—ÀÂÄN2N¶ Ôua.€ªþ¨šPMAêõI2u*ºAYØNžý¾xDCŒ¦œ7 žß÷ß`p#p}Ä6 _ú,ØyŠÎ:ìw052Š’SÐr]°Oððzúú9Ÿ†a{¦ÕgÚ>öGxëa ÞQôð’mV0â<£!”ÀS’aJØÄH¦Ëåm^p*ž¤˜;*æ >pý?~V&éŠ$+ÿ ôLáˆy†Ë†l%*±VÌe~•ÀJP²Z\…²ë^w™Y.MÅ/–1—äcX}¿¥iZye¨~Ë«¢È0Î"G d³F+y]\ÜÎØ=åýü¨wendstream +endobj +6 0 obj +263 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 358] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:5820d7cc-a79d-11e6-0000-315d9e7278bb' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:5820d7cc-a79d-11e6-0000-315d9e7278bb' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:10-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:10-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:5820d7cc-a79d-11e6-0000-315d9e7278bb' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:5820d7cc-a79d-11e6-0000-315d9e7278bb'/> +<rdf:Description rdf:about='uuid:5820d7cc-a79d-11e6-0000-315d9e7278bb' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182810-05'00') +/ModDate(D:20161107182810-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000576 00000 n +0000002286 00000 n +0000000517 00000 n +0000000367 00000 n +0000000015 00000 n +0000000348 00000 n +0000000641 00000 n +0000000741 00000 n +0000000682 00000 n +0000000711 00000 n +0000000807 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<17A770B4E288ECD9F876A6C676132DE9><17A770B4E288ECD9F876A6C676132DE9>] +>> +startxref +2462 +%%EOF diff --git a/Doc/MIS/latex/class_controller_1_1_game.tex b/Doc/MIS/latex/class_controller_1_1_game.tex new file mode 100644 index 0000000000000000000000000000000000000000..ebe4fb3c50e5c727750a1c78d31e7917cdcd818a --- /dev/null +++ b/Doc/MIS/latex/class_controller_1_1_game.tex @@ -0,0 +1,67 @@ +\hypertarget{class_controller_1_1_game}{}\section{Controller.\+Game Class Reference} +\label{class_controller_1_1_game}\index{Controller.\+Game@{Controller.\+Game}} + + +Main \hyperlink{namespace_controller}{Controller} for game + + +Inheritance diagram for Controller.\+Game\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_controller_1_1_game} +\end{center} +\end{figure} +\subsection*{Protected Member Functions} +\begin{DoxyCompactItemize} +\item +override void \hyperlink{class_controller_1_1_game_aa3a270df3da66d794d8607e029bf9608}{Initialize} () +\item +override void \hyperlink{class_controller_1_1_game_a05c5bf033337a7f5130735e218772770}{Load\+Content} () +\item +override void \hyperlink{class_controller_1_1_game_a57f4f23e2ca97a9ed820aab106a2ebe3}{Update} (Game\+Time game\+Time) +\item +override void \hyperlink{class_controller_1_1_game_a243addf184836c81e6a4f793b0ba0a9f}{Draw} (Game\+Time game\+Time) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_controller_1_1_game_a53f51c3ad8d59f44f8ab6aee59c0fbec}{}\label{class_controller_1_1_game_a53f51c3ad8d59f44f8ab6aee59c0fbec} +static \hyperlink{class_controller_1_1_game}{Game} {\bfseries Instance}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Main \hyperlink{namespace_controller}{Controller} for game + + + +\subsection{Member Function Documentation} +\hypertarget{class_controller_1_1_game_a243addf184836c81e6a4f793b0ba0a9f}{}\label{class_controller_1_1_game_a243addf184836c81e6a4f793b0ba0a9f} +\index{Controller\+::\+Game@{Controller\+::\+Game}!Draw@{Draw}} +\index{Draw@{Draw}!Controller\+::\+Game@{Controller\+::\+Game}} +\subsubsection{\texorpdfstring{Draw()}{Draw()}} +{\footnotesize\ttfamily override void Controller.\+Game.\+Draw (\begin{DoxyParamCaption}\item[{Game\+Time}]{game\+Time }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + +draws the game as it updates \hypertarget{class_controller_1_1_game_aa3a270df3da66d794d8607e029bf9608}{}\label{class_controller_1_1_game_aa3a270df3da66d794d8607e029bf9608} +\index{Controller\+::\+Game@{Controller\+::\+Game}!Initialize@{Initialize}} +\index{Initialize@{Initialize}!Controller\+::\+Game@{Controller\+::\+Game}} +\subsubsection{\texorpdfstring{Initialize()}{Initialize()}} +{\footnotesize\ttfamily override void Controller.\+Game.\+Initialize (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + +initializes game \hypertarget{class_controller_1_1_game_a05c5bf033337a7f5130735e218772770}{}\label{class_controller_1_1_game_a05c5bf033337a7f5130735e218772770} +\index{Controller\+::\+Game@{Controller\+::\+Game}!Load\+Content@{Load\+Content}} +\index{Load\+Content@{Load\+Content}!Controller\+::\+Game@{Controller\+::\+Game}} +\subsubsection{\texorpdfstring{Load\+Content()}{LoadContent()}} +{\footnotesize\ttfamily override void Controller.\+Game.\+Load\+Content (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + +loads required textures and values for starting game \hypertarget{class_controller_1_1_game_a57f4f23e2ca97a9ed820aab106a2ebe3}{}\label{class_controller_1_1_game_a57f4f23e2ca97a9ed820aab106a2ebe3} +\index{Controller\+::\+Game@{Controller\+::\+Game}!Update@{Update}} +\index{Update@{Update}!Controller\+::\+Game@{Controller\+::\+Game}} +\subsubsection{\texorpdfstring{Update()}{Update()}} +{\footnotesize\ttfamily override void Controller.\+Game.\+Update (\begin{DoxyParamCaption}\item[{Game\+Time}]{game\+Time }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + +Updates game in real time -\/ 60fps + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Game.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_controller_1_1_game_function.tex b/Doc/MIS/latex/class_controller_1_1_game_function.tex new file mode 100644 index 0000000000000000000000000000000000000000..bdb7ed7c145e8b6c54998b98126e56daf9902e16 --- /dev/null +++ b/Doc/MIS/latex/class_controller_1_1_game_function.tex @@ -0,0 +1,176 @@ +\hypertarget{class_controller_1_1_game_function}{}\section{Controller.\+Game\+Function Class Reference} +\label{class_controller_1_1_game_function}\index{Controller.\+Game\+Function@{Controller.\+Game\+Function}} + + +Contains functions pertaining to the general game. + + +\subsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static bool \hyperlink{class_controller_1_1_game_function_a22e673cfb256b9f2428f0fd81546bd7c}{is\+An\+Enemy\+Unit\+In\+Range} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static bool \hyperlink{class_controller_1_1_game_function_a0e573edb9537563b1ef6a854739c5517}{is\+Enemy\+Unit\+In\+Range} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit, \hyperlink{interface_model_1_1_unit}{Unit} enemy\+Unit) +\item +static void \hyperlink{class_controller_1_1_game_function_aad2a98ed072875b85bb7168c805db0e5}{start\+Turn} (\hyperlink{class_model_1_1_player}{Player} player) +\item +static Linked\+List$<$ \hyperlink{interface_model_1_1_unit}{Unit} $>$ \hyperlink{class_controller_1_1_game_function_a0854a33c1864a8196c1037fd88d7b1c0}{enemy\+Units\+In\+Range} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static bool \hyperlink{class_controller_1_1_game_function_ac23bfd530d3a087da49065fce84821ab}{has\+Unit\+Finished\+Actions} (\hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static bool \hyperlink{class_controller_1_1_game_function_ad685bf2e60bc063664f47ac2cc1fc385}{is\+Turn\+Over} () +\item +static bool \hyperlink{class_controller_1_1_game_function_a0696007a9d80f8e6ae9b28b3a3ba4b43}{is\+Game\+Over} () +\item +static Linked\+List$<$ \hyperlink{class_model_1_1_node}{Node} $>$ \hyperlink{class_controller_1_1_game_function_a9910af0161e502a272fa6fbc025d6a93}{set\+Movable\+Nodes} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static Linked\+List$<$ \hyperlink{class_model_1_1_node}{Node} $>$ \hyperlink{class_controller_1_1_game_function_ad6e9b27c164633455ec7433d3b7b6f50}{get\+Attackable\+Nodes} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static Linked\+List$<$ \hyperlink{class_model_1_1_node}{Node} $>$ \hyperlink{class_controller_1_1_game_function_a6b9f4cc1fad812ac925b242d0debe4a5}{get\+Attack\+Range\+After\+Moving} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +static Linked\+List$<$ \hyperlink{class_model_1_1_node}{Node} $>$ \hyperlink{class_controller_1_1_game_function_a4d9123c98fec7919087096f35838acc8}{path\+Finder} (\hyperlink{class_model_1_1_graph}{Graph} graph, \hyperlink{interface_model_1_1_unit}{Unit} unit, \hyperlink{class_model_1_1_node}{Node} start, \hyperlink{class_model_1_1_node}{Node} end) +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Contains functions pertaining to the general game. + +This class holds useable functions in the scope of the entire gameplay. + +\subsection{Member Function Documentation} +\hypertarget{class_controller_1_1_game_function_a0854a33c1864a8196c1037fd88d7b1c0}{}\label{class_controller_1_1_game_function_a0854a33c1864a8196c1037fd88d7b1c0} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!enemy\+Units\+In\+Range@{enemy\+Units\+In\+Range}} +\index{enemy\+Units\+In\+Range@{enemy\+Units\+In\+Range}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{enemy\+Units\+In\+Range()}{enemyUnitsInRange()}} +{\footnotesize\ttfamily static Linked\+List$<$\hyperlink{interface_model_1_1_unit}{Unit}$>$ Controller.\+Game\+Function.\+enemy\+Units\+In\+Range (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns all enemy units in strict attack range of the specified unit. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em unit} & Unit to find enemy units for. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_ad6e9b27c164633455ec7433d3b7b6f50}{}\label{class_controller_1_1_game_function_ad6e9b27c164633455ec7433d3b7b6f50} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!get\+Attackable\+Nodes@{get\+Attackable\+Nodes}} +\index{get\+Attackable\+Nodes@{get\+Attackable\+Nodes}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{get\+Attackable\+Nodes()}{getAttackableNodes()}} +{\footnotesize\ttfamily static Linked\+List$<$\hyperlink{class_model_1_1_node}{Node}$>$ Controller.\+Game\+Function.\+get\+Attackable\+Nodes (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns a list of nodes that the unit can perform an attack on. Assumes the unit has not yet moved. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em unit} & Specfied unit. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_a6b9f4cc1fad812ac925b242d0debe4a5}{}\label{class_controller_1_1_game_function_a6b9f4cc1fad812ac925b242d0debe4a5} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!get\+Attack\+Range\+After\+Moving@{get\+Attack\+Range\+After\+Moving}} +\index{get\+Attack\+Range\+After\+Moving@{get\+Attack\+Range\+After\+Moving}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{get\+Attack\+Range\+After\+Moving()}{getAttackRangeAfterMoving()}} +{\footnotesize\ttfamily static Linked\+List$<$\hyperlink{class_model_1_1_node}{Node}$>$ Controller.\+Game\+Function.\+get\+Attack\+Range\+After\+Moving (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether or not the specified enemy unit is within attack range of the specified unit. Assumes the unit has already moved. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em Specified} & unit. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_ac23bfd530d3a087da49065fce84821ab}{}\label{class_controller_1_1_game_function_ac23bfd530d3a087da49065fce84821ab} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!has\+Unit\+Finished\+Actions@{has\+Unit\+Finished\+Actions}} +\index{has\+Unit\+Finished\+Actions@{has\+Unit\+Finished\+Actions}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{has\+Unit\+Finished\+Actions()}{hasUnitFinishedActions()}} +{\footnotesize\ttfamily static bool Controller.\+Game\+Function.\+has\+Unit\+Finished\+Actions (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether or not the specified unit can perform actions. +\begin{DoxyParams}{Parameters} +{\em unit} & Specified unit. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_a22e673cfb256b9f2428f0fd81546bd7c}{}\label{class_controller_1_1_game_function_a22e673cfb256b9f2428f0fd81546bd7c} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!is\+An\+Enemy\+Unit\+In\+Range@{is\+An\+Enemy\+Unit\+In\+Range}} +\index{is\+An\+Enemy\+Unit\+In\+Range@{is\+An\+Enemy\+Unit\+In\+Range}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{is\+An\+Enemy\+Unit\+In\+Range()}{isAnEnemyUnitInRange()}} +{\footnotesize\ttfamily static bool Controller.\+Game\+Function.\+is\+An\+Enemy\+Unit\+In\+Range (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether an enemy unit is in range of the specified unit. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em unit} & Unit to find enemies for. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_a0e573edb9537563b1ef6a854739c5517}{}\label{class_controller_1_1_game_function_a0e573edb9537563b1ef6a854739c5517} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!is\+Enemy\+Unit\+In\+Range@{is\+Enemy\+Unit\+In\+Range}} +\index{is\+Enemy\+Unit\+In\+Range@{is\+Enemy\+Unit\+In\+Range}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{is\+Enemy\+Unit\+In\+Range()}{isEnemyUnitInRange()}} +{\footnotesize\ttfamily static bool Controller.\+Game\+Function.\+is\+Enemy\+Unit\+In\+Range (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{enemy\+Unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether or not the specified enemy unit is within attack range of the specified unit. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em unit} & Specified playable unit. \\ +\hline +{\em enemy\+Unit} & Specified enemy unit. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_a0696007a9d80f8e6ae9b28b3a3ba4b43}{}\label{class_controller_1_1_game_function_a0696007a9d80f8e6ae9b28b3a3ba4b43} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!is\+Game\+Over@{is\+Game\+Over}} +\index{is\+Game\+Over@{is\+Game\+Over}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{is\+Game\+Over()}{isGameOver()}} +{\footnotesize\ttfamily static bool Controller.\+Game\+Function.\+is\+Game\+Over (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether or not the game is over, based off win conditions. \hypertarget{class_controller_1_1_game_function_ad685bf2e60bc063664f47ac2cc1fc385}{}\label{class_controller_1_1_game_function_ad685bf2e60bc063664f47ac2cc1fc385} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!is\+Turn\+Over@{is\+Turn\+Over}} +\index{is\+Turn\+Over@{is\+Turn\+Over}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{is\+Turn\+Over()}{isTurnOver()}} +{\footnotesize\ttfamily static bool Controller.\+Game\+Function.\+is\+Turn\+Over (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns whether or not the current turn is over. \hypertarget{class_controller_1_1_game_function_a4d9123c98fec7919087096f35838acc8}{}\label{class_controller_1_1_game_function_a4d9123c98fec7919087096f35838acc8} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!path\+Finder@{path\+Finder}} +\index{path\+Finder@{path\+Finder}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{path\+Finder()}{pathFinder()}} +{\footnotesize\ttfamily static Linked\+List$<$\hyperlink{class_model_1_1_node}{Node}$>$ Controller.\+Game\+Function.\+path\+Finder (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit, }\item[{\hyperlink{class_model_1_1_node}{Node}}]{start, }\item[{\hyperlink{class_model_1_1_node}{Node}}]{end }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns a list of nodes representing the path from start node to end node; if not path is valid, return null. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em unit} & Unit to move. \\ +\hline +{\em start} & Start Node of the path. \\ +\hline +{\em end} & End Node of the path \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_a9910af0161e502a272fa6fbc025d6a93}{}\label{class_controller_1_1_game_function_a9910af0161e502a272fa6fbc025d6a93} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!set\+Movable\+Nodes@{set\+Movable\+Nodes}} +\index{set\+Movable\+Nodes@{set\+Movable\+Nodes}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{set\+Movable\+Nodes()}{setMovableNodes()}} +{\footnotesize\ttfamily static Linked\+List$<$\hyperlink{class_model_1_1_node}{Node}$>$ Controller.\+Game\+Function.\+set\+Movable\+Nodes (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Returns a list of nodes that the unit can move onto. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +{\em Specified} & unit. \\ +\hline +\end{DoxyParams} +\hypertarget{class_controller_1_1_game_function_aad2a98ed072875b85bb7168c805db0e5}{}\label{class_controller_1_1_game_function_aad2a98ed072875b85bb7168c805db0e5} +\index{Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}!start\+Turn@{start\+Turn}} +\index{start\+Turn@{start\+Turn}!Controller\+::\+Game\+Function@{Controller\+::\+Game\+Function}} +\subsubsection{\texorpdfstring{start\+Turn()}{startTurn()}} +{\footnotesize\ttfamily static void Controller.\+Game\+Function.\+start\+Turn (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_player}{Player}}]{player }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Must be called upon the start of a new turn. Resets all unit buttons and game states. +\begin{DoxyParams}{Parameters} +{\em player} & Player of the new turn. \\ +\hline +\end{DoxyParams} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Game\+Function.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_controller_1_1_mouse_handler.tex b/Doc/MIS/latex/class_controller_1_1_mouse_handler.tex new file mode 100644 index 0000000000000000000000000000000000000000..3ca96e04759d6fac0379741427520068b253c9b1 --- /dev/null +++ b/Doc/MIS/latex/class_controller_1_1_mouse_handler.tex @@ -0,0 +1,36 @@ +\hypertarget{class_controller_1_1_mouse_handler}{}\section{Controller.\+Mouse\+Handler Class Reference} +\label{class_controller_1_1_mouse_handler}\index{Controller.\+Mouse\+Handler@{Controller.\+Mouse\+Handler}} + + +Handles all user mouse input. + + +\subsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static void \hyperlink{class_controller_1_1_mouse_handler_a13cccfe6989e87549027a0dcc694d1f6}{update\+Mouse} (\hyperlink{class_model_1_1_graph}{Graph} graph) +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Handles all user mouse input. + +This class performs appropriate actions in response to user mouse input. + +\subsection{Member Function Documentation} +\hypertarget{class_controller_1_1_mouse_handler_a13cccfe6989e87549027a0dcc694d1f6}{}\label{class_controller_1_1_mouse_handler_a13cccfe6989e87549027a0dcc694d1f6} +\index{Controller\+::\+Mouse\+Handler@{Controller\+::\+Mouse\+Handler}!update\+Mouse@{update\+Mouse}} +\index{update\+Mouse@{update\+Mouse}!Controller\+::\+Mouse\+Handler@{Controller\+::\+Mouse\+Handler}} +\subsubsection{\texorpdfstring{update\+Mouse()}{updateMouse()}} +{\footnotesize\ttfamily static void Controller.\+Mouse\+Handler.\+update\+Mouse (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_graph}{Graph}}]{graph }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +Performs appropriate actions in response to mouse input. +\begin{DoxyParams}{Parameters} +{\em graph} & Graph representing the current game map. \\ +\hline +\end{DoxyParams} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Mouse\+Handler.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_archer.eps b/Doc/MIS/latex/class_model_1_1_archer.eps new file mode 100644 index 0000000000000000000000000000000000000000..5db0aebe16e77657fcab2f7e16c3761f2cd66899 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_archer.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 404.040404 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.237500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Archer) cw +(Model.Unit) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Archer) 0.000000 0.000000 box + (Model.Unit) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_archer.pdf b/Doc/MIS/latex/class_model_1_1_archer.pdf new file mode 100644 index 0000000000000000000000000000000000000000..508db4b553f1954a3e58151d34ed09554fbb180b --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_archer.pdf @@ -0,0 +1,94 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•N»n1ì÷+¶Še½~¬] ¥J0_p9âˆÄïãƒMäbä™Ù™9!“Aî^UÓ…âæŒ8¹‰ØCÕà,CDU óî‡Iªè<±Ì Œ¾Ž?õž>Új[·ãüóßÙ¤x)ŸÐÝzæ Q)9lkXþ¯X™ÔGAËB!„Añê°û{Ö2ŠWO1¾é»m¾l?Кþ›¬¡dp_œ/D¯?rŸúƒèôÈ'k"I*qlÉ™!󚱞”±WAT¸endstream +endobj +6 0 obj +209 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 405] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-7e1dbdcbec1c' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-7e1dbdcbec1c' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:11-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:11-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-7e1dbdcbec1c' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:58b96e4c-a79d-11e6-0000-7e1dbdcbec1c'/> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-7e1dbdcbec1c' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182811-05'00') +/ModDate(D:20161107182811-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000522 00000 n +0000002232 00000 n +0000000463 00000 n +0000000313 00000 n +0000000015 00000 n +0000000294 00000 n +0000000587 00000 n +0000000687 00000 n +0000000628 00000 n +0000000657 00000 n +0000000753 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<E0EA048DE291B4FA910FB2F39B20322E><E0EA048DE291B4FA910FB2F39B20322E>] +>> +startxref +2408 +%%EOF diff --git a/Doc/MIS/latex/class_model_1_1_archer.tex b/Doc/MIS/latex/class_model_1_1_archer.tex new file mode 100644 index 0000000000000000000000000000000000000000..ad039516309cea04d67301f2d0967fbc4e66cc57 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_archer.tex @@ -0,0 +1,346 @@ +\hypertarget{class_model_1_1_archer}{}\section{Model.\+Archer Class Reference} +\label{class_model_1_1_archer}\index{Model.\+Archer@{Model.\+Archer}} + + +The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. + + +Inheritance diagram for Model.\+Archer\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_archer} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_archer_ac009b1b8fdcdd5f004636f2929a24f1d}{Archer} (Texture2D sprite\+Image, \hyperlink{class_view_1_1_button}{Button} attack\+Button, \hyperlink{class_view_1_1_button}{Button} move\+Button, \hyperlink{class_view_1_1_button}{Button} item\+Button, \hyperlink{class_view_1_1_button}{Button} wait\+Button, \hyperlink{class_view_1_1_button}{Button} confirm\+Button, Texture2D char\+Info, Texture2D char\+Attack\+Info, Vector2 coordinates, int player) +\item +void \hyperlink{class_model_1_1_archer_a4de690927cc791da8de82e7bedf13cf2}{set\+Initial\+Stats} () +\item +int \hyperlink{class_model_1_1_archer_a29de04ac6f33498c7b0b11aa7000846d}{get\+Movability} () +\item +int \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_archer_a6b4732f3d000afcc82512e5e35ede43d}{get\+Stats} () +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_archer_a7a0e7ac7aae02a3f7ceb19a5581f114b}{get\+Equipable\+Weapons} () +\item +\hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} \hyperlink{class_model_1_1_archer_abd8b38fd96a6bf778cd635afd1ae13a4}{get\+Class} () +\item +Texture2D \hyperlink{class_model_1_1_archer_a4efe27d91b20d37fee32b7144bbe4af2}{get\+Sprite\+Image} () +\item +Texture2D \hyperlink{class_model_1_1_archer_aa643e878609d234a3fddca294d4d6756}{get\+Button\+Image} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +bool \hyperlink{class_model_1_1_archer_ae2eb6257593149ac06d4518e3ee52d5e}{is\+Button\+Active} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +Texture2D \hyperlink{class_model_1_1_archer_a4b1194492d3f9f83fe9842691fc110d9}{get\+Char\+Info} () +\item +Texture2D \hyperlink{class_model_1_1_archer_a9f123fc3a324eaf0041462dd40b5ae10}{get\+Char\+Attack\+Info} () +\item +\hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_archer_a9bbc5e879beafc25e5a33ff80c59ae82}{get\+Buttons} () +\item +\hyperlink{class_view_1_1_button}{Button} \hyperlink{class_model_1_1_archer_a31d5c71c429ebedef4a23b84b93408ff}{get\+Button\+Of\+Type} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +void \hyperlink{class_model_1_1_archer_a18527b95d270412cf4e8c7500c6635fc}{set\+Button\+Coordinates} (Vector2 pixel\+Coordinates) +\item +Rectangle \hyperlink{class_model_1_1_archer_a5fc8cd405796886cde8f15f3ad095ca2}{get\+Current\+Frame} () +\item +void \hyperlink{class_model_1_1_archer_a98d25f7b4b7f365402668bcfc03eff28}{animate} (Direction direction) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +bool \hyperlink{class_model_1_1_archer_acfa916c37c6191050a84e51100f12f16}{Alive}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_archer_af7364e7c13118293dac16c9caacd180f}{Hp}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_archer_a28caf09ef08983577d2f392c72055252}{Speed}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_archer_a9aff46cc90c3542276c55ca22a37b113}{Def}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_archer_a3310ec0b0903dbfb836be9663a8778d7}{Res}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_archer_ad2e43d0f3cf52494c703de0c7bfd8af6}{Level}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \hyperlink{class_model_1_1_archer_ac45f0a6f72a9d629b36e1486e444a6c9}{equipped\+Weapon}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_archer_a149681510408d9e6aa130918480c1721}{}\label{class_model_1_1_archer_a149681510408d9e6aa130918480c1721} +int {\bfseries Str}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_archer_a2a62fe1362df536254e676fa4d294e9e}{}\label{class_model_1_1_archer_a2a62fe1362df536254e676fa4d294e9e} +int {\bfseries Int}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_archer_ae89109c98b07771c74f25a75f4a5a76a}{}\label{class_model_1_1_archer_ae89109c98b07771c74f25a75f4a5a76a} +int {\bfseries Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Tuple$<$ int, int $>$ \hyperlink{class_model_1_1_archer_a29c86df7ddc2c4cc8b31442f6e33f533}{Position}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Vector2 \hyperlink{class_model_1_1_archer_aa923ebbd8825483f6d3ac8002c26b49e}{Pixel\+Coordinates}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_archer_ac009b1b8fdcdd5f004636f2929a24f1d}{}\label{class_model_1_1_archer_ac009b1b8fdcdd5f004636f2929a24f1d} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Archer@{Archer}} +\index{Archer@{Archer}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Archer()}{Archer()}} +{\footnotesize\ttfamily Model.\+Archer.\+Archer (\begin{DoxyParamCaption}\item[{Texture2D}]{sprite\+Image, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{attack\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{move\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{item\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{wait\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{confirm\+Button, }\item[{Texture2D}]{char\+Info, }\item[{Texture2D}]{char\+Attack\+Info, }\item[{Vector2}]{coordinates, }\item[{int}]{player }\end{DoxyParamCaption})} + +The constructor for \hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_warrior}{Warrior} +\begin{DoxyParams}{Parameters} +{\em sprite\+Image} & The character sprite \\ +\hline +{\em attack\+Button} & The dropdownmenu attack button texture \\ +\hline +{\em move\+Button} & The dropdownmenu move button texture \\ +\hline +{\em item\+Button} & The dropdownmenu item button texture \\ +\hline +{\em wait\+Button} & The dropdownmenu wait button texture \\ +\hline +{\em confirm\+Button} & The attack confirm button texture \\ +\hline +{\em char\+Info} & The character info popup texture \\ +\hline +{\em char\+Attack\+Info} & The character attack menu popup texture \\ +\hline +{\em coordinates} & The unit\textquotesingle{}s current coordinate on screen \\ +\hline +{\em player} & The player of which the unit belongs to \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_archer_a98d25f7b4b7f365402668bcfc03eff28}{}\label{class_model_1_1_archer_a98d25f7b4b7f365402668bcfc03eff28} +\index{Model\+::\+Archer@{Model\+::\+Archer}!animate@{animate}} +\index{animate@{animate}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{animate()}{animate()}} +{\footnotesize\ttfamily void Model.\+Archer.\+animate (\begin{DoxyParamCaption}\item[{Direction}]{direction }\end{DoxyParamCaption})} + +animate sprite walking the direction specified +\begin{DoxyParams}{Parameters} +{\em direction} & The direction the unit is moving in \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_aa643e878609d234a3fddca294d4d6756}{}\label{class_model_1_1_archer_aa643e878609d234a3fddca294d4d6756} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Button\+Image@{get\+Button\+Image}} +\index{get\+Button\+Image@{get\+Button\+Image}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Button\+Image()}{getButtonImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Archer.\+get\+Button\+Image (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +returns the button texture at index i + +Implements \hyperlink{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a31d5c71c429ebedef4a23b84b93408ff}{}\label{class_model_1_1_archer_a31d5c71c429ebedef4a23b84b93408ff} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Button\+Of\+Type@{get\+Button\+Of\+Type}} +\index{get\+Button\+Of\+Type@{get\+Button\+Of\+Type}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Button\+Of\+Type()}{getButtonOfType()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} Model.\+Archer.\+get\+Button\+Of\+Type (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +Returns the button type +\begin{DoxyParams}{Parameters} +{\em button\+Type} & The button to return (Move, Attack, Item, Wait, and attack confirm) \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a9bbc5e879beafc25e5a33ff80c59ae82}{}\label{class_model_1_1_archer_a9bbc5e879beafc25e5a33ff80c59ae82} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Buttons@{get\+Buttons}} +\index{get\+Buttons@{get\+Buttons}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Buttons()}{getButtons()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} Model.\+Archer.\+get\+Buttons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the dropdown menu buttons of the unit + +Implements \hyperlink{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a9f123fc3a324eaf0041462dd40b5ae10}{}\label{class_model_1_1_archer_a9f123fc3a324eaf0041462dd40b5ae10} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}} +\index{get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Char\+Attack\+Info()}{getCharAttackInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Archer.\+get\+Char\+Attack\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char attack info screen texture + +Implements \hyperlink{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a4b1194492d3f9f83fe9842691fc110d9}{}\label{class_model_1_1_archer_a4b1194492d3f9f83fe9842691fc110d9} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Char\+Info@{get\+Char\+Info}} +\index{get\+Char\+Info@{get\+Char\+Info}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Char\+Info()}{getCharInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Archer.\+get\+Char\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char info screen texture + +Implements \hyperlink{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_abd8b38fd96a6bf778cd635afd1ae13a4}{}\label{class_model_1_1_archer_abd8b38fd96a6bf778cd635afd1ae13a4} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Class@{get\+Class}} +\index{get\+Class@{get\+Class}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Class()}{getClass()}} +{\footnotesize\ttfamily \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} Model.\+Archer.\+get\+Class (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns unit\textquotesingle{}s class (warrior, mage, archer) + +Implements \hyperlink{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a5fc8cd405796886cde8f15f3ad095ca2}{}\label{class_model_1_1_archer_a5fc8cd405796886cde8f15f3ad095ca2} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Current\+Frame@{get\+Current\+Frame}} +\index{get\+Current\+Frame@{get\+Current\+Frame}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Current\+Frame()}{getCurrentFrame()}} +{\footnotesize\ttfamily Rectangle Model.\+Archer.\+get\+Current\+Frame (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the current sprite frame in animation sequence + +Implements \hyperlink{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a7a0e7ac7aae02a3f7ceb19a5581f114b}{}\label{class_model_1_1_archer_a7a0e7ac7aae02a3f7ceb19a5581f114b} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Equipable\+Weapons@{get\+Equipable\+Weapons}} +\index{get\+Equipable\+Weapons@{get\+Equipable\+Weapons}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Equipable\+Weapons()}{getEquipableWeapons()}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} Model.\+Archer.\+get\+Equipable\+Weapons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns array of equipable weapons + +Implements \hyperlink{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a29de04ac6f33498c7b0b11aa7000846d}{}\label{class_model_1_1_archer_a29de04ac6f33498c7b0b11aa7000846d} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Movability@{get\+Movability}} +\index{get\+Movability@{get\+Movability}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Movability()}{getMovability()}} +{\footnotesize\ttfamily int Model.\+Archer.\+get\+Movability (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the unit\textquotesingle{}s movability range on grid (number of spaces the unit can move in one turn) + +Implements \hyperlink{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a4efe27d91b20d37fee32b7144bbe4af2}{}\label{class_model_1_1_archer_a4efe27d91b20d37fee32b7144bbe4af2} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Sprite\+Image@{get\+Sprite\+Image}} +\index{get\+Sprite\+Image@{get\+Sprite\+Image}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Sprite\+Image()}{getSpriteImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Archer.\+get\+Sprite\+Image (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the sprite image of the unit + +Implements \hyperlink{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a6b4732f3d000afcc82512e5e35ede43d}{}\label{class_model_1_1_archer_a6b4732f3d000afcc82512e5e35ede43d} +\index{Model\+::\+Archer@{Model\+::\+Archer}!get\+Stats@{get\+Stats}} +\index{get\+Stats@{get\+Stats}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{get\+Stats()}{getStats()}} +{\footnotesize\ttfamily int \mbox{[}$\,$\mbox{]} Model.\+Archer.\+get\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns all stats as an array + +Implements \hyperlink{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_ae2eb6257593149ac06d4518e3ee52d5e}{}\label{class_model_1_1_archer_ae2eb6257593149ac06d4518e3ee52d5e} +\index{Model\+::\+Archer@{Model\+::\+Archer}!is\+Button\+Active@{is\+Button\+Active}} +\index{is\+Button\+Active@{is\+Button\+Active}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{is\+Button\+Active()}{isButtonActive()}} +{\footnotesize\ttfamily bool Model.\+Archer.\+is\+Button\+Active (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +indicates whether a button has already been previously selected or not + +Implements \hyperlink{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a18527b95d270412cf4e8c7500c6635fc}{}\label{class_model_1_1_archer_a18527b95d270412cf4e8c7500c6635fc} +\index{Model\+::\+Archer@{Model\+::\+Archer}!set\+Button\+Coordinates@{set\+Button\+Coordinates}} +\index{set\+Button\+Coordinates@{set\+Button\+Coordinates}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{set\+Button\+Coordinates()}{setButtonCoordinates()}} +{\footnotesize\ttfamily void Model.\+Archer.\+set\+Button\+Coordinates (\begin{DoxyParamCaption}\item[{Vector2}]{pixel\+Coordinates }\end{DoxyParamCaption})} + +sets the coordinates of menu buttons +\begin{DoxyParams}{Parameters} +{\em pixel\+Coordinates} & The pixel coordinate of the button \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb}{Model.\+Unit}. + +\hypertarget{class_model_1_1_archer_a4de690927cc791da8de82e7bedf13cf2}{}\label{class_model_1_1_archer_a4de690927cc791da8de82e7bedf13cf2} +\index{Model\+::\+Archer@{Model\+::\+Archer}!set\+Initial\+Stats@{set\+Initial\+Stats}} +\index{set\+Initial\+Stats@{set\+Initial\+Stats}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{set\+Initial\+Stats()}{setInitialStats()}} +{\footnotesize\ttfamily void Model.\+Archer.\+set\+Initial\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +sets initial unit stats upon creation + +Implements \hyperlink{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5}{Model.\+Unit}. + + + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_archer_acfa916c37c6191050a84e51100f12f16}{}\label{class_model_1_1_archer_acfa916c37c6191050a84e51100f12f16} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Alive@{Alive}} +\index{Alive@{Alive}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Alive}{Alive}} +{\footnotesize\ttfamily bool Model.\+Archer.\+Alive\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns whether or not unit is alive \hypertarget{class_model_1_1_archer_a9aff46cc90c3542276c55ca22a37b113}{}\label{class_model_1_1_archer_a9aff46cc90c3542276c55ca22a37b113} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Def@{Def}} +\index{Def@{Def}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Def}{Def}} +{\footnotesize\ttfamily int Model.\+Archer.\+Def\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Defense \hypertarget{class_model_1_1_archer_ac45f0a6f72a9d629b36e1486e444a6c9}{}\label{class_model_1_1_archer_ac45f0a6f72a9d629b36e1486e444a6c9} +\index{Model\+::\+Archer@{Model\+::\+Archer}!equipped\+Weapon@{equipped\+Weapon}} +\index{equipped\+Weapon@{equipped\+Weapon}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{equipped\+Weapon}{equippedWeapon}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} Model.\+Archer.\+equipped\+Weapon\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns weapon the unit is currently equipping \hypertarget{class_model_1_1_archer_af7364e7c13118293dac16c9caacd180f}{}\label{class_model_1_1_archer_af7364e7c13118293dac16c9caacd180f} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Hp@{Hp}} +\index{Hp@{Hp}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Hp}{Hp}} +{\footnotesize\ttfamily int Model.\+Archer.\+Hp\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s HP \hypertarget{class_model_1_1_archer_ad2e43d0f3cf52494c703de0c7bfd8af6}{}\label{class_model_1_1_archer_ad2e43d0f3cf52494c703de0c7bfd8af6} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Level@{Level}} +\index{Level@{Level}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Level}{Level}} +{\footnotesize\ttfamily int Model.\+Archer.\+Level\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Level \hypertarget{class_model_1_1_archer_aa923ebbd8825483f6d3ac8002c26b49e}{}\label{class_model_1_1_archer_aa923ebbd8825483f6d3ac8002c26b49e} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Pixel\+Coordinates@{Pixel\+Coordinates}} +\index{Pixel\+Coordinates@{Pixel\+Coordinates}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Pixel\+Coordinates}{PixelCoordinates}} +{\footnotesize\ttfamily Vector2 Model.\+Archer.\+Pixel\+Coordinates\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns the pixel coordinate of the unit ~\newline + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) \hypertarget{class_model_1_1_archer_a29c86df7ddc2c4cc8b31442f6e33f533}{}\label{class_model_1_1_archer_a29c86df7ddc2c4cc8b31442f6e33f533} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Position@{Position}} +\index{Position@{Position}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Position}{Position}} +{\footnotesize\ttfamily Tuple$<$int, int$>$ Model.\+Archer.\+Position\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +gets and sets unit\textquotesingle{}s position by tile \hypertarget{class_model_1_1_archer_a3310ec0b0903dbfb836be9663a8778d7}{}\label{class_model_1_1_archer_a3310ec0b0903dbfb836be9663a8778d7} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Res@{Res}} +\index{Res@{Res}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Res}{Res}} +{\footnotesize\ttfamily int Model.\+Archer.\+Res\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Resistance \hypertarget{class_model_1_1_archer_a28caf09ef08983577d2f392c72055252}{}\label{class_model_1_1_archer_a28caf09ef08983577d2f392c72055252} +\index{Model\+::\+Archer@{Model\+::\+Archer}!Speed@{Speed}} +\index{Speed@{Speed}!Model\+::\+Archer@{Model\+::\+Archer}} +\subsubsection{\texorpdfstring{Speed}{Speed}} +{\footnotesize\ttfamily int Model.\+Archer.\+Speed\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Speed + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Archer.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_bronze_bow.eps b/Doc/MIS/latex/class_model_1_1_bronze_bow.eps new file mode 100644 index 0000000000000000000000000000000000000000..002614b90ca1380da0152ebdca2d76d6e84bcf29 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_bow.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 325.203252 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.537500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.BronzeBow) cw +(Model.Weapon) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.BronzeBow) 0.000000 0.000000 box + (Model.Weapon) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_bronze_bow.pdf b/Doc/MIS/latex/class_model_1_1_bronze_bow.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbaffa769982583a9976603b4554bf5ff2293bb0 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_bow.pdf @@ -0,0 +1,95 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•ÁNÃ0†ï~ +ƒ‰¤n®•'ƒJœÑè†ÐºR8Lâéqºttb”ƒíÄöÿåѣ˧Äu·ŠÛ/p¸…xzÄÖ=65Ô9ñØnà8Ç(bòèïÛ®†×nGÍç°ÿîšápݾÃ]+‰¸Ž5LäFœW€zˆÎådwLRíI9Yyžç†71›x ,ÞîþE_)‰¯Å3±úþs÷ò1ìOìh9Ùtð3ó\rIÑVƉv™ÿ¶¿¥ªÊêLêÿä¨$³é¨Ä…'¥ds¢ÚÂéóGæž¹<1LzË«Ü¡¶¿FVuTe»%HE"Ë›ó-›sè±õyÇendstream +endobj +6 0 obj +271 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 326] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-e159a822e759' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-e159a822e759' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:11-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:11-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-e159a822e759' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:58b96e4c-a79d-11e6-0000-e159a822e759'/> +<rdf:Description rdf:about='uuid:58b96e4c-a79d-11e6-0000-e159a822e759' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182811-05'00') +/ModDate(D:20161107182811-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000584 00000 n +0000002294 00000 n +0000000525 00000 n +0000000375 00000 n +0000000015 00000 n +0000000356 00000 n +0000000649 00000 n +0000000749 00000 n +0000000690 00000 n +0000000719 00000 n +0000000815 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<0D8F5407B114561FB6FEEE269BAD401C><0D8F5407B114561FB6FEEE269BAD401C>] +>> +startxref +2470 +%%EOF diff --git a/Doc/MIS/latex/class_model_1_1_bronze_bow.tex b/Doc/MIS/latex/class_model_1_1_bronze_bow.tex new file mode 100644 index 0000000000000000000000000000000000000000..ae4a017ac2fe4029b1b04590a695b28d47e13860 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_bow.tex @@ -0,0 +1,55 @@ +\hypertarget{class_model_1_1_bronze_bow}{}\section{Model.\+Bronze\+Bow Class Reference} +\label{class_model_1_1_bronze_bow}\index{Model.\+Bronze\+Bow@{Model.\+Bronze\+Bow}} + + +Ranged physical \hyperlink{interface_model_1_1_weapon}{Weapon}. + + +Inheritance diagram for Model.\+Bronze\+Bow\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_bronze_bow} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_bronze_bow_a13a8963c53c07fe2d66c5428ab9c9bd6}{Bronze\+Bow} () +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_model_1_1_bronze_bow_a6caebba4edca56736464c5bfabe00b3b}{}\label{class_model_1_1_bronze_bow_a6caebba4edca56736464c5bfabe00b3b} +int {\bfseries mod\+Str}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_bow_af5ee7e2b002745a57a50630031d4e81e}{}\label{class_model_1_1_bronze_bow_af5ee7e2b002745a57a50630031d4e81e} +int {\bfseries mod\+Int}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_bow_a569fe9e160d98a9b68d6a107810d7d4a}{}\label{class_model_1_1_bronze_bow_a569fe9e160d98a9b68d6a107810d7d4a} +int {\bfseries mod\+Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_bow_ae1cf127006911800db89aafcddf62851}{}\label{class_model_1_1_bronze_bow_ae1cf127006911800db89aafcddf62851} +string {\bfseries name}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_bow_ae8e37042660fb1a2e5d98006405f81a7}{}\label{class_model_1_1_bronze_bow_ae8e37042660fb1a2e5d98006405f81a7} +int \mbox{[}$\,$\mbox{]} {\bfseries range}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Ranged physical \hyperlink{interface_model_1_1_weapon}{Weapon}. + +This class represents a ranged weapon. It implements the \hyperlink{interface_model_1_1_weapon}{Weapon} interface. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_bronze_bow_a13a8963c53c07fe2d66c5428ab9c9bd6}{}\label{class_model_1_1_bronze_bow_a13a8963c53c07fe2d66c5428ab9c9bd6} +\index{Model\+::\+Bronze\+Bow@{Model\+::\+Bronze\+Bow}!Bronze\+Bow@{Bronze\+Bow}} +\index{Bronze\+Bow@{Bronze\+Bow}!Model\+::\+Bronze\+Bow@{Model\+::\+Bronze\+Bow}} +\subsubsection{\texorpdfstring{Bronze\+Bow()}{BronzeBow()}} +{\footnotesize\ttfamily Model.\+Bronze\+Bow.\+Bronze\+Bow (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructs a Bronze Bow. + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Bronze\+Bow.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_bronze_sword.eps b/Doc/MIS/latex/class_model_1_1_bronze_sword.eps new file mode 100644 index 0000000000000000000000000000000000000000..4fc4962cdcfdf0f34314672faec4019dfc1ac672 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_sword.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 296.296296 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.687500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.BronzeSword) cw +(Model.Weapon) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.BronzeSword) 0.000000 0.000000 box + (Model.Weapon) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_bronze_sword.pdf b/Doc/MIS/latex/class_model_1_1_bronze_sword.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e604c80075689b3e73a7cc3532196edbd8a09cab --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_sword.pdf @@ -0,0 +1,96 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•P±n1Ýý¡ƒ±‹“¬Hˆ©%Rç +$ÄqpHýzrpm¯R—*ƒ•÷^Þ{Ι¹?ÃÜ40{¸¿ã. ‡±ipž‹ ¢¯ÈÅ0ïàùPP•ÌØ£ +jŠ¹Ék»4ïÚÓg½¾µÝvš°È°‚Ê“S'x+AKè<3cb£Ê»Öÿ‹B>¦RC±ÄQü{ýqnOßÉEE)é‰Ä—VêG\ó¼Šó‰,á±WŽ/~ðýá ç-PŠ(V¾Ç\‘hå”XÇÈoÝK){©W€endstream +endobj +6 0 obj +220 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 297] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:595204cc-a79d-11e6-0000-b4b33d8b4c83' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:595204cc-a79d-11e6-0000-b4b33d8b4c83' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:12-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:12-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:595204cc-a79d-11e6-0000-b4b33d8b4c83' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:595204cc-a79d-11e6-0000-b4b33d8b4c83'/> +<rdf:Description rdf:about='uuid:595204cc-a79d-11e6-0000-b4b33d8b4c83' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182812-05'00') +/ModDate(D:20161107182812-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000533 00000 n +0000002243 00000 n +0000000474 00000 n +0000000324 00000 n +0000000015 00000 n +0000000305 00000 n +0000000598 00000 n +0000000698 00000 n +0000000639 00000 n +0000000668 00000 n +0000000764 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<81725AB6027D2040C27D305C9C75423B><81725AB6027D2040C27D305C9C75423B>] +>> +startxref +2419 +%%EOF diff --git a/Doc/MIS/latex/class_model_1_1_bronze_sword.tex b/Doc/MIS/latex/class_model_1_1_bronze_sword.tex new file mode 100644 index 0000000000000000000000000000000000000000..8c56e6c0b606e961326636f84eb5a17c0c903d2b --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_bronze_sword.tex @@ -0,0 +1,55 @@ +\hypertarget{class_model_1_1_bronze_sword}{}\section{Model.\+Bronze\+Sword Class Reference} +\label{class_model_1_1_bronze_sword}\index{Model.\+Bronze\+Sword@{Model.\+Bronze\+Sword}} + + +Melee Physical \hyperlink{interface_model_1_1_weapon}{Weapon}. + + +Inheritance diagram for Model.\+Bronze\+Sword\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_bronze_sword} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_bronze_sword_a2b6859b3e48e9cc762a236c21a2b2778}{Bronze\+Sword} () +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_model_1_1_bronze_sword_aa3fa8bf42493d699ebab0a71b49f790f}{}\label{class_model_1_1_bronze_sword_aa3fa8bf42493d699ebab0a71b49f790f} +int {\bfseries mod\+Str}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_sword_adc76e86568c1cc4be336f3c565890040}{}\label{class_model_1_1_bronze_sword_adc76e86568c1cc4be336f3c565890040} +int {\bfseries mod\+Int}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_sword_adbcbbba4083e38d4502b59847d739a4b}{}\label{class_model_1_1_bronze_sword_adbcbbba4083e38d4502b59847d739a4b} +int {\bfseries mod\+Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_sword_a4a66267bbabf3a20bbf155225d2bf78e}{}\label{class_model_1_1_bronze_sword_a4a66267bbabf3a20bbf155225d2bf78e} +string {\bfseries name}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_bronze_sword_af13cc7a64cd1df9257977b9961b5bb21}{}\label{class_model_1_1_bronze_sword_af13cc7a64cd1df9257977b9961b5bb21} +int \mbox{[}$\,$\mbox{]} {\bfseries range}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Melee Physical \hyperlink{interface_model_1_1_weapon}{Weapon}. + +This class represents a melee weapon. It implements the \hyperlink{interface_model_1_1_weapon}{Weapon} interface. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_bronze_sword_a2b6859b3e48e9cc762a236c21a2b2778}{}\label{class_model_1_1_bronze_sword_a2b6859b3e48e9cc762a236c21a2b2778} +\index{Model\+::\+Bronze\+Sword@{Model\+::\+Bronze\+Sword}!Bronze\+Sword@{Bronze\+Sword}} +\index{Bronze\+Sword@{Bronze\+Sword}!Model\+::\+Bronze\+Sword@{Model\+::\+Bronze\+Sword}} +\subsubsection{\texorpdfstring{Bronze\+Sword()}{BronzeSword()}} +{\footnotesize\ttfamily Model.\+Bronze\+Sword.\+Bronze\+Sword (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructs a Bronze Sword. + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Bronze\+Sword.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_damage_calculations.tex b/Doc/MIS/latex/class_model_1_1_damage_calculations.tex new file mode 100644 index 0000000000000000000000000000000000000000..4ea05e453a17d21e84a2e1771d54e0ae064d5671 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_damage_calculations.tex @@ -0,0 +1,102 @@ +\hypertarget{class_model_1_1_damage_calculations}{}\section{Model.\+Damage\+Calculations Class Reference} +\label{class_model_1_1_damage_calculations}\index{Model.\+Damage\+Calculations@{Model.\+Damage\+Calculations}} + + +This class calculates all damage related calculations + + +\subsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static int \hyperlink{class_model_1_1_damage_calculations_a40a09ac0e5901820aed5d66ccd2725ea}{get\+Damage\+Dealt} (\hyperlink{interface_model_1_1_unit}{Unit} attacker, \hyperlink{interface_model_1_1_unit}{Unit} defender, bool phys\+Or\+Magic) +\item +static int \hyperlink{class_model_1_1_damage_calculations_a21e4eed0da4ff5c11ed59949f7a4a4f8}{get\+Hit\+Rate} (\hyperlink{interface_model_1_1_unit}{Unit} attacker, \hyperlink{interface_model_1_1_unit}{Unit} defender) +\item +static int \hyperlink{class_model_1_1_damage_calculations_a8d8f1598155ed6d7719b9adc973831ed}{get\+Crit\+Rate} (\hyperlink{interface_model_1_1_unit}{Unit} attacker, \hyperlink{interface_model_1_1_unit}{Unit} defender) +\item +static int \hyperlink{class_model_1_1_damage_calculations_a4f32191388e849f2f1dbaa6bac1015fa}{get\+Hit\+Count} (\hyperlink{interface_model_1_1_unit}{Unit} attacker, \hyperlink{interface_model_1_1_unit}{Unit} defender) +\item +static int \hyperlink{class_model_1_1_damage_calculations_a3b2362132e274bc821c9c365511fc11b}{final\+Damage} (\hyperlink{interface_model_1_1_unit}{Unit} attacker, \hyperlink{interface_model_1_1_unit}{Unit} defender, bool phys\+Or\+Magic) +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +This class calculates all damage related calculations + + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_damage_calculations_a3b2362132e274bc821c9c365511fc11b}{}\label{class_model_1_1_damage_calculations_a3b2362132e274bc821c9c365511fc11b} +\index{Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}!final\+Damage@{final\+Damage}} +\index{final\+Damage@{final\+Damage}!Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}} +\subsubsection{\texorpdfstring{final\+Damage()}{finalDamage()}} +{\footnotesize\ttfamily static int Model.\+Damage\+Calculations.\+final\+Damage (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{attacker, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{defender, }\item[{bool}]{phys\+Or\+Magic }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +factors in damage dealt, hit rate, crit rate, and number of attacks (as in how above functions were calculated) to calculate actual damage dealt +\begin{DoxyParams}{Parameters} +{\em attacker} & The unit performing the attack \\ +\hline +{\em defender} & The unit defending against the attack \\ +\hline +{\em phys\+Or\+Magic} & Boolean that tells the controller if it\textquotesingle{}s physical or magical damage to be calculated \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_damage_calculations_a8d8f1598155ed6d7719b9adc973831ed}{}\label{class_model_1_1_damage_calculations_a8d8f1598155ed6d7719b9adc973831ed} +\index{Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}!get\+Crit\+Rate@{get\+Crit\+Rate}} +\index{get\+Crit\+Rate@{get\+Crit\+Rate}!Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}} +\subsubsection{\texorpdfstring{get\+Crit\+Rate()}{getCritRate()}} +{\footnotesize\ttfamily static int Model.\+Damage\+Calculations.\+get\+Crit\+Rate (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{attacker, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{defender }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +passes in the 2 units, and returns the crit rate as a percentage out of 100 by taking into account both unit\textquotesingle{}s skill +\begin{DoxyParams}{Parameters} +{\em attacker} & The unit performing the attack \\ +\hline +{\em defender} & The unit defending against the attack \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_damage_calculations_a40a09ac0e5901820aed5d66ccd2725ea}{}\label{class_model_1_1_damage_calculations_a40a09ac0e5901820aed5d66ccd2725ea} +\index{Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}!get\+Damage\+Dealt@{get\+Damage\+Dealt}} +\index{get\+Damage\+Dealt@{get\+Damage\+Dealt}!Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}} +\subsubsection{\texorpdfstring{get\+Damage\+Dealt()}{getDamageDealt()}} +{\footnotesize\ttfamily static int Model.\+Damage\+Calculations.\+get\+Damage\+Dealt (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{attacker, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{defender, }\item[{bool}]{phys\+Or\+Magic }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +passes in the 2 units, and a boolean on whether attack is physical (false), or magical (true), and returns damage dealt by taking into account an attacker\textquotesingle{}s str/int, and defender def/res +\begin{DoxyParams}{Parameters} +{\em attacker} & The unit performing the attack \\ +\hline +{\em defender} & The unit defending against the attack \\ +\hline +{\em phys\+Or\+Magic} & Boolean that tells the controller if it\textquotesingle{}s physical or magical damage to be calculated \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_damage_calculations_a4f32191388e849f2f1dbaa6bac1015fa}{}\label{class_model_1_1_damage_calculations_a4f32191388e849f2f1dbaa6bac1015fa} +\index{Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}!get\+Hit\+Count@{get\+Hit\+Count}} +\index{get\+Hit\+Count@{get\+Hit\+Count}!Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}} +\subsubsection{\texorpdfstring{get\+Hit\+Count()}{getHitCount()}} +{\footnotesize\ttfamily static int Model.\+Damage\+Calculations.\+get\+Hit\+Count (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{attacker, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{defender }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +passes in then 2 units, and determines how many attacks the attacker makes by factoring in both unit\textquotesingle{}s relative speed +\begin{DoxyParams}{Parameters} +{\em attacker} & The unit performing the attack \\ +\hline +{\em defender} & The unit defending against the attack \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_damage_calculations_a21e4eed0da4ff5c11ed59949f7a4a4f8}{}\label{class_model_1_1_damage_calculations_a21e4eed0da4ff5c11ed59949f7a4a4f8} +\index{Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}!get\+Hit\+Rate@{get\+Hit\+Rate}} +\index{get\+Hit\+Rate@{get\+Hit\+Rate}!Model\+::\+Damage\+Calculations@{Model\+::\+Damage\+Calculations}} +\subsubsection{\texorpdfstring{get\+Hit\+Rate()}{getHitRate()}} +{\footnotesize\ttfamily static int Model.\+Damage\+Calculations.\+get\+Hit\+Rate (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{attacker, }\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{defender }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + +passes in the 2 units, and returns the hit rate as a percentage out of 100 by taking into account both unit\textquotesingle{}s skill +\begin{DoxyParams}{Parameters} +{\em attacker} & The unit performing the attack \\ +\hline +{\em defender} & The unit defending against the attack \\ +\hline +\end{DoxyParams} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Damage\+Calculations.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_fireball.eps b/Doc/MIS/latex/class_model_1_1_fireball.eps new file mode 100644 index 0000000000000000000000000000000000000000..3a0201def64d7fe5258e6d985bfa21d94cd421a1 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_fireball.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 380.952381 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.312500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Fireball) cw +(Model.Weapon) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Fireball) 0.000000 0.000000 box + (Model.Weapon) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_fireball.pdf b/Doc/MIS/latex/class_model_1_1_fireball.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21905ec6f0a464306a956b95f34bccf59179aea3 Binary files /dev/null and b/Doc/MIS/latex/class_model_1_1_fireball.pdf differ diff --git a/Doc/MIS/latex/class_model_1_1_fireball.tex b/Doc/MIS/latex/class_model_1_1_fireball.tex new file mode 100644 index 0000000000000000000000000000000000000000..039d55f0b1e5299f97d837e6850f95ae1cee8033 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_fireball.tex @@ -0,0 +1,55 @@ +\hypertarget{class_model_1_1_fireball}{}\section{Model.\+Fireball Class Reference} +\label{class_model_1_1_fireball}\index{Model.\+Fireball@{Model.\+Fireball}} + + +Ranged Magical \hyperlink{interface_model_1_1_weapon}{Weapon}. + + +Inheritance diagram for Model.\+Fireball\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_fireball} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_fireball_a7d641800d5354711f67ce3554a2deb0d}{Fireball} () +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_model_1_1_fireball_a20558861ec4039883ee98f2cecbe3431}{}\label{class_model_1_1_fireball_a20558861ec4039883ee98f2cecbe3431} +int {\bfseries mod\+Str}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_fireball_afd695fdcfffb1ffcbae41ed3656ebd34}{}\label{class_model_1_1_fireball_afd695fdcfffb1ffcbae41ed3656ebd34} +int {\bfseries mod\+Int}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_fireball_a4ff8c171340f4c6bf65bd3d6b73138f7}{}\label{class_model_1_1_fireball_a4ff8c171340f4c6bf65bd3d6b73138f7} +int {\bfseries mod\+Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_fireball_aa5053d42f6a4432ef58a7666ce4e6736}{}\label{class_model_1_1_fireball_aa5053d42f6a4432ef58a7666ce4e6736} +string {\bfseries name}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +\hypertarget{class_model_1_1_fireball_a406360fd3901b7a5ade3a8bc35c9423d}{}\label{class_model_1_1_fireball_a406360fd3901b7a5ade3a8bc35c9423d} +int \mbox{[}$\,$\mbox{]} {\bfseries range}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Ranged Magical \hyperlink{interface_model_1_1_weapon}{Weapon}. + +This class represents a magic based weapon. It implements the \hyperlink{interface_model_1_1_weapon}{Weapon} interface. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_fireball_a7d641800d5354711f67ce3554a2deb0d}{}\label{class_model_1_1_fireball_a7d641800d5354711f67ce3554a2deb0d} +\index{Model\+::\+Fireball@{Model\+::\+Fireball}!Fireball@{Fireball}} +\index{Fireball@{Fireball}!Model\+::\+Fireball@{Model\+::\+Fireball}} +\subsubsection{\texorpdfstring{Fireball()}{Fireball()}} +{\footnotesize\ttfamily Model.\+Fireball.\+Fireball (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructs a \hyperlink{class_model_1_1_fireball}{Fireball}. + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Fireball.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_game_state.tex b/Doc/MIS/latex/class_model_1_1_game_state.tex new file mode 100644 index 0000000000000000000000000000000000000000..39cb606bae5f4faa46965421372b15c193f2faea --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_game_state.tex @@ -0,0 +1,102 @@ +\hypertarget{class_model_1_1_game_state}{}\section{Model.\+Game\+State Class Reference} +\label{class_model_1_1_game_state}\index{Model.\+Game\+State@{Model.\+Game\+State}} + + +This class holds states in the scope of the entire gameplay + + +\subsection*{Static Public Attributes} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_model_1_1_game_state_a4ca2649ffbcf39f72b5373889fc87137}{}\label{class_model_1_1_game_state_a4ca2649ffbcf39f72b5373889fc87137} +static readonly int {\bfseries S\+C\+R\+E\+E\+N\+\_\+\+H\+E\+I\+G\+HT} = 640 +\item +\hypertarget{class_model_1_1_game_state_ad3b13fdcad1e5b05176da2f3d554fa20}{}\label{class_model_1_1_game_state_ad3b13fdcad1e5b05176da2f3d554fa20} +static readonly int {\bfseries S\+C\+R\+E\+E\+N\+\_\+\+W\+I\+D\+TH} = 960 +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +static bool \hyperlink{class_model_1_1_game_state_ac5ac5083088be3636da64ac0a3eb3ac9}{playable\+Unit\+Selected}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static \hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_game_state_ab163d599e6e1f46c470d0835d8053ad9}{selected\+Unit}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static \hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_game_state_af352baaca46aaf95b984980ca55693ed}{unit\+To\+Attack}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static \hyperlink{class_model_1_1_player}{Player} \hyperlink{class_model_1_1_game_state_aa541a7b45ea55484db8a3357d8e680de}{current\+Player}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static \hyperlink{class_model_1_1_player}{Player} \hyperlink{class_model_1_1_game_state_ae276234c4a6b2b182b13f125abb61ba3}{enemy\+Player}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static bool \hyperlink{class_model_1_1_game_state_a6e723d6c3b99e1c235c6d214ee17929a}{drop\+Down\+Menu\+Open}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static bool \hyperlink{class_model_1_1_game_state_ab5781c1403edc30064ae2a8cbaad4c4c}{attack\+Confirm\+Open}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +static bool \hyperlink{class_model_1_1_game_state_af546cfa01e29773b5260cd6bfe8132b7}{before\+Move}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_game_state_ac8c6a53641aafa5d57a9dff8f958a904}{}\label{class_model_1_1_game_state_ac8c6a53641aafa5d57a9dff8f958a904} +static bool {\bfseries is\+Animating}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_game_state_aa2e325332a755c971d36c7c388d136d2}{}\label{class_model_1_1_game_state_aa2e325332a755c971d36c7c388d136d2} +static Linked\+List$<$ \hyperlink{class_model_1_1_node}{Node} $>$ {\bfseries moveable\+Nodes}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +This class holds states in the scope of the entire gameplay + + + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_game_state_ab5781c1403edc30064ae2a8cbaad4c4c}{}\label{class_model_1_1_game_state_ab5781c1403edc30064ae2a8cbaad4c4c} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!attack\+Confirm\+Open@{attack\+Confirm\+Open}} +\index{attack\+Confirm\+Open@{attack\+Confirm\+Open}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{attack\+Confirm\+Open}{attackConfirmOpen}} +{\footnotesize\ttfamily bool Model.\+Game\+State.\+attack\+Confirm\+Open\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets whether attack\+Confirm menu should be open \hypertarget{class_model_1_1_game_state_af546cfa01e29773b5260cd6bfe8132b7}{}\label{class_model_1_1_game_state_af546cfa01e29773b5260cd6bfe8132b7} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!before\+Move@{before\+Move}} +\index{before\+Move@{before\+Move}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{before\+Move}{beforeMove}} +{\footnotesize\ttfamily bool Model.\+Game\+State.\+before\+Move\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets if a unit has moved yet or not. before\+M\+Ove is true before unit moves, false after it moves. Used to determine what tiles are highlighted \hypertarget{class_model_1_1_game_state_aa541a7b45ea55484db8a3357d8e680de}{}\label{class_model_1_1_game_state_aa541a7b45ea55484db8a3357d8e680de} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!current\+Player@{current\+Player}} +\index{current\+Player@{current\+Player}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{current\+Player}{currentPlayer}} +{\footnotesize\ttfamily \hyperlink{class_model_1_1_player}{Player} Model.\+Game\+State.\+current\+Player\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets the current player \hypertarget{class_model_1_1_game_state_a6e723d6c3b99e1c235c6d214ee17929a}{}\label{class_model_1_1_game_state_a6e723d6c3b99e1c235c6d214ee17929a} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!drop\+Down\+Menu\+Open@{drop\+Down\+Menu\+Open}} +\index{drop\+Down\+Menu\+Open@{drop\+Down\+Menu\+Open}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{drop\+Down\+Menu\+Open}{dropDownMenuOpen}} +{\footnotesize\ttfamily bool Model.\+Game\+State.\+drop\+Down\+Menu\+Open\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets whether drop down menu should be open \hypertarget{class_model_1_1_game_state_ae276234c4a6b2b182b13f125abb61ba3}{}\label{class_model_1_1_game_state_ae276234c4a6b2b182b13f125abb61ba3} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!enemy\+Player@{enemy\+Player}} +\index{enemy\+Player@{enemy\+Player}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{enemy\+Player}{enemyPlayer}} +{\footnotesize\ttfamily \hyperlink{class_model_1_1_player}{Player} Model.\+Game\+State.\+enemy\+Player\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets the enemy player \hypertarget{class_model_1_1_game_state_ac5ac5083088be3636da64ac0a3eb3ac9}{}\label{class_model_1_1_game_state_ac5ac5083088be3636da64ac0a3eb3ac9} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!playable\+Unit\+Selected@{playable\+Unit\+Selected}} +\index{playable\+Unit\+Selected@{playable\+Unit\+Selected}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{playable\+Unit\+Selected}{playableUnitSelected}} +{\footnotesize\ttfamily bool Model.\+Game\+State.\+playable\+Unit\+Selected\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets if a playable unit is selected \hypertarget{class_model_1_1_game_state_ab163d599e6e1f46c470d0835d8053ad9}{}\label{class_model_1_1_game_state_ab163d599e6e1f46c470d0835d8053ad9} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!selected\+Unit@{selected\+Unit}} +\index{selected\+Unit@{selected\+Unit}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{selected\+Unit}{selectedUnit}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_unit}{Unit} Model.\+Game\+State.\+selected\+Unit\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets a unit \hypertarget{class_model_1_1_game_state_af352baaca46aaf95b984980ca55693ed}{}\label{class_model_1_1_game_state_af352baaca46aaf95b984980ca55693ed} +\index{Model\+::\+Game\+State@{Model\+::\+Game\+State}!unit\+To\+Attack@{unit\+To\+Attack}} +\index{unit\+To\+Attack@{unit\+To\+Attack}!Model\+::\+Game\+State@{Model\+::\+Game\+State}} +\subsubsection{\texorpdfstring{unit\+To\+Attack}{unitToAttack}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_unit}{Unit} Model.\+Game\+State.\+unit\+To\+Attack\hspace{0.3cm}{\ttfamily [static]}, {\ttfamily [get]}, {\ttfamily [set]}} + +Sets and gets the unit to attack + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Game\+State.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_graph.tex b/Doc/MIS/latex/class_model_1_1_graph.tex new file mode 100644 index 0000000000000000000000000000000000000000..f5842fb31fe8f80a02a13b134205ae71256c8cdc --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_graph.tex @@ -0,0 +1,129 @@ +\hypertarget{class_model_1_1_graph}{}\section{Model.\+Graph Class Reference} +\label{class_model_1_1_graph}\index{Model.\+Graph@{Model.\+Graph}} + + +Structure that represents the game map. + + +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_graph_a70e0c2327268c051423e64454fd63c1c}{Graph} (int x, int y) +\item +\hyperlink{class_model_1_1_node}{Node} \hyperlink{class_model_1_1_graph_a1ea50115c6a9535a1040c336d7cd8d19}{get\+Node} (int x, int y) +\item +\hyperlink{class_model_1_1_node}{Node} \hyperlink{class_model_1_1_graph_a7acc189afb46afd8b3ca2525a231d936}{get\+Node} (Vector2 pixel\+Coordinates) +\item +\hyperlink{class_model_1_1_node}{Node} \hyperlink{class_model_1_1_graph_ab52a2f2957dec95ebb923ef3f6af607a}{get\+Node} (Tuple$<$ int, int $>$ position) +\item +void \hyperlink{class_model_1_1_graph_a9bd131e174df6cf21a64cf5af0cde0d4}{set\+Node} (\hyperlink{class_model_1_1_node}{Node} node, int x, int y) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +int \hyperlink{class_model_1_1_graph_ae4dd5d130ea173ac6a38e15f6fa53544}{Number\+Of\+Nodes}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \hyperlink{class_model_1_1_graph_ac3b8b0d5608f48b36c624108dca52695}{Width}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \hyperlink{class_model_1_1_graph_ad80b7be893e46c9149552ef8bfc18068}{Height}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Structure that represents the game map. + +Programmatical representation of the map grid. Composed of Nodes that represent each tile on the grid. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_graph_a70e0c2327268c051423e64454fd63c1c}{}\label{class_model_1_1_graph_a70e0c2327268c051423e64454fd63c1c} +\index{Model\+::\+Graph@{Model\+::\+Graph}!Graph@{Graph}} +\index{Graph@{Graph}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{Graph()}{Graph()}} +{\footnotesize\ttfamily Model.\+Graph.\+Graph (\begin{DoxyParamCaption}\item[{int}]{x, }\item[{int}]{y }\end{DoxyParamCaption})} + +Creates a graph. +\begin{DoxyParams}{Parameters} +{\em x} & Width of the graph. \\ +\hline +{\em y} & Height of the graph. \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_graph_a1ea50115c6a9535a1040c336d7cd8d19}{}\label{class_model_1_1_graph_a1ea50115c6a9535a1040c336d7cd8d19} +\index{Model\+::\+Graph@{Model\+::\+Graph}!get\+Node@{get\+Node}} +\index{get\+Node@{get\+Node}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{get\+Node()}{getNode()}\hspace{0.1cm}{\footnotesize\ttfamily [1/3]}} +{\footnotesize\ttfamily \hyperlink{class_model_1_1_node}{Node} Model.\+Graph.\+get\+Node (\begin{DoxyParamCaption}\item[{int}]{x, }\item[{int}]{y }\end{DoxyParamCaption})} + +Returns the node on the graph at the specified position (by nodes). +\begin{DoxyParams}{Parameters} +{\em x} & X position of the node (by nodes). \\ +\hline +{\em y} & Y position of the node (by nodes). \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_graph_a7acc189afb46afd8b3ca2525a231d936}{}\label{class_model_1_1_graph_a7acc189afb46afd8b3ca2525a231d936} +\index{Model\+::\+Graph@{Model\+::\+Graph}!get\+Node@{get\+Node}} +\index{get\+Node@{get\+Node}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{get\+Node()}{getNode()}\hspace{0.1cm}{\footnotesize\ttfamily [2/3]}} +{\footnotesize\ttfamily \hyperlink{class_model_1_1_node}{Node} Model.\+Graph.\+get\+Node (\begin{DoxyParamCaption}\item[{Vector2}]{pixel\+Coordinates }\end{DoxyParamCaption})} + +Returns the node on the graph at the specified position (by pixel coordinates). +\begin{DoxyParams}{Parameters} +{\em pixel\+Coordinates} & Pixel coordinates of the node, which contains the X coordinate and Y coordinate. \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_graph_ab52a2f2957dec95ebb923ef3f6af607a}{}\label{class_model_1_1_graph_ab52a2f2957dec95ebb923ef3f6af607a} +\index{Model\+::\+Graph@{Model\+::\+Graph}!get\+Node@{get\+Node}} +\index{get\+Node@{get\+Node}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{get\+Node()}{getNode()}\hspace{0.1cm}{\footnotesize\ttfamily [3/3]}} +{\footnotesize\ttfamily \hyperlink{class_model_1_1_node}{Node} Model.\+Graph.\+get\+Node (\begin{DoxyParamCaption}\item[{Tuple$<$ int, int $>$}]{position }\end{DoxyParamCaption})} + +Returns the node on the graph at the specified position (by nodes). +\begin{DoxyParams}{Parameters} +{\em position} & Position of the node, which contains the X position and Y position (by nodes). \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_graph_a9bd131e174df6cf21a64cf5af0cde0d4}{}\label{class_model_1_1_graph_a9bd131e174df6cf21a64cf5af0cde0d4} +\index{Model\+::\+Graph@{Model\+::\+Graph}!set\+Node@{set\+Node}} +\index{set\+Node@{set\+Node}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{set\+Node()}{setNode()}} +{\footnotesize\ttfamily void Model.\+Graph.\+set\+Node (\begin{DoxyParamCaption}\item[{\hyperlink{class_model_1_1_node}{Node}}]{node, }\item[{int}]{x, }\item[{int}]{y }\end{DoxyParamCaption})} + +Sets the node at the specified position on the graph to the specified node. +\begin{DoxyParams}{Parameters} +{\em node} & \hyperlink{class_model_1_1_node}{Node} to set. \\ +\hline +{\em x} & X position of the node (by nodes). \\ +\hline +{\em y} & Y position of the node (by nodes). \\ +\hline +\end{DoxyParams} + + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_graph_ad80b7be893e46c9149552ef8bfc18068}{}\label{class_model_1_1_graph_ad80b7be893e46c9149552ef8bfc18068} +\index{Model\+::\+Graph@{Model\+::\+Graph}!Height@{Height}} +\index{Height@{Height}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{Height}{Height}} +{\footnotesize\ttfamily int Model.\+Graph.\+Height\hspace{0.3cm}{\ttfamily [get]}} + +Returns the height of the graph (by number of nodes). \hypertarget{class_model_1_1_graph_ae4dd5d130ea173ac6a38e15f6fa53544}{}\label{class_model_1_1_graph_ae4dd5d130ea173ac6a38e15f6fa53544} +\index{Model\+::\+Graph@{Model\+::\+Graph}!Number\+Of\+Nodes@{Number\+Of\+Nodes}} +\index{Number\+Of\+Nodes@{Number\+Of\+Nodes}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{Number\+Of\+Nodes}{NumberOfNodes}} +{\footnotesize\ttfamily int Model.\+Graph.\+Number\+Of\+Nodes\hspace{0.3cm}{\ttfamily [get]}} + +Returns the total number of nodes in the graph. \hypertarget{class_model_1_1_graph_ac3b8b0d5608f48b36c624108dca52695}{}\label{class_model_1_1_graph_ac3b8b0d5608f48b36c624108dca52695} +\index{Model\+::\+Graph@{Model\+::\+Graph}!Width@{Width}} +\index{Width@{Width}!Model\+::\+Graph@{Model\+::\+Graph}} +\subsubsection{\texorpdfstring{Width}{Width}} +{\footnotesize\ttfamily int Model.\+Graph.\+Width\hspace{0.3cm}{\ttfamily [get]}} + +Returns the width of the graph (by number of nodes). + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Graph.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_mage.eps b/Doc/MIS/latex/class_model_1_1_mage.eps new file mode 100644 index 0000000000000000000000000000000000000000..1daeae179ef5aa61cf689009a8d0426a063b9425 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_mage.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 439.560440 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.137500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Mage) cw +(Model.Unit) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Mage) 0.000000 0.000000 box + (Model.Unit) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_mage.pdf b/Doc/MIS/latex/class_model_1_1_mage.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a027e46db3e2a4b9001101901084327f45eb7a6 Binary files /dev/null and b/Doc/MIS/latex/class_model_1_1_mage.pdf differ diff --git a/Doc/MIS/latex/class_model_1_1_mage.tex b/Doc/MIS/latex/class_model_1_1_mage.tex new file mode 100644 index 0000000000000000000000000000000000000000..4ab91230ecd90f3ce9dacfe30d63968015844280 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_mage.tex @@ -0,0 +1,348 @@ +\hypertarget{class_model_1_1_mage}{}\section{Model.\+Mage Class Reference} +\label{class_model_1_1_mage}\index{Model.\+Mage@{Model.\+Mage}} + + +The \hyperlink{class_model_1_1_mage}{Mage} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} ~\newline + This \hyperlink{interface_model_1_1_unit}{Unit} has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats + + +Inheritance diagram for Model.\+Mage\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_mage} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_mage_a0b3127050836fcc51e07d18f9e6b9b16}{Mage} (Texture2D sprite\+Image, \hyperlink{class_view_1_1_button}{Button} attack\+Button, \hyperlink{class_view_1_1_button}{Button} move\+Button, \hyperlink{class_view_1_1_button}{Button} item\+Button, \hyperlink{class_view_1_1_button}{Button} wait\+Button, \hyperlink{class_view_1_1_button}{Button} confirm\+Button, Texture2D char\+Info, Texture2D char\+Attack\+Info, Vector2 coordinates, int player) +\item +void \hyperlink{class_model_1_1_mage_ac9fb76a259c754214a3b9cc84c1da58d}{set\+Initial\+Stats} () +\item +int \hyperlink{class_model_1_1_mage_a90c0cbd19877be1cb16be4300e7413b2}{get\+Movability} () +\item +int \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_mage_a226ae9e107258aca2485b887a9f2015f}{get\+Stats} () +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_mage_a5735ecc56cf62b4dccaf218560458bef}{get\+Equipable\+Weapons} () +\item +\hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} \hyperlink{class_model_1_1_mage_aa8290998eb8b6db8fd6544478771b4ab}{get\+Class} () +\item +Texture2D \hyperlink{class_model_1_1_mage_af32359315cd33ca16d78c83d3f898e8f}{get\+Sprite\+Image} () +\item +Texture2D \hyperlink{class_model_1_1_mage_a6c34591377675f0643fa36a2d1cb378d}{get\+Button\+Image} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +bool \hyperlink{class_model_1_1_mage_ad4c42c550ad5993ee7fd773e896fc914}{is\+Button\+Active} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +Texture2D \hyperlink{class_model_1_1_mage_ae6256780be01124c7c9864f4f44b9810}{get\+Char\+Info} () +\item +Texture2D \hyperlink{class_model_1_1_mage_aa7c9dac02c4b3c6cd7c6de256c3b2f92}{get\+Char\+Attack\+Info} () +\item +\hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_mage_a57c850c709b509cf0e23f8ebf24da6f0}{get\+Buttons} () +\item +\hyperlink{class_view_1_1_button}{Button} \hyperlink{class_model_1_1_mage_adeea72218aed1013de839d04e5bde84c}{get\+Button\+Of\+Type} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +void \hyperlink{class_model_1_1_mage_a4bada92e977b0edd41cb054a44f6d2e1}{set\+Button\+Coordinates} (Vector2 pixel\+Coordinates) +\item +Rectangle \hyperlink{class_model_1_1_mage_a1da4d9ee53db7b09e338bdab37a57167}{get\+Current\+Frame} () +\item +void \hyperlink{class_model_1_1_mage_a392e364fdf2970caec5941366cfdc6f9}{animate} (Direction direction) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +bool \hyperlink{class_model_1_1_mage_a50c531809941d6831b578fcbdf5d3679}{Alive}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_mage_abf7607506d325e0c08ba41a7b7d831ce}{Hp}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_mage_a5bd9d7d272350503a3a8c921c9d5bb60}{Speed}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_mage_a84857d68772ac3b466a64123fde94373}{Def}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_mage_ab858284f5c8814471d756f5637de8f27}{Res}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_mage_a2af40b60ebdb327efc277a1e920a82af}{Level}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \hyperlink{class_model_1_1_mage_a127db923ebfd0b232d8aa7cdcf5d8b63}{equipped\+Weapon}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_mage_ad2815a69a4f3b3b192552f6738f2163c}{}\label{class_model_1_1_mage_ad2815a69a4f3b3b192552f6738f2163c} +int {\bfseries Str}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_mage_ad53c88e6f9d1842a8367fc5dd646f03d}{}\label{class_model_1_1_mage_ad53c88e6f9d1842a8367fc5dd646f03d} +int {\bfseries Int}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_mage_a753872f2aaed6e495019540a88178cb8}{}\label{class_model_1_1_mage_a753872f2aaed6e495019540a88178cb8} +int {\bfseries Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Tuple$<$ int, int $>$ \hyperlink{class_model_1_1_mage_a05ff43cdf2f71db0ea0486c49c59c8a8}{Position}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Vector2 \hyperlink{class_model_1_1_mage_a4eccff4c1472a462c35b3d92bce315aa}{Pixel\+Coordinates}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The \hyperlink{class_model_1_1_mage}{Mage} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} ~\newline + This \hyperlink{interface_model_1_1_unit}{Unit} has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_mage_a0b3127050836fcc51e07d18f9e6b9b16}{}\label{class_model_1_1_mage_a0b3127050836fcc51e07d18f9e6b9b16} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Mage@{Mage}} +\index{Mage@{Mage}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Mage()}{Mage()}} +{\footnotesize\ttfamily Model.\+Mage.\+Mage (\begin{DoxyParamCaption}\item[{Texture2D}]{sprite\+Image, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{attack\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{move\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{item\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{wait\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{confirm\+Button, }\item[{Texture2D}]{char\+Info, }\item[{Texture2D}]{char\+Attack\+Info, }\item[{Vector2}]{coordinates, }\item[{int}]{player }\end{DoxyParamCaption})} + +The constructor for \hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_mage}{Mage} +\begin{DoxyParams}{Parameters} +{\em sprite\+Image} & The character sprite \\ +\hline +{\em attack\+Button} & The dropdownmenu attack button texture \\ +\hline +{\em move\+Button} & The dropdownmenu move button texture \\ +\hline +{\em item\+Button} & The dropdownmenu item button texture \\ +\hline +{\em wait\+Button} & The dropdownmenu wait button texture \\ +\hline +{\em confirm\+Button} & The attack confirm button texture \\ +\hline +{\em char\+Info} & The character info popup texture \\ +\hline +{\em char\+Attack\+Info} & The character attack menu popup texture \\ +\hline +{\em coordinates} & The unit\textquotesingle{}s current coordinate on screen \\ +\hline +{\em player} & The player of which the unit belongs to \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_mage_a392e364fdf2970caec5941366cfdc6f9}{}\label{class_model_1_1_mage_a392e364fdf2970caec5941366cfdc6f9} +\index{Model\+::\+Mage@{Model\+::\+Mage}!animate@{animate}} +\index{animate@{animate}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{animate()}{animate()}} +{\footnotesize\ttfamily void Model.\+Mage.\+animate (\begin{DoxyParamCaption}\item[{Direction}]{direction }\end{DoxyParamCaption})} + +animate sprite walking the direction specified +\begin{DoxyParams}{Parameters} +{\em direction} & The direction the unit is moving in \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a6c34591377675f0643fa36a2d1cb378d}{}\label{class_model_1_1_mage_a6c34591377675f0643fa36a2d1cb378d} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Button\+Image@{get\+Button\+Image}} +\index{get\+Button\+Image@{get\+Button\+Image}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Button\+Image()}{getButtonImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Mage.\+get\+Button\+Image (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +returns the button texture at index i + +Implements \hyperlink{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_adeea72218aed1013de839d04e5bde84c}{}\label{class_model_1_1_mage_adeea72218aed1013de839d04e5bde84c} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Button\+Of\+Type@{get\+Button\+Of\+Type}} +\index{get\+Button\+Of\+Type@{get\+Button\+Of\+Type}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Button\+Of\+Type()}{getButtonOfType()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} Model.\+Mage.\+get\+Button\+Of\+Type (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +Returns the button type +\begin{DoxyParams}{Parameters} +{\em button\+Type} & The button to return (Move, Attack, Item, Wait, and attack confirm) \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a57c850c709b509cf0e23f8ebf24da6f0}{}\label{class_model_1_1_mage_a57c850c709b509cf0e23f8ebf24da6f0} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Buttons@{get\+Buttons}} +\index{get\+Buttons@{get\+Buttons}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Buttons()}{getButtons()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} Model.\+Mage.\+get\+Buttons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the dropdown menu buttons of the unit + +Implements \hyperlink{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_aa7c9dac02c4b3c6cd7c6de256c3b2f92}{}\label{class_model_1_1_mage_aa7c9dac02c4b3c6cd7c6de256c3b2f92} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}} +\index{get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Char\+Attack\+Info()}{getCharAttackInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Mage.\+get\+Char\+Attack\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char attack info screen texture + +Implements \hyperlink{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_ae6256780be01124c7c9864f4f44b9810}{}\label{class_model_1_1_mage_ae6256780be01124c7c9864f4f44b9810} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Char\+Info@{get\+Char\+Info}} +\index{get\+Char\+Info@{get\+Char\+Info}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Char\+Info()}{getCharInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Mage.\+get\+Char\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char info screen texture + +Implements \hyperlink{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_aa8290998eb8b6db8fd6544478771b4ab}{}\label{class_model_1_1_mage_aa8290998eb8b6db8fd6544478771b4ab} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Class@{get\+Class}} +\index{get\+Class@{get\+Class}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Class()}{getClass()}} +{\footnotesize\ttfamily \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} Model.\+Mage.\+get\+Class (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns unit\textquotesingle{}s class (warrior, mage, archer) + +Implements \hyperlink{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a1da4d9ee53db7b09e338bdab37a57167}{}\label{class_model_1_1_mage_a1da4d9ee53db7b09e338bdab37a57167} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Current\+Frame@{get\+Current\+Frame}} +\index{get\+Current\+Frame@{get\+Current\+Frame}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Current\+Frame()}{getCurrentFrame()}} +{\footnotesize\ttfamily Rectangle Model.\+Mage.\+get\+Current\+Frame (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the current sprite frame in animation sequence + +Implements \hyperlink{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a5735ecc56cf62b4dccaf218560458bef}{}\label{class_model_1_1_mage_a5735ecc56cf62b4dccaf218560458bef} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Equipable\+Weapons@{get\+Equipable\+Weapons}} +\index{get\+Equipable\+Weapons@{get\+Equipable\+Weapons}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Equipable\+Weapons()}{getEquipableWeapons()}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} Model.\+Mage.\+get\+Equipable\+Weapons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns array of equipable weapons + +Implements \hyperlink{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a90c0cbd19877be1cb16be4300e7413b2}{}\label{class_model_1_1_mage_a90c0cbd19877be1cb16be4300e7413b2} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Movability@{get\+Movability}} +\index{get\+Movability@{get\+Movability}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Movability()}{getMovability()}} +{\footnotesize\ttfamily int Model.\+Mage.\+get\+Movability (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the unit\textquotesingle{}s movability range on grid (number of spaces the unit can move in one turn) + +Implements \hyperlink{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_af32359315cd33ca16d78c83d3f898e8f}{}\label{class_model_1_1_mage_af32359315cd33ca16d78c83d3f898e8f} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Sprite\+Image@{get\+Sprite\+Image}} +\index{get\+Sprite\+Image@{get\+Sprite\+Image}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Sprite\+Image()}{getSpriteImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Mage.\+get\+Sprite\+Image (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the sprite image of the unit + +Implements \hyperlink{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a226ae9e107258aca2485b887a9f2015f}{}\label{class_model_1_1_mage_a226ae9e107258aca2485b887a9f2015f} +\index{Model\+::\+Mage@{Model\+::\+Mage}!get\+Stats@{get\+Stats}} +\index{get\+Stats@{get\+Stats}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{get\+Stats()}{getStats()}} +{\footnotesize\ttfamily int \mbox{[}$\,$\mbox{]} Model.\+Mage.\+get\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns all stats as an array + +Implements \hyperlink{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_ad4c42c550ad5993ee7fd773e896fc914}{}\label{class_model_1_1_mage_ad4c42c550ad5993ee7fd773e896fc914} +\index{Model\+::\+Mage@{Model\+::\+Mage}!is\+Button\+Active@{is\+Button\+Active}} +\index{is\+Button\+Active@{is\+Button\+Active}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{is\+Button\+Active()}{isButtonActive()}} +{\footnotesize\ttfamily bool Model.\+Mage.\+is\+Button\+Active (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +indicates whether a button has already been previously selected or not + +Implements \hyperlink{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_a4bada92e977b0edd41cb054a44f6d2e1}{}\label{class_model_1_1_mage_a4bada92e977b0edd41cb054a44f6d2e1} +\index{Model\+::\+Mage@{Model\+::\+Mage}!set\+Button\+Coordinates@{set\+Button\+Coordinates}} +\index{set\+Button\+Coordinates@{set\+Button\+Coordinates}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{set\+Button\+Coordinates()}{setButtonCoordinates()}} +{\footnotesize\ttfamily void Model.\+Mage.\+set\+Button\+Coordinates (\begin{DoxyParamCaption}\item[{Vector2}]{pixel\+Coordinates }\end{DoxyParamCaption})} + +sets the coordinates of menu buttons +\begin{DoxyParams}{Parameters} +{\em pixel\+Coordinates} & The pixel coordinate of the button \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb}{Model.\+Unit}. + +\hypertarget{class_model_1_1_mage_ac9fb76a259c754214a3b9cc84c1da58d}{}\label{class_model_1_1_mage_ac9fb76a259c754214a3b9cc84c1da58d} +\index{Model\+::\+Mage@{Model\+::\+Mage}!set\+Initial\+Stats@{set\+Initial\+Stats}} +\index{set\+Initial\+Stats@{set\+Initial\+Stats}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{set\+Initial\+Stats()}{setInitialStats()}} +{\footnotesize\ttfamily void Model.\+Mage.\+set\+Initial\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +sets initial unit stats upon creation + +Implements \hyperlink{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5}{Model.\+Unit}. + + + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_mage_a50c531809941d6831b578fcbdf5d3679}{}\label{class_model_1_1_mage_a50c531809941d6831b578fcbdf5d3679} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Alive@{Alive}} +\index{Alive@{Alive}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Alive}{Alive}} +{\footnotesize\ttfamily bool Model.\+Mage.\+Alive\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns whether or not unit is alive \hypertarget{class_model_1_1_mage_a84857d68772ac3b466a64123fde94373}{}\label{class_model_1_1_mage_a84857d68772ac3b466a64123fde94373} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Def@{Def}} +\index{Def@{Def}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Def}{Def}} +{\footnotesize\ttfamily int Model.\+Mage.\+Def\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Defense \hypertarget{class_model_1_1_mage_a127db923ebfd0b232d8aa7cdcf5d8b63}{}\label{class_model_1_1_mage_a127db923ebfd0b232d8aa7cdcf5d8b63} +\index{Model\+::\+Mage@{Model\+::\+Mage}!equipped\+Weapon@{equipped\+Weapon}} +\index{equipped\+Weapon@{equipped\+Weapon}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{equipped\+Weapon}{equippedWeapon}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} Model.\+Mage.\+equipped\+Weapon\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns weapon the unit is currently equipping \hypertarget{class_model_1_1_mage_abf7607506d325e0c08ba41a7b7d831ce}{}\label{class_model_1_1_mage_abf7607506d325e0c08ba41a7b7d831ce} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Hp@{Hp}} +\index{Hp@{Hp}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Hp}{Hp}} +{\footnotesize\ttfamily int Model.\+Mage.\+Hp\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s HP \hypertarget{class_model_1_1_mage_a2af40b60ebdb327efc277a1e920a82af}{}\label{class_model_1_1_mage_a2af40b60ebdb327efc277a1e920a82af} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Level@{Level}} +\index{Level@{Level}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Level}{Level}} +{\footnotesize\ttfamily int Model.\+Mage.\+Level\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Level \hypertarget{class_model_1_1_mage_a4eccff4c1472a462c35b3d92bce315aa}{}\label{class_model_1_1_mage_a4eccff4c1472a462c35b3d92bce315aa} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Pixel\+Coordinates@{Pixel\+Coordinates}} +\index{Pixel\+Coordinates@{Pixel\+Coordinates}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Pixel\+Coordinates}{PixelCoordinates}} +{\footnotesize\ttfamily Vector2 Model.\+Mage.\+Pixel\+Coordinates\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns the pixel coordinate of the unit ~\newline + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) \hypertarget{class_model_1_1_mage_a05ff43cdf2f71db0ea0486c49c59c8a8}{}\label{class_model_1_1_mage_a05ff43cdf2f71db0ea0486c49c59c8a8} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Position@{Position}} +\index{Position@{Position}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Position}{Position}} +{\footnotesize\ttfamily Tuple$<$int, int$>$ Model.\+Mage.\+Position\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +gets and sets unit\textquotesingle{}s position by tile \hypertarget{class_model_1_1_mage_ab858284f5c8814471d756f5637de8f27}{}\label{class_model_1_1_mage_ab858284f5c8814471d756f5637de8f27} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Res@{Res}} +\index{Res@{Res}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Res}{Res}} +{\footnotesize\ttfamily int Model.\+Mage.\+Res\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Resistance \hypertarget{class_model_1_1_mage_a5bd9d7d272350503a3a8c921c9d5bb60}{}\label{class_model_1_1_mage_a5bd9d7d272350503a3a8c921c9d5bb60} +\index{Model\+::\+Mage@{Model\+::\+Mage}!Speed@{Speed}} +\index{Speed@{Speed}!Model\+::\+Mage@{Model\+::\+Mage}} +\subsubsection{\texorpdfstring{Speed}{Speed}} +{\footnotesize\ttfamily int Model.\+Mage.\+Speed\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Speed + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Mage.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_node.tex b/Doc/MIS/latex/class_model_1_1_node.tex new file mode 100644 index 0000000000000000000000000000000000000000..2a1a3a9f1fb69c7d7ef4254dfff0bd6677b0d1a9 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_node.tex @@ -0,0 +1,103 @@ +\hypertarget{class_model_1_1_node}{}\section{Model.\+Node Class Reference} +\label{class_model_1_1_node}\index{Model.\+Node@{Model.\+Node}} + + +Structure that represents a tile on the game map grid. + + +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_node_aa89ec584d03eab67ea243753c15dbbb4}{Node} (int x, int y) +\item +Vector2 \hyperlink{class_model_1_1_node_a83a08bcb71d957094e9bc5661f6f4c35}{get\+Position} () +\item +int \hyperlink{class_model_1_1_node_ab846e889c97ad9a5f7db27142e48f58c}{get\+PositionX} () +\item +int \hyperlink{class_model_1_1_node_a852b1840bbb35cdd5ce1e4eba2e43819}{get\+PositionY} () +\item +bool \hyperlink{class_model_1_1_node_a470e31a9c20caf629e6922eb5c3688e4}{is\+Occupied} () +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +int \hyperlink{class_model_1_1_node_a71c12ee4c3e1d8eecbf757dd4f6d8632}{movability\+Obstruction}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +bool \hyperlink{class_model_1_1_node_a93438af5996ee894fafd4e70b572af34}{is\+Obstacle}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_node_a82ca414242eee3d8542a935149049427}{unit\+On\+Node}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Structure that represents a tile on the game map grid. + +Programmatical representation of a tile on the map grid. Holds information pertaining to the tile. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_node_aa89ec584d03eab67ea243753c15dbbb4}{}\label{class_model_1_1_node_aa89ec584d03eab67ea243753c15dbbb4} +\index{Model\+::\+Node@{Model\+::\+Node}!Node@{Node}} +\index{Node@{Node}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{Node()}{Node()}} +{\footnotesize\ttfamily Model.\+Node.\+Node (\begin{DoxyParamCaption}\item[{int}]{x, }\item[{int}]{y }\end{DoxyParamCaption})} + +Creates a node. +\begin{DoxyParams}{Parameters} +{\em x} & X position of the node on the graph (by node). \\ +\hline +{\em y} & Y position of the node on the graph (by node). \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_node_a83a08bcb71d957094e9bc5661f6f4c35}{}\label{class_model_1_1_node_a83a08bcb71d957094e9bc5661f6f4c35} +\index{Model\+::\+Node@{Model\+::\+Node}!get\+Position@{get\+Position}} +\index{get\+Position@{get\+Position}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{get\+Position()}{getPosition()}} +{\footnotesize\ttfamily Vector2 Model.\+Node.\+get\+Position (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the position of the node on the graph. \hypertarget{class_model_1_1_node_ab846e889c97ad9a5f7db27142e48f58c}{}\label{class_model_1_1_node_ab846e889c97ad9a5f7db27142e48f58c} +\index{Model\+::\+Node@{Model\+::\+Node}!get\+PositionX@{get\+PositionX}} +\index{get\+PositionX@{get\+PositionX}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{get\+Position\+X()}{getPositionX()}} +{\footnotesize\ttfamily int Model.\+Node.\+get\+PositionX (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the X position of the node on the graph. \hypertarget{class_model_1_1_node_a852b1840bbb35cdd5ce1e4eba2e43819}{}\label{class_model_1_1_node_a852b1840bbb35cdd5ce1e4eba2e43819} +\index{Model\+::\+Node@{Model\+::\+Node}!get\+PositionY@{get\+PositionY}} +\index{get\+PositionY@{get\+PositionY}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{get\+Position\+Y()}{getPositionY()}} +{\footnotesize\ttfamily int Model.\+Node.\+get\+PositionY (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the Y position of the node on the graph. \hypertarget{class_model_1_1_node_a470e31a9c20caf629e6922eb5c3688e4}{}\label{class_model_1_1_node_a470e31a9c20caf629e6922eb5c3688e4} +\index{Model\+::\+Node@{Model\+::\+Node}!is\+Occupied@{is\+Occupied}} +\index{is\+Occupied@{is\+Occupied}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{is\+Occupied()}{isOccupied()}} +{\footnotesize\ttfamily bool Model.\+Node.\+is\+Occupied (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Indicates whether the node is occupied by a unit. + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_node_a93438af5996ee894fafd4e70b572af34}{}\label{class_model_1_1_node_a93438af5996ee894fafd4e70b572af34} +\index{Model\+::\+Node@{Model\+::\+Node}!is\+Obstacle@{is\+Obstacle}} +\index{is\+Obstacle@{is\+Obstacle}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{is\+Obstacle}{isObstacle}} +{\footnotesize\ttfamily bool Model.\+Node.\+is\+Obstacle\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Indicates whether a unit can stand inside the tile. \hypertarget{class_model_1_1_node_a71c12ee4c3e1d8eecbf757dd4f6d8632}{}\label{class_model_1_1_node_a71c12ee4c3e1d8eecbf757dd4f6d8632} +\index{Model\+::\+Node@{Model\+::\+Node}!movability\+Obstruction@{movability\+Obstruction}} +\index{movability\+Obstruction@{movability\+Obstruction}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{movability\+Obstruction}{movabilityObstruction}} +{\footnotesize\ttfamily int Model.\+Node.\+movability\+Obstruction\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Index for hindrance of the movability of a unit. The higher the index, the less a unit can move through the tile. Set to 0 by default (no hindrance). \hypertarget{class_model_1_1_node_a82ca414242eee3d8542a935149049427}{}\label{class_model_1_1_node_a82ca414242eee3d8542a935149049427} +\index{Model\+::\+Node@{Model\+::\+Node}!unit\+On\+Node@{unit\+On\+Node}} +\index{unit\+On\+Node@{unit\+On\+Node}!Model\+::\+Node@{Model\+::\+Node}} +\subsubsection{\texorpdfstring{unit\+On\+Node}{unitOnNode}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_unit}{Unit} Model.\+Node.\+unit\+On\+Node\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Gets and sets the unit that is on the node. + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Node.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_player.tex b/Doc/MIS/latex/class_model_1_1_player.tex new file mode 100644 index 0000000000000000000000000000000000000000..b97b33d0a570dcbdfb9f786ac8eae74d6f0cf9c6 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_player.tex @@ -0,0 +1,76 @@ +\hypertarget{class_model_1_1_player}{}\section{Model.\+Player Class Reference} +\label{class_model_1_1_player}\index{Model.\+Player@{Model.\+Player}} + + +Represents a \hyperlink{class_model_1_1_player}{Player} in the game. + + +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_player_a7d58b47184f288c3e9edffbbe1580170}{Player} () +\item +Linked\+List$<$ \hyperlink{interface_model_1_1_unit}{Unit} $>$ \hyperlink{class_model_1_1_player_a3c61df9a7f3755ed7355e4a3cd4e685a}{get\+Units} () +\item +int \hyperlink{class_model_1_1_player_ad128636680b101f6c4462d6630368a56}{get\+Num\+Of\+Units} () +\item +bool \hyperlink{class_model_1_1_player_a13d973c52472d7f54e4a3451ae16236e}{owns\+Unit} (\hyperlink{interface_model_1_1_unit}{Unit} unit) +\item +void \hyperlink{class_model_1_1_player_a6eb0891c6c56bc41c87b3ebd4bbe3cb0}{add\+Unit} (\hyperlink{interface_model_1_1_unit}{Unit} unit) +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Represents a \hyperlink{class_model_1_1_player}{Player} in the game. + +Holds information pertaining to a \hyperlink{class_model_1_1_player}{Player} in the game. + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_player_a7d58b47184f288c3e9edffbbe1580170}{}\label{class_model_1_1_player_a7d58b47184f288c3e9edffbbe1580170} +\index{Model\+::\+Player@{Model\+::\+Player}!Player@{Player}} +\index{Player@{Player}!Model\+::\+Player@{Model\+::\+Player}} +\subsubsection{\texorpdfstring{Player()}{Player()}} +{\footnotesize\ttfamily Model.\+Player.\+Player (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Creates a player. Initializes a list of player owned units. + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_player_a6eb0891c6c56bc41c87b3ebd4bbe3cb0}{}\label{class_model_1_1_player_a6eb0891c6c56bc41c87b3ebd4bbe3cb0} +\index{Model\+::\+Player@{Model\+::\+Player}!add\+Unit@{add\+Unit}} +\index{add\+Unit@{add\+Unit}!Model\+::\+Player@{Model\+::\+Player}} +\subsubsection{\texorpdfstring{add\+Unit()}{addUnit()}} +{\footnotesize\ttfamily void Model.\+Player.\+add\+Unit (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})} + +Adds the specified unit to the player\textquotesingle{}s units. +\begin{DoxyParams}{Parameters} +{\em unit} & \hyperlink{interface_model_1_1_unit}{Unit} to be added. \\ +\hline +\end{DoxyParams} +\hypertarget{class_model_1_1_player_ad128636680b101f6c4462d6630368a56}{}\label{class_model_1_1_player_ad128636680b101f6c4462d6630368a56} +\index{Model\+::\+Player@{Model\+::\+Player}!get\+Num\+Of\+Units@{get\+Num\+Of\+Units}} +\index{get\+Num\+Of\+Units@{get\+Num\+Of\+Units}!Model\+::\+Player@{Model\+::\+Player}} +\subsubsection{\texorpdfstring{get\+Num\+Of\+Units()}{getNumOfUnits()}} +{\footnotesize\ttfamily int Model.\+Player.\+get\+Num\+Of\+Units (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the total number of player owned units. \hypertarget{class_model_1_1_player_a3c61df9a7f3755ed7355e4a3cd4e685a}{}\label{class_model_1_1_player_a3c61df9a7f3755ed7355e4a3cd4e685a} +\index{Model\+::\+Player@{Model\+::\+Player}!get\+Units@{get\+Units}} +\index{get\+Units@{get\+Units}!Model\+::\+Player@{Model\+::\+Player}} +\subsubsection{\texorpdfstring{get\+Units()}{getUnits()}} +{\footnotesize\ttfamily Linked\+List$<$\hyperlink{interface_model_1_1_unit}{Unit}$>$ Model.\+Player.\+get\+Units (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns all player owned units. \hypertarget{class_model_1_1_player_a13d973c52472d7f54e4a3451ae16236e}{}\label{class_model_1_1_player_a13d973c52472d7f54e4a3451ae16236e} +\index{Model\+::\+Player@{Model\+::\+Player}!owns\+Unit@{owns\+Unit}} +\index{owns\+Unit@{owns\+Unit}!Model\+::\+Player@{Model\+::\+Player}} +\subsubsection{\texorpdfstring{owns\+Unit()}{ownsUnit()}} +{\footnotesize\ttfamily bool Model.\+Player.\+owns\+Unit (\begin{DoxyParamCaption}\item[{\hyperlink{interface_model_1_1_unit}{Unit}}]{unit }\end{DoxyParamCaption})} + +Indicates whether the player owns the specified unit. +\begin{DoxyParams}{Parameters} +{\em unit} & Specified unit. \\ +\hline +\end{DoxyParams} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Player.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_model_1_1_warrior.eps b/Doc/MIS/latex/class_model_1_1_warrior.eps new file mode 100644 index 0000000000000000000000000000000000000000..cbd33e556ed91c16cf7193ac62b86022521706d4 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_warrior.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 392.156863 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.275000 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Warrior) cw +(Model.Unit) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Warrior) 0.000000 0.000000 box + (Model.Unit) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_model_1_1_warrior.pdf b/Doc/MIS/latex/class_model_1_1_warrior.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18028147d3ced32b2c008af33910c6744e1ff722 --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_warrior.pdf @@ -0,0 +1,94 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•NÁNBA¼÷+zTµ·Ëv¯&Æ“pgƒ@ < O~Ÿ}¸Aˆ'ÓCÓ™éÌìYÅXÇi{ÞÓý,ñê‹”W´';‘ÜÖ¼ç‡RÎ â9pYÒÏŸq§Ò%3‹\zºyÞ},¶òö>ëÝp[6ôXhJ•"jÄÏQµ:À‚dôò¯\WÉ@bx”¨¸È}ý\ŸC•Åÿ†ŠcìƒøKõír@ºÈÛ*¼ßLÏt»G6›æqT‚º¸_"WË»Zóƒ¡Sendstream +endobj +6 0 obj +206 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 393] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-c6b4f6bb745d' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-c6b4f6bb745d' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:13-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:13-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-c6b4f6bb745d' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:59ea9b4c-a79d-11e6-0000-c6b4f6bb745d'/> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-c6b4f6bb745d' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182813-05'00') +/ModDate(D:20161107182813-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000519 00000 n +0000002229 00000 n +0000000460 00000 n +0000000310 00000 n +0000000015 00000 n +0000000291 00000 n +0000000584 00000 n +0000000684 00000 n +0000000625 00000 n +0000000654 00000 n +0000000750 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<6730690864B4E4612A546514EF79A0F8><6730690864B4E4612A546514EF79A0F8>] +>> +startxref +2405 +%%EOF diff --git a/Doc/MIS/latex/class_model_1_1_warrior.tex b/Doc/MIS/latex/class_model_1_1_warrior.tex new file mode 100644 index 0000000000000000000000000000000000000000..7f35adb2afb51bffbfed0520800950efbdec9b6d --- /dev/null +++ b/Doc/MIS/latex/class_model_1_1_warrior.tex @@ -0,0 +1,346 @@ +\hypertarget{class_model_1_1_warrior}{}\section{Model.\+Warrior Class Reference} +\label{class_model_1_1_warrior}\index{Model.\+Warrior@{Model.\+Warrior}} + + +The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance + + +Inheritance diagram for Model.\+Warrior\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_model_1_1_warrior} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_model_1_1_warrior_ab78e2fbb3c55ddcf59c81457c1aa97f7}{Warrior} (Texture2D sprite\+Image, \hyperlink{class_view_1_1_button}{Button} attack\+Button, \hyperlink{class_view_1_1_button}{Button} move\+Button, \hyperlink{class_view_1_1_button}{Button} item\+Button, \hyperlink{class_view_1_1_button}{Button} wait\+Button, \hyperlink{class_view_1_1_button}{Button} confirm\+Button, Texture2D char\+Info, Texture2D char\+Attack\+Info, Vector2 coordinates, int player) +\item +void \hyperlink{class_model_1_1_warrior_a8b774a43312fc8594725578630b27dfd}{set\+Initial\+Stats} () +\item +int \hyperlink{class_model_1_1_warrior_a0810e8a8317bf596b2368100fcc6ca75}{get\+Movability} () +\item +int \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_warrior_a6361e8105573a09d8f29935b41d2a59a}{get\+Stats} () +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_warrior_a8f611698ecb5f6b287fd68863462a344}{get\+Equipable\+Weapons} () +\item +\hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} \hyperlink{class_model_1_1_warrior_a0b8ae1e95b8b00d7da976330db80b968}{get\+Class} () +\item +Texture2D \hyperlink{class_model_1_1_warrior_abcbb2031c3f28d0a4c3509aa30b6308a}{get\+Sprite\+Image} () +\item +Texture2D \hyperlink{class_model_1_1_warrior_a113fc7c767ebae89aa0968f2b467a007}{get\+Button\+Image} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +bool \hyperlink{class_model_1_1_warrior_a10925eec2f2749a02bcee78c273646f2}{is\+Button\+Active} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +Texture2D \hyperlink{class_model_1_1_warrior_a243b4ba6d7657e5275c0d74c1e9800e5}{get\+Char\+Info} () +\item +Texture2D \hyperlink{class_model_1_1_warrior_a40dcd822abdd36758035af6c6d08c0b9}{get\+Char\+Attack\+Info} () +\item +\hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} \hyperlink{class_model_1_1_warrior_acfd43847689bf1dc0d58429688c33b24}{get\+Buttons} () +\item +\hyperlink{class_view_1_1_button}{Button} \hyperlink{class_model_1_1_warrior_a0f5a9c6f5e550f44c84ca64ce022e9a6}{get\+Button\+Of\+Type} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +void \hyperlink{class_model_1_1_warrior_acdc442170e6d92c84dadcd7e49b90a7a}{set\+Button\+Coordinates} (Vector2 pixel\+Coordinates) +\item +Rectangle \hyperlink{class_model_1_1_warrior_a8e10a65906547abdc55aabb7852eb34a}{get\+Current\+Frame} () +\item +void \hyperlink{class_model_1_1_warrior_a0e4d364c551d62c4c9b8993f299e5688}{animate} (Direction direction) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +bool \hyperlink{class_model_1_1_warrior_a064845f1f36d363cb12089743eb277d0}{Alive}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_warrior_a0d8ed534eedb08e75884fedb14277735}{Hp}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_warrior_a39a53eedbc5f1580b18ac206626e76e4}{Speed}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_warrior_aadd627830a738fc79a32da54a1349d4d}{Def}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_warrior_a6fb225addb43acf799fefb5177b690f6}{Res}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{class_model_1_1_warrior_a40ebb67fd534b727ceb63cfdbe5e1af6}{Level}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \hyperlink{class_model_1_1_warrior_a78b6ebe81e84bf816401c766fc5366ea}{equipped\+Weapon}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_warrior_aa2f0b023e247a47fc5e270c279467108}{}\label{class_model_1_1_warrior_aa2f0b023e247a47fc5e270c279467108} +int {\bfseries Str}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_warrior_a05f268c3fbd9ae3152fd31d4549926a3}{}\label{class_model_1_1_warrior_a05f268c3fbd9ae3152fd31d4549926a3} +int {\bfseries Int}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hypertarget{class_model_1_1_warrior_aa6346f9549e6512ddf8491250acf54d9}{}\label{class_model_1_1_warrior_aa6346f9549e6512ddf8491250acf54d9} +int {\bfseries Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Tuple$<$ int, int $>$ \hyperlink{class_model_1_1_warrior_a8d72341804e201466fede9543cf6b9a5}{Position}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Vector2 \hyperlink{class_model_1_1_warrior_a0cf0d3bc4998616c193a836237bd56aa}{Pixel\+Coordinates}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_model_1_1_warrior_ab78e2fbb3c55ddcf59c81457c1aa97f7}{}\label{class_model_1_1_warrior_ab78e2fbb3c55ddcf59c81457c1aa97f7} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Warrior@{Warrior}} +\index{Warrior@{Warrior}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Warrior()}{Warrior()}} +{\footnotesize\ttfamily Model.\+Warrior.\+Warrior (\begin{DoxyParamCaption}\item[{Texture2D}]{sprite\+Image, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{attack\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{move\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{item\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{wait\+Button, }\item[{\hyperlink{class_view_1_1_button}{Button}}]{confirm\+Button, }\item[{Texture2D}]{char\+Info, }\item[{Texture2D}]{char\+Attack\+Info, }\item[{Vector2}]{coordinates, }\item[{int}]{player }\end{DoxyParamCaption})} + +The constructor for \hyperlink{interface_model_1_1_unit}{Unit} \hyperlink{class_model_1_1_warrior}{Warrior} +\begin{DoxyParams}{Parameters} +{\em sprite\+Image} & The character sprite \\ +\hline +{\em attack\+Button} & The dropdownmenu attack button texture \\ +\hline +{\em move\+Button} & The dropdownmenu move button texture \\ +\hline +{\em item\+Button} & The dropdownmenu item button texture \\ +\hline +{\em wait\+Button} & The dropdownmenu wait button texture \\ +\hline +{\em confirm\+Button} & The attack confirm button texture \\ +\hline +{\em char\+Info} & The character info popup texture \\ +\hline +{\em char\+Attack\+Info} & The character attack menu popup texture \\ +\hline +{\em coordinates} & The unit\textquotesingle{}s current coordinate on screen \\ +\hline +{\em player} & The player of which the unit belongs to \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_model_1_1_warrior_a0e4d364c551d62c4c9b8993f299e5688}{}\label{class_model_1_1_warrior_a0e4d364c551d62c4c9b8993f299e5688} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!animate@{animate}} +\index{animate@{animate}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{animate()}{animate()}} +{\footnotesize\ttfamily void Model.\+Warrior.\+animate (\begin{DoxyParamCaption}\item[{Direction}]{direction }\end{DoxyParamCaption})} + +animate sprite walking the direction specified +\begin{DoxyParams}{Parameters} +{\em direction} & The direction the unit is moving in \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a113fc7c767ebae89aa0968f2b467a007}{}\label{class_model_1_1_warrior_a113fc7c767ebae89aa0968f2b467a007} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Button\+Image@{get\+Button\+Image}} +\index{get\+Button\+Image@{get\+Button\+Image}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Button\+Image()}{getButtonImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Warrior.\+get\+Button\+Image (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +returns the button texture at index i + +Implements \hyperlink{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a0f5a9c6f5e550f44c84ca64ce022e9a6}{}\label{class_model_1_1_warrior_a0f5a9c6f5e550f44c84ca64ce022e9a6} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Button\+Of\+Type@{get\+Button\+Of\+Type}} +\index{get\+Button\+Of\+Type@{get\+Button\+Of\+Type}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Button\+Of\+Type()}{getButtonOfType()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} Model.\+Warrior.\+get\+Button\+Of\+Type (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +Returns the button type +\begin{DoxyParams}{Parameters} +{\em button\+Type} & The button to return (Move, Attack, Item, Wait, and attack confirm) \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_acfd43847689bf1dc0d58429688c33b24}{}\label{class_model_1_1_warrior_acfd43847689bf1dc0d58429688c33b24} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Buttons@{get\+Buttons}} +\index{get\+Buttons@{get\+Buttons}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Buttons()}{getButtons()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} Model.\+Warrior.\+get\+Buttons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the dropdown menu buttons of the unit + +Implements \hyperlink{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a40dcd822abdd36758035af6c6d08c0b9}{}\label{class_model_1_1_warrior_a40dcd822abdd36758035af6c6d08c0b9} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}} +\index{get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Char\+Attack\+Info()}{getCharAttackInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Warrior.\+get\+Char\+Attack\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char attack info screen texture + +Implements \hyperlink{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a243b4ba6d7657e5275c0d74c1e9800e5}{}\label{class_model_1_1_warrior_a243b4ba6d7657e5275c0d74c1e9800e5} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Char\+Info@{get\+Char\+Info}} +\index{get\+Char\+Info@{get\+Char\+Info}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Char\+Info()}{getCharInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Warrior.\+get\+Char\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char info screen texture + +Implements \hyperlink{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a0b8ae1e95b8b00d7da976330db80b968}{}\label{class_model_1_1_warrior_a0b8ae1e95b8b00d7da976330db80b968} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Class@{get\+Class}} +\index{get\+Class@{get\+Class}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Class()}{getClass()}} +{\footnotesize\ttfamily \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} Model.\+Warrior.\+get\+Class (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns unit\textquotesingle{}s class (warrior, mage, archer) + +Implements \hyperlink{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a8e10a65906547abdc55aabb7852eb34a}{}\label{class_model_1_1_warrior_a8e10a65906547abdc55aabb7852eb34a} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Current\+Frame@{get\+Current\+Frame}} +\index{get\+Current\+Frame@{get\+Current\+Frame}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Current\+Frame()}{getCurrentFrame()}} +{\footnotesize\ttfamily Rectangle Model.\+Warrior.\+get\+Current\+Frame (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the current sprite frame in animation sequence + +Implements \hyperlink{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a8f611698ecb5f6b287fd68863462a344}{}\label{class_model_1_1_warrior_a8f611698ecb5f6b287fd68863462a344} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Equipable\+Weapons@{get\+Equipable\+Weapons}} +\index{get\+Equipable\+Weapons@{get\+Equipable\+Weapons}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Equipable\+Weapons()}{getEquipableWeapons()}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} Model.\+Warrior.\+get\+Equipable\+Weapons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns array of equipable weapons + +Implements \hyperlink{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a0810e8a8317bf596b2368100fcc6ca75}{}\label{class_model_1_1_warrior_a0810e8a8317bf596b2368100fcc6ca75} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Movability@{get\+Movability}} +\index{get\+Movability@{get\+Movability}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Movability()}{getMovability()}} +{\footnotesize\ttfamily int Model.\+Warrior.\+get\+Movability (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the unit\textquotesingle{}s movability range on grid (number of spaces the unit can move in one turn) + +Implements \hyperlink{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_abcbb2031c3f28d0a4c3509aa30b6308a}{}\label{class_model_1_1_warrior_abcbb2031c3f28d0a4c3509aa30b6308a} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Sprite\+Image@{get\+Sprite\+Image}} +\index{get\+Sprite\+Image@{get\+Sprite\+Image}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Sprite\+Image()}{getSpriteImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Warrior.\+get\+Sprite\+Image (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the sprite image of the unit + +Implements \hyperlink{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a6361e8105573a09d8f29935b41d2a59a}{}\label{class_model_1_1_warrior_a6361e8105573a09d8f29935b41d2a59a} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!get\+Stats@{get\+Stats}} +\index{get\+Stats@{get\+Stats}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{get\+Stats()}{getStats()}} +{\footnotesize\ttfamily int \mbox{[}$\,$\mbox{]} Model.\+Warrior.\+get\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns all stats as an array + +Implements \hyperlink{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a10925eec2f2749a02bcee78c273646f2}{}\label{class_model_1_1_warrior_a10925eec2f2749a02bcee78c273646f2} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!is\+Button\+Active@{is\+Button\+Active}} +\index{is\+Button\+Active@{is\+Button\+Active}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{is\+Button\+Active()}{isButtonActive()}} +{\footnotesize\ttfamily bool Model.\+Warrior.\+is\+Button\+Active (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +indicates whether a button has already been previously selected or not + +Implements \hyperlink{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_acdc442170e6d92c84dadcd7e49b90a7a}{}\label{class_model_1_1_warrior_acdc442170e6d92c84dadcd7e49b90a7a} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!set\+Button\+Coordinates@{set\+Button\+Coordinates}} +\index{set\+Button\+Coordinates@{set\+Button\+Coordinates}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{set\+Button\+Coordinates()}{setButtonCoordinates()}} +{\footnotesize\ttfamily void Model.\+Warrior.\+set\+Button\+Coordinates (\begin{DoxyParamCaption}\item[{Vector2}]{pixel\+Coordinates }\end{DoxyParamCaption})} + +sets the coordinates of menu buttons +\begin{DoxyParams}{Parameters} +{\em pixel\+Coordinates} & The pixel coordinate of the button \\ +\hline +\end{DoxyParams} + + +Implements \hyperlink{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb}{Model.\+Unit}. + +\hypertarget{class_model_1_1_warrior_a8b774a43312fc8594725578630b27dfd}{}\label{class_model_1_1_warrior_a8b774a43312fc8594725578630b27dfd} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!set\+Initial\+Stats@{set\+Initial\+Stats}} +\index{set\+Initial\+Stats@{set\+Initial\+Stats}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{set\+Initial\+Stats()}{setInitialStats()}} +{\footnotesize\ttfamily void Model.\+Warrior.\+set\+Initial\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +sets initial unit stats upon creation + +Implements \hyperlink{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5}{Model.\+Unit}. + + + +\subsection{Property Documentation} +\hypertarget{class_model_1_1_warrior_a064845f1f36d363cb12089743eb277d0}{}\label{class_model_1_1_warrior_a064845f1f36d363cb12089743eb277d0} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Alive@{Alive}} +\index{Alive@{Alive}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Alive}{Alive}} +{\footnotesize\ttfamily bool Model.\+Warrior.\+Alive\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns whether or not unit is alive \hypertarget{class_model_1_1_warrior_aadd627830a738fc79a32da54a1349d4d}{}\label{class_model_1_1_warrior_aadd627830a738fc79a32da54a1349d4d} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Def@{Def}} +\index{Def@{Def}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Def}{Def}} +{\footnotesize\ttfamily int Model.\+Warrior.\+Def\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Defense \hypertarget{class_model_1_1_warrior_a78b6ebe81e84bf816401c766fc5366ea}{}\label{class_model_1_1_warrior_a78b6ebe81e84bf816401c766fc5366ea} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!equipped\+Weapon@{equipped\+Weapon}} +\index{equipped\+Weapon@{equipped\+Weapon}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{equipped\+Weapon}{equippedWeapon}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} Model.\+Warrior.\+equipped\+Weapon\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns weapon the unit is currently equipping \hypertarget{class_model_1_1_warrior_a0d8ed534eedb08e75884fedb14277735}{}\label{class_model_1_1_warrior_a0d8ed534eedb08e75884fedb14277735} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Hp@{Hp}} +\index{Hp@{Hp}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Hp}{Hp}} +{\footnotesize\ttfamily int Model.\+Warrior.\+Hp\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s HP \hypertarget{class_model_1_1_warrior_a40ebb67fd534b727ceb63cfdbe5e1af6}{}\label{class_model_1_1_warrior_a40ebb67fd534b727ceb63cfdbe5e1af6} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Level@{Level}} +\index{Level@{Level}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Level}{Level}} +{\footnotesize\ttfamily int Model.\+Warrior.\+Level\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Level \hypertarget{class_model_1_1_warrior_a0cf0d3bc4998616c193a836237bd56aa}{}\label{class_model_1_1_warrior_a0cf0d3bc4998616c193a836237bd56aa} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Pixel\+Coordinates@{Pixel\+Coordinates}} +\index{Pixel\+Coordinates@{Pixel\+Coordinates}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Pixel\+Coordinates}{PixelCoordinates}} +{\footnotesize\ttfamily Vector2 Model.\+Warrior.\+Pixel\+Coordinates\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns the pixel coordinate of the unit ~\newline + sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) \hypertarget{class_model_1_1_warrior_a8d72341804e201466fede9543cf6b9a5}{}\label{class_model_1_1_warrior_a8d72341804e201466fede9543cf6b9a5} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Position@{Position}} +\index{Position@{Position}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Position}{Position}} +{\footnotesize\ttfamily Tuple$<$int, int$>$ Model.\+Warrior.\+Position\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +gets and sets unit\textquotesingle{}s position by tile \hypertarget{class_model_1_1_warrior_a6fb225addb43acf799fefb5177b690f6}{}\label{class_model_1_1_warrior_a6fb225addb43acf799fefb5177b690f6} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Res@{Res}} +\index{Res@{Res}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Res}{Res}} +{\footnotesize\ttfamily int Model.\+Warrior.\+Res\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Resistance \hypertarget{class_model_1_1_warrior_a39a53eedbc5f1580b18ac206626e76e4}{}\label{class_model_1_1_warrior_a39a53eedbc5f1580b18ac206626e76e4} +\index{Model\+::\+Warrior@{Model\+::\+Warrior}!Speed@{Speed}} +\index{Speed@{Speed}!Model\+::\+Warrior@{Model\+::\+Warrior}} +\subsubsection{\texorpdfstring{Speed}{Speed}} +{\footnotesize\ttfamily int Model.\+Warrior.\+Speed\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Speed + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Warrior.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_view_1_1_button.tex b/Doc/MIS/latex/class_view_1_1_button.tex new file mode 100644 index 0000000000000000000000000000000000000000..305a35ad01a1f928219addbf3e9ab6a305374d82 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_button.tex @@ -0,0 +1,88 @@ +\hypertarget{class_view_1_1_button}{}\section{View.\+Button Class Reference} +\label{class_view_1_1_button}\index{View.\+Button@{View.\+Button}} + + +Buttons for the drop down menu buttons when selecting units + + +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_view_1_1_button_af1811d9154063453744af47950aeefc0}{Button} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} type, Vector2 coordinates, Texture2D image) +\item +Vector2 \hyperlink{class_view_1_1_button_ab5af522cf14ccd4b5cb98db22b3d2148}{get\+Pixel\+Coordinates} () +\item +\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} \hyperlink{class_view_1_1_button_ad4e4d38e1b9292cfca0640d28b40e755}{get\+Button\+Type} () +\item +Texture2D \hyperlink{class_view_1_1_button_a78a9a7b0a48dddfe30553e964a39e576}{get\+Image} () +\item +void \hyperlink{class_view_1_1_button_a74efddb86bfe8f4a765bd124c0fa492d}{set\+Pixel\+Coordinates} (int x, int y) +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_view_1_1_button_a86f649f99a4418c2cdc544690f74ad1d}{}\label{class_view_1_1_button_a86f649f99a4418c2cdc544690f74ad1d} +bool {\bfseries Active}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +Buttons for the drop down menu buttons when selecting units + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_view_1_1_button_af1811d9154063453744af47950aeefc0}{}\label{class_view_1_1_button_af1811d9154063453744af47950aeefc0} +\index{View\+::\+Button@{View\+::\+Button}!Button@{Button}} +\index{Button@{Button}!View\+::\+Button@{View\+::\+Button}} +\subsubsection{\texorpdfstring{Button()}{Button()}} +{\footnotesize\ttfamily View.\+Button.\+Button (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{type, }\item[{Vector2}]{coordinates, }\item[{Texture2D}]{image }\end{DoxyParamCaption})} + +Constructor for button +\begin{DoxyParams}{Parameters} +{\em type} & Which button type \\ +\hline +{\em coordinates} & The pixel coordinate of the button \\ +\hline +{\em image} & The texture for the button \\ +\hline +\end{DoxyParams} + + +\subsection{Member Function Documentation} +\hypertarget{class_view_1_1_button_ad4e4d38e1b9292cfca0640d28b40e755}{}\label{class_view_1_1_button_ad4e4d38e1b9292cfca0640d28b40e755} +\index{View\+::\+Button@{View\+::\+Button}!get\+Button\+Type@{get\+Button\+Type}} +\index{get\+Button\+Type@{get\+Button\+Type}!View\+::\+Button@{View\+::\+Button}} +\subsubsection{\texorpdfstring{get\+Button\+Type()}{getButtonType()}} +{\footnotesize\ttfamily \hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} View.\+Button.\+get\+Button\+Type (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the button type \hypertarget{class_view_1_1_button_a78a9a7b0a48dddfe30553e964a39e576}{}\label{class_view_1_1_button_a78a9a7b0a48dddfe30553e964a39e576} +\index{View\+::\+Button@{View\+::\+Button}!get\+Image@{get\+Image}} +\index{get\+Image@{get\+Image}!View\+::\+Button@{View\+::\+Button}} +\subsubsection{\texorpdfstring{get\+Image()}{getImage()}} +{\footnotesize\ttfamily Texture2D View.\+Button.\+get\+Image (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the button image \hypertarget{class_view_1_1_button_ab5af522cf14ccd4b5cb98db22b3d2148}{}\label{class_view_1_1_button_ab5af522cf14ccd4b5cb98db22b3d2148} +\index{View\+::\+Button@{View\+::\+Button}!get\+Pixel\+Coordinates@{get\+Pixel\+Coordinates}} +\index{get\+Pixel\+Coordinates@{get\+Pixel\+Coordinates}!View\+::\+Button@{View\+::\+Button}} +\subsubsection{\texorpdfstring{get\+Pixel\+Coordinates()}{getPixelCoordinates()}} +{\footnotesize\ttfamily Vector2 View.\+Button.\+get\+Pixel\+Coordinates (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the pixel coordinate of the button \hypertarget{class_view_1_1_button_a74efddb86bfe8f4a765bd124c0fa492d}{}\label{class_view_1_1_button_a74efddb86bfe8f4a765bd124c0fa492d} +\index{View\+::\+Button@{View\+::\+Button}!set\+Pixel\+Coordinates@{set\+Pixel\+Coordinates}} +\index{set\+Pixel\+Coordinates@{set\+Pixel\+Coordinates}!View\+::\+Button@{View\+::\+Button}} +\subsubsection{\texorpdfstring{set\+Pixel\+Coordinates()}{setPixelCoordinates()}} +{\footnotesize\ttfamily void View.\+Button.\+set\+Pixel\+Coordinates (\begin{DoxyParamCaption}\item[{int}]{x, }\item[{int}]{y }\end{DoxyParamCaption})} + +Sets the pixel\+Coordinate +\begin{DoxyParams}{Parameters} +{\em x} & The x coordinate of the button \\ +\hline +{\em y} & the y coordinate of the button \\ +\hline +\end{DoxyParams} + + +The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Button.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play.eps b/Doc/MIS/latex/class_view_1_1_how_to_play.eps new file mode 100644 index 0000000000000000000000000000000000000000..a6be244de5d0006f7bef506feb5769f7e4e4c1f1 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 344.827586 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.450000 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(View.HowToPlay) cw +(Form) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (View.HowToPlay) 0.000000 0.000000 box + (Form) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play.pdf b/Doc/MIS/latex/class_view_1_1_how_to_play.pdf new file mode 100644 index 0000000000000000000000000000000000000000..46c01f264b43b4e6caf3c9575a2c6decd876ea1a --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play.pdf @@ -0,0 +1,95 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•1o1…wÿ +-ƒk'ç8¬Hmi±#Dt‚§þ{|׃R©K•Á²ß³¿—2 rÿƺ®ðôn¸ûÆœ@Dz®8+nȘ„rj°lá{O0(™iƒ1gS,–ûMGó¶+íâ¸úz,x.ð*¤#vy…~]™{HbÃó>þ…–hj¡ YôK{®7 càHâ !w2ôN«c«M¢„ÇÁøÓêõêM¾zÝŒü’UiÜâé9ènòûÆvâQ/4ÉR5endstream +endobj +6 0 obj +211 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 345] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-13a8e2c3d8cf' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-13a8e2c3d8cf' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:14-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:14-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-13a8e2c3d8cf' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:5a8331cc-a79d-11e6-0000-13a8e2c3d8cf'/> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-13a8e2c3d8cf' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182814-05'00') +/ModDate(D:20161107182814-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000524 00000 n +0000002234 00000 n +0000000465 00000 n +0000000315 00000 n +0000000015 00000 n +0000000296 00000 n +0000000589 00000 n +0000000689 00000 n +0000000630 00000 n +0000000659 00000 n +0000000755 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<AE1ADA3BE3CB332CD0853C72D14391DE><AE1ADA3BE3CB332CD0853C72D14391DE>] +>> +startxref +2410 +%%EOF diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play.tex b/Doc/MIS/latex/class_view_1_1_how_to_play.tex new file mode 100644 index 0000000000000000000000000000000000000000..4b082af3fb7d11d242e8487afd6f8578507acd7d --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play.tex @@ -0,0 +1,102 @@ +\hypertarget{class_view_1_1_how_to_play}{}\section{View.\+How\+To\+Play Class Reference} +\label{class_view_1_1_how_to_play}\index{View.\+How\+To\+Play@{View.\+How\+To\+Play}} + + +How to Play Menu + + +Inheritance diagram for View.\+How\+To\+Play\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_view_1_1_how_to_play} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_view_1_1_how_to_play_a5c24309243dd0682ad9e25ecaf15e960}{How\+To\+Play} () +\item +void \hyperlink{class_view_1_1_how_to_play_a3c3a75e8e633b002acee5565578cca59}{set\+Quit\+False} () +\item +Boolean \hyperlink{class_view_1_1_how_to_play_a271b045914c0603653a830098b806f27}{get\+Quit} () +\item +void \hyperlink{class_view_1_1_how_to_play_acbd92ee6af1908ac5fe90e19fbc9e973}{set\+Next\+False} () +\item +Boolean \hyperlink{class_view_1_1_how_to_play_a0381eec7136accb054e37dea55e949ba}{get\+Next} () +\end{DoxyCompactItemize} +\subsection*{Public Attributes} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_view_1_1_how_to_play_ac9ab59e74d788e2bf98b96eb904b34a5}{}\label{class_view_1_1_how_to_play_ac9ab59e74d788e2bf98b96eb904b34a5} +bool {\bfseries quit} = false +\item +\hypertarget{class_view_1_1_how_to_play_a29e4237501cdc8a6294a73aebd69f8f4}{}\label{class_view_1_1_how_to_play_a29e4237501cdc8a6294a73aebd69f8f4} +bool {\bfseries next} = false +\end{DoxyCompactItemize} +\subsection*{Protected Member Functions} +\begin{DoxyCompactItemize} +\item +override void \hyperlink{class_view_1_1_how_to_play_a459b97062e80b85abff7660bbee504c8}{Dispose} (bool disposing) +\begin{DoxyCompactList}\small\item\em Clean up any resources being used. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +How to Play Menu + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_view_1_1_how_to_play_a5c24309243dd0682ad9e25ecaf15e960}{}\label{class_view_1_1_how_to_play_a5c24309243dd0682ad9e25ecaf15e960} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!How\+To\+Play@{How\+To\+Play}} +\index{How\+To\+Play@{How\+To\+Play}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{How\+To\+Play()}{HowToPlay()}} +{\footnotesize\ttfamily View.\+How\+To\+Play.\+How\+To\+Play (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructor for \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} window + +\subsection{Member Function Documentation} +\hypertarget{class_view_1_1_how_to_play_a459b97062e80b85abff7660bbee504c8}{}\label{class_view_1_1_how_to_play_a459b97062e80b85abff7660bbee504c8} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!Dispose@{Dispose}} +\index{Dispose@{Dispose}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{Dispose()}{Dispose()}} +{\footnotesize\ttfamily override void View.\+How\+To\+Play.\+Dispose (\begin{DoxyParamCaption}\item[{bool}]{disposing }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + + + +Clean up any resources being used. + + +\begin{DoxyParams}{Parameters} +{\em disposing} & true if managed resources should be disposed; otherwise, false.\\ +\hline +\end{DoxyParams} +\hypertarget{class_view_1_1_how_to_play_a0381eec7136accb054e37dea55e949ba}{}\label{class_view_1_1_how_to_play_a0381eec7136accb054e37dea55e949ba} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!get\+Next@{get\+Next}} +\index{get\+Next@{get\+Next}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{get\+Next()}{getNext()}} +{\footnotesize\ttfamily Boolean View.\+How\+To\+Play.\+get\+Next (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns if quit button is currently clicked \hypertarget{class_view_1_1_how_to_play_a271b045914c0603653a830098b806f27}{}\label{class_view_1_1_how_to_play_a271b045914c0603653a830098b806f27} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!get\+Quit@{get\+Quit}} +\index{get\+Quit@{get\+Quit}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{get\+Quit()}{getQuit()}} +{\footnotesize\ttfamily Boolean View.\+How\+To\+Play.\+get\+Quit (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns if quit button is currently clicked \hypertarget{class_view_1_1_how_to_play_acbd92ee6af1908ac5fe90e19fbc9e973}{}\label{class_view_1_1_how_to_play_acbd92ee6af1908ac5fe90e19fbc9e973} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!set\+Next\+False@{set\+Next\+False}} +\index{set\+Next\+False@{set\+Next\+False}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{set\+Next\+False()}{setNextFalse()}} +{\footnotesize\ttfamily void View.\+How\+To\+Play.\+set\+Next\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +checks if Game State is no longer inside How To Play \hypertarget{class_view_1_1_how_to_play_a3c3a75e8e633b002acee5565578cca59}{}\label{class_view_1_1_how_to_play_a3c3a75e8e633b002acee5565578cca59} +\index{View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}!set\+Quit\+False@{set\+Quit\+False}} +\index{set\+Quit\+False@{set\+Quit\+False}!View\+::\+How\+To\+Play@{View\+::\+How\+To\+Play}} +\subsubsection{\texorpdfstring{set\+Quit\+False()}{setQuitFalse()}} +{\footnotesize\ttfamily void View.\+How\+To\+Play.\+set\+Quit\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +checks if Game State is no longer inside How To Play + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play.\+cs\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play.\+Designer.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play2.eps b/Doc/MIS/latex/class_view_1_1_how_to_play2.eps new file mode 100644 index 0000000000000000000000000000000000000000..e7a4f63a6c6792bc920cc045f15d53476a800bb7 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play2.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 325.203252 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.537500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(View.HowToPlay2) cw +(Form) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (View.HowToPlay2) 0.000000 0.000000 box + (Form) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play2.pdf b/Doc/MIS/latex/class_view_1_1_how_to_play2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..62a40761a8d390770c3d91a79dafc20e4143d0cf --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play2.pdf @@ -0,0 +1,95 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•=OÄ0†wÿ +À`bÇi’‰‘ƒŠ¸;ÐEUa¨ø÷$iz*â”Á¯c;ïhˆÑ”Óâ6Áõ“ÇýÜÃ\‹ØÂ6áMŸº@âbÀ~ó £(‰·¥4—\¼¼¿Mô0Lýðx|ý–Ëþn{Ø€r#NÙæF\Þh%$pÆqœEô†bìrú[—†¨wž$fóHÅ<Á3nþÇÏ¡£à; ÄA+ÿÝð™NÐg09ª,¤U7X‰,™°®uë9€eË™ ˜qn¼u…ZÖòÇKÜj-eu¹ü^ýëÙ‰Ö²d³}µ:å¥æ…‚ {õ䩨ø¼„õÍj~w•·ñ¸Asžendstream +endobj +6 0 obj +264 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 326] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-55ae511e1df0' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-55ae511e1df0' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:15-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:15-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-55ae511e1df0' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:5b1bc84c-a79d-11e6-0000-55ae511e1df0'/> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-55ae511e1df0' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182815-05'00') +/ModDate(D:20161107182815-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000577 00000 n +0000002287 00000 n +0000000518 00000 n +0000000368 00000 n +0000000015 00000 n +0000000349 00000 n +0000000642 00000 n +0000000742 00000 n +0000000683 00000 n +0000000712 00000 n +0000000808 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<709D8AD6958DCBC3E8B9792F364C9DBD><709D8AD6958DCBC3E8B9792F364C9DBD>] +>> +startxref +2463 +%%EOF diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play2.tex b/Doc/MIS/latex/class_view_1_1_how_to_play2.tex new file mode 100644 index 0000000000000000000000000000000000000000..a09ac44e3fb00e2db3857c00b07cafd13667d987 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play2.tex @@ -0,0 +1,102 @@ +\hypertarget{class_view_1_1_how_to_play2}{}\section{View.\+How\+To\+Play2 Class Reference} +\label{class_view_1_1_how_to_play2}\index{View.\+How\+To\+Play2@{View.\+How\+To\+Play2}} + + +How to Play Menu 2 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu + + +Inheritance diagram for View.\+How\+To\+Play2\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_view_1_1_how_to_play2} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_view_1_1_how_to_play2_a275238cab088650a4930ba6e0f1ba7b0}{How\+To\+Play2} () +\item +void \hyperlink{class_view_1_1_how_to_play2_aa9f430897069f4ed3921a0d9452052c5}{set\+Quit\+False} () +\item +Boolean \hyperlink{class_view_1_1_how_to_play2_a199c1bf8e53a56e23c14ea81e5900c28}{get\+Quit} () +\item +void \hyperlink{class_view_1_1_how_to_play2_ae730b191665b52e780b0313f4906719d}{set\+Next\+False} () +\item +Boolean \hyperlink{class_view_1_1_how_to_play2_acc5864615b7fce1f8cb3b46af0ea8abb}{get\+Next} () +\end{DoxyCompactItemize} +\subsection*{Public Attributes} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_view_1_1_how_to_play2_a3068d75dc47a323787741aac8edb8ad2}{}\label{class_view_1_1_how_to_play2_a3068d75dc47a323787741aac8edb8ad2} +bool {\bfseries quit} = false +\item +\hypertarget{class_view_1_1_how_to_play2_a3aa2ade52076ef9417b31c0b701dad0b}{}\label{class_view_1_1_how_to_play2_a3aa2ade52076ef9417b31c0b701dad0b} +bool {\bfseries next} = false +\end{DoxyCompactItemize} +\subsection*{Protected Member Functions} +\begin{DoxyCompactItemize} +\item +override void \hyperlink{class_view_1_1_how_to_play2_abf387c99fbdd073bae8f6134235904ac}{Dispose} (bool disposing) +\begin{DoxyCompactList}\small\item\em Clean up any resources being used. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +How to Play Menu 2 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_view_1_1_how_to_play2_a275238cab088650a4930ba6e0f1ba7b0}{}\label{class_view_1_1_how_to_play2_a275238cab088650a4930ba6e0f1ba7b0} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!How\+To\+Play2@{How\+To\+Play2}} +\index{How\+To\+Play2@{How\+To\+Play2}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{How\+To\+Play2()}{HowToPlay2()}} +{\footnotesize\ttfamily View.\+How\+To\+Play2.\+How\+To\+Play2 (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructor for \hyperlink{class_view_1_1_how_to_play2}{How\+To\+Play2} window + +\subsection{Member Function Documentation} +\hypertarget{class_view_1_1_how_to_play2_abf387c99fbdd073bae8f6134235904ac}{}\label{class_view_1_1_how_to_play2_abf387c99fbdd073bae8f6134235904ac} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!Dispose@{Dispose}} +\index{Dispose@{Dispose}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{Dispose()}{Dispose()}} +{\footnotesize\ttfamily override void View.\+How\+To\+Play2.\+Dispose (\begin{DoxyParamCaption}\item[{bool}]{disposing }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + + + +Clean up any resources being used. + + +\begin{DoxyParams}{Parameters} +{\em disposing} & true if managed resources should be disposed; otherwise, false.\\ +\hline +\end{DoxyParams} +\hypertarget{class_view_1_1_how_to_play2_acc5864615b7fce1f8cb3b46af0ea8abb}{}\label{class_view_1_1_how_to_play2_acc5864615b7fce1f8cb3b46af0ea8abb} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!get\+Next@{get\+Next}} +\index{get\+Next@{get\+Next}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{get\+Next()}{getNext()}} +{\footnotesize\ttfamily Boolean View.\+How\+To\+Play2.\+get\+Next (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns if quit button is currently clicked \hypertarget{class_view_1_1_how_to_play2_a199c1bf8e53a56e23c14ea81e5900c28}{}\label{class_view_1_1_how_to_play2_a199c1bf8e53a56e23c14ea81e5900c28} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!get\+Quit@{get\+Quit}} +\index{get\+Quit@{get\+Quit}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{get\+Quit()}{getQuit()}} +{\footnotesize\ttfamily Boolean View.\+How\+To\+Play2.\+get\+Quit (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns if quit button is currently clicked \hypertarget{class_view_1_1_how_to_play2_ae730b191665b52e780b0313f4906719d}{}\label{class_view_1_1_how_to_play2_ae730b191665b52e780b0313f4906719d} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!set\+Next\+False@{set\+Next\+False}} +\index{set\+Next\+False@{set\+Next\+False}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{set\+Next\+False()}{setNextFalse()}} +{\footnotesize\ttfamily void View.\+How\+To\+Play2.\+set\+Next\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +checks if Game State is no longer inside How To Play \hypertarget{class_view_1_1_how_to_play2_aa9f430897069f4ed3921a0d9452052c5}{}\label{class_view_1_1_how_to_play2_aa9f430897069f4ed3921a0d9452052c5} +\index{View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}!set\+Quit\+False@{set\+Quit\+False}} +\index{set\+Quit\+False@{set\+Quit\+False}!View\+::\+How\+To\+Play2@{View\+::\+How\+To\+Play2}} +\subsubsection{\texorpdfstring{set\+Quit\+False()}{setQuitFalse()}} +{\footnotesize\ttfamily void View.\+How\+To\+Play2.\+set\+Quit\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +checks if Game State is no longer inside How To Play + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play2.\+cs\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play2.\+Designer.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play3.eps b/Doc/MIS/latex/class_view_1_1_how_to_play3.eps new file mode 100644 index 0000000000000000000000000000000000000000..2db559e4e249f8cf24e5c4d5e9ecc42dac3cac2d --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play3.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 325.203252 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.537500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(View.HowToPlay3) cw +(Form) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (View.HowToPlay3) 0.000000 0.000000 box + (Form) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play3.pdf b/Doc/MIS/latex/class_view_1_1_how_to_play3.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3061541faeff815c1509c416c1ead132ff24c5dc Binary files /dev/null and b/Doc/MIS/latex/class_view_1_1_how_to_play3.pdf differ diff --git a/Doc/MIS/latex/class_view_1_1_how_to_play3.tex b/Doc/MIS/latex/class_view_1_1_how_to_play3.tex new file mode 100644 index 0000000000000000000000000000000000000000..44599b6a08c30eb2580e8ad04b84bf5108982251 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_how_to_play3.tex @@ -0,0 +1,83 @@ +\hypertarget{class_view_1_1_how_to_play3}{}\section{View.\+How\+To\+Play3 Class Reference} +\label{class_view_1_1_how_to_play3}\index{View.\+How\+To\+Play3@{View.\+How\+To\+Play3}} + + +How to Play Menu 3 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu 2 + + +Inheritance diagram for View.\+How\+To\+Play3\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_view_1_1_how_to_play3} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_view_1_1_how_to_play3_a55470f85b01b5025cc11d7f75655f9d1}{How\+To\+Play3} () +\item +void \hyperlink{class_view_1_1_how_to_play3_ad31d606a58cd810afbfb12b45f3b4ca6}{set\+Quit\+False} () +\item +Boolean \hyperlink{class_view_1_1_how_to_play3_a0e08141a83247c96907d6677ac0da539}{get\+Quit} () +\end{DoxyCompactItemize} +\subsection*{Public Attributes} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_view_1_1_how_to_play3_a8fb21d6afb8a5af33571c8d66bdf2c92}{}\label{class_view_1_1_how_to_play3_a8fb21d6afb8a5af33571c8d66bdf2c92} +bool {\bfseries quit} = false +\end{DoxyCompactItemize} +\subsection*{Protected Member Functions} +\begin{DoxyCompactItemize} +\item +override void \hyperlink{class_view_1_1_how_to_play3_a9383ffca40f40f1554ee919b72b6af54}{Dispose} (bool disposing) +\begin{DoxyCompactList}\small\item\em Clean up any resources being used. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +How to Play Menu 3 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu 2 + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_view_1_1_how_to_play3_a55470f85b01b5025cc11d7f75655f9d1}{}\label{class_view_1_1_how_to_play3_a55470f85b01b5025cc11d7f75655f9d1} +\index{View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}!How\+To\+Play3@{How\+To\+Play3}} +\index{How\+To\+Play3@{How\+To\+Play3}!View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}} +\subsubsection{\texorpdfstring{How\+To\+Play3()}{HowToPlay3()}} +{\footnotesize\ttfamily View.\+How\+To\+Play3.\+How\+To\+Play3 (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructor for \hyperlink{class_view_1_1_how_to_play3}{How\+To\+Play3} window + +\subsection{Member Function Documentation} +\hypertarget{class_view_1_1_how_to_play3_a9383ffca40f40f1554ee919b72b6af54}{}\label{class_view_1_1_how_to_play3_a9383ffca40f40f1554ee919b72b6af54} +\index{View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}!Dispose@{Dispose}} +\index{Dispose@{Dispose}!View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}} +\subsubsection{\texorpdfstring{Dispose()}{Dispose()}} +{\footnotesize\ttfamily override void View.\+How\+To\+Play3.\+Dispose (\begin{DoxyParamCaption}\item[{bool}]{disposing }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + + + +Clean up any resources being used. + + +\begin{DoxyParams}{Parameters} +{\em disposing} & true if managed resources should be disposed; otherwise, false.\\ +\hline +\end{DoxyParams} +\hypertarget{class_view_1_1_how_to_play3_a0e08141a83247c96907d6677ac0da539}{}\label{class_view_1_1_how_to_play3_a0e08141a83247c96907d6677ac0da539} +\index{View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}!get\+Quit@{get\+Quit}} +\index{get\+Quit@{get\+Quit}!View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}} +\subsubsection{\texorpdfstring{get\+Quit()}{getQuit()}} +{\footnotesize\ttfamily Boolean View.\+How\+To\+Play3.\+get\+Quit (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns if quit button is currently clicked \hypertarget{class_view_1_1_how_to_play3_ad31d606a58cd810afbfb12b45f3b4ca6}{}\label{class_view_1_1_how_to_play3_ad31d606a58cd810afbfb12b45f3b4ca6} +\index{View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}!set\+Quit\+False@{set\+Quit\+False}} +\index{set\+Quit\+False@{set\+Quit\+False}!View\+::\+How\+To\+Play3@{View\+::\+How\+To\+Play3}} +\subsubsection{\texorpdfstring{set\+Quit\+False()}{setQuitFalse()}} +{\footnotesize\ttfamily void View.\+How\+To\+Play3.\+set\+Quit\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +checks if Game State is no longer inside How To Play + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play3.\+cs\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/How\+To\+Play3.\+Designer.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/class_view_1_1_main_menu.eps b/Doc/MIS/latex/class_view_1_1_main_menu.eps new file mode 100644 index 0000000000000000000000000000000000000000..74bddaa43707537f6282929ff5fb93aee4eba5e5 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_main_menu.eps @@ -0,0 +1,197 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 357.142857 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 1.400000 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 1 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(View.MainMenu) cw +(Form) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (View.MainMenu) 0.000000 0.000000 box + (Form) 0.000000 1.000000 box + +% ----- relations ----- + +solid +0 0.000000 0.000000 out +solid +1 0.000000 1.000000 in diff --git a/Doc/MIS/latex/class_view_1_1_main_menu.pdf b/Doc/MIS/latex/class_view_1_1_main_menu.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b6d1340b87ae8e9d69ab54175f59709dcb0639f --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_main_menu.pdf @@ -0,0 +1,96 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ•Ž½nB1…w?…Ƕƒû&q¼"µ +Qw„.D¨ ªxý&pùS'äÁ²}¾³CGŒ®ÕÐç^'ŠËp¸„ðQÄ¡ÍŽr=H=™q¼€Ó#£(95ÅNɘs§¯U ñlµ÷Ûß缆·Ÿ<q°„‡ +ù€öœkԑ྇écdV£¥‡ÀGòû÷¾\€…c¤ÎþƒN©f‘p•Ê0Eñ”pÓînæA={^äó¢é‰I<²y# õD<'Òx»¹÷X¼Ô nRendstream +endobj +6 0 obj +208 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 358] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-3b74ded7da52' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-3b74ded7da52' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:15-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:15-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-3b74ded7da52' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:5b1bc84c-a79d-11e6-0000-3b74ded7da52'/> +<rdf:Description rdf:about='uuid:5b1bc84c-a79d-11e6-0000-3b74ded7da52' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182815-05'00') +/ModDate(D:20161107182815-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000521 00000 n +0000002231 00000 n +0000000462 00000 n +0000000312 00000 n +0000000015 00000 n +0000000293 00000 n +0000000586 00000 n +0000000686 00000 n +0000000627 00000 n +0000000656 00000 n +0000000752 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<F1B26C65BD95AE46A5340207B068A556><F1B26C65BD95AE46A5340207B068A556>] +>> +startxref +2407 +%%EOF diff --git a/Doc/MIS/latex/class_view_1_1_main_menu.tex b/Doc/MIS/latex/class_view_1_1_main_menu.tex new file mode 100644 index 0000000000000000000000000000000000000000..b404a82fcd66f8b4abf54994dd5c5ee69062df05 --- /dev/null +++ b/Doc/MIS/latex/class_view_1_1_main_menu.tex @@ -0,0 +1,92 @@ +\hypertarget{class_view_1_1_main_menu}{}\section{View.\+Main\+Menu Class Reference} +\label{class_view_1_1_main_menu}\index{View.\+Main\+Menu@{View.\+Main\+Menu}} + + +The Main Menu class. This window is displayed upon starting game, and can link you to \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} playing the Game. + + +Inheritance diagram for View.\+Main\+Menu\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{class_view_1_1_main_menu} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\hyperlink{class_view_1_1_main_menu_a148c2fad834c39e44eab811b9bf7cb32}{Main\+Menu} () +\item +void \hyperlink{class_view_1_1_main_menu_a2efeeb76551d4eceeb90f7245ad096d5}{set\+Instruct\+False} () +\item +Boolean \hyperlink{class_view_1_1_main_menu_ae90536ff5fa8f90ebe1d99623021817f}{get\+Instruct} () +\end{DoxyCompactItemize} +\subsection*{Public Attributes} +\begin{DoxyCompactItemize} +\item +\hypertarget{class_view_1_1_main_menu_a2d10e8525ae3bd27a593869a2683626f}{}\label{class_view_1_1_main_menu_a2d10e8525ae3bd27a593869a2683626f} +bool {\bfseries start} = false +\item +\hypertarget{class_view_1_1_main_menu_af50efe2ac722b8efdee208268f9089be}{}\label{class_view_1_1_main_menu_af50efe2ac722b8efdee208268f9089be} +bool {\bfseries instruct} = false +\item +\hypertarget{class_view_1_1_main_menu_a81bfa25099d184c99353ad06f9e1ff7b}{}\label{class_view_1_1_main_menu_a81bfa25099d184c99353ad06f9e1ff7b} +bool {\bfseries quit} = false +\item +\hypertarget{class_view_1_1_main_menu_af64c58a5e627a7d1de10d4d365a640a4}{}\label{class_view_1_1_main_menu_af64c58a5e627a7d1de10d4d365a640a4} +bool {\bfseries load} = false +\end{DoxyCompactItemize} +\subsection*{Protected Member Functions} +\begin{DoxyCompactItemize} +\item +override void \hyperlink{class_view_1_1_main_menu_aa2671453d4e5063258fb3cef3b125a9b}{Dispose} (bool disposing) +\begin{DoxyCompactList}\small\item\em Clean up any resources being used. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The Main Menu class. This window is displayed upon starting game, and can link you to \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} playing the Game. + + + +\subsection{Constructor \& Destructor Documentation} +\hypertarget{class_view_1_1_main_menu_a148c2fad834c39e44eab811b9bf7cb32}{}\label{class_view_1_1_main_menu_a148c2fad834c39e44eab811b9bf7cb32} +\index{View\+::\+Main\+Menu@{View\+::\+Main\+Menu}!Main\+Menu@{Main\+Menu}} +\index{Main\+Menu@{Main\+Menu}!View\+::\+Main\+Menu@{View\+::\+Main\+Menu}} +\subsubsection{\texorpdfstring{Main\+Menu()}{MainMenu()}} +{\footnotesize\ttfamily View.\+Main\+Menu.\+Main\+Menu (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Constructor for Main Menu window + +\subsection{Member Function Documentation} +\hypertarget{class_view_1_1_main_menu_aa2671453d4e5063258fb3cef3b125a9b}{}\label{class_view_1_1_main_menu_aa2671453d4e5063258fb3cef3b125a9b} +\index{View\+::\+Main\+Menu@{View\+::\+Main\+Menu}!Dispose@{Dispose}} +\index{Dispose@{Dispose}!View\+::\+Main\+Menu@{View\+::\+Main\+Menu}} +\subsubsection{\texorpdfstring{Dispose()}{Dispose()}} +{\footnotesize\ttfamily override void View.\+Main\+Menu.\+Dispose (\begin{DoxyParamCaption}\item[{bool}]{disposing }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [protected]}} + + + +Clean up any resources being used. + + +\begin{DoxyParams}{Parameters} +{\em disposing} & true if managed resources should be disposed; otherwise, false.\\ +\hline +\end{DoxyParams} +\hypertarget{class_view_1_1_main_menu_ae90536ff5fa8f90ebe1d99623021817f}{}\label{class_view_1_1_main_menu_ae90536ff5fa8f90ebe1d99623021817f} +\index{View\+::\+Main\+Menu@{View\+::\+Main\+Menu}!get\+Instruct@{get\+Instruct}} +\index{get\+Instruct@{get\+Instruct}!View\+::\+Main\+Menu@{View\+::\+Main\+Menu}} +\subsubsection{\texorpdfstring{get\+Instruct()}{getInstruct()}} +{\footnotesize\ttfamily Boolean View.\+Main\+Menu.\+get\+Instruct (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns current instruct boolean \hypertarget{class_view_1_1_main_menu_a2efeeb76551d4eceeb90f7245ad096d5}{}\label{class_view_1_1_main_menu_a2efeeb76551d4eceeb90f7245ad096d5} +\index{View\+::\+Main\+Menu@{View\+::\+Main\+Menu}!set\+Instruct\+False@{set\+Instruct\+False}} +\index{set\+Instruct\+False@{set\+Instruct\+False}!View\+::\+Main\+Menu@{View\+::\+Main\+Menu}} +\subsubsection{\texorpdfstring{set\+Instruct\+False()}{setInstructFalse()}} +{\footnotesize\ttfamily void View.\+Main\+Menu.\+set\+Instruct\+False (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +sets instruct to false when no longer on how-\/to-\/play game\+State + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Main\+Menu.\+cs\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Main\+Menu.\+Designer.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/dir_5a26ab1ce369faa82acd5f0b51159ad1.tex b/Doc/MIS/latex/dir_5a26ab1ce369faa82acd5f0b51159ad1.tex new file mode 100644 index 0000000000000000000000000000000000000000..f292a6ede8aa84768e9d5a01c6621074f689ece6 --- /dev/null +++ b/Doc/MIS/latex/dir_5a26ab1ce369faa82acd5f0b51159ad1.tex @@ -0,0 +1,2 @@ +\hypertarget{dir_5a26ab1ce369faa82acd5f0b51159ad1}{}\section{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src Directory Reference} +\label{dir_5a26ab1ce369faa82acd5f0b51159ad1}\index{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src Directory Reference@{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src Directory Reference}} diff --git a/Doc/MIS/latex/dir_664b3d9a87f45d7efdffa54e174fbdaa.tex b/Doc/MIS/latex/dir_664b3d9a87f45d7efdffa54e174fbdaa.tex new file mode 100644 index 0000000000000000000000000000000000000000..197e0a51cd5bd2a0a710dc7c202bddec713ee441 --- /dev/null +++ b/Doc/MIS/latex/dir_664b3d9a87f45d7efdffa54e174fbdaa.tex @@ -0,0 +1,2 @@ +\hypertarget{dir_664b3d9a87f45d7efdffa54e174fbdaa}{}\section{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade Directory Reference} +\label{dir_664b3d9a87f45d7efdffa54e174fbdaa}\index{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade Directory Reference@{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade Directory Reference}} diff --git a/Doc/MIS/latex/dir_f396504afdc959660871b003fa10164d.tex b/Doc/MIS/latex/dir_f396504afdc959660871b003fa10164d.tex new file mode 100644 index 0000000000000000000000000000000000000000..b11232dde508393f39c3228949a076917302e49b --- /dev/null +++ b/Doc/MIS/latex/dir_f396504afdc959660871b003fa10164d.tex @@ -0,0 +1,2 @@ +\hypertarget{dir_f396504afdc959660871b003fa10164d}{}\section{C\+:/\+Users/chaos/\+Documents Directory Reference} +\label{dir_f396504afdc959660871b003fa10164d}\index{C\+:/\+Users/chaos/\+Documents Directory Reference@{C\+:/\+Users/chaos/\+Documents Directory Reference}} diff --git a/Doc/MIS/latex/dir_f5b08de23b1ad7da5319369ec8d0bafb.tex b/Doc/MIS/latex/dir_f5b08de23b1ad7da5319369ec8d0bafb.tex new file mode 100644 index 0000000000000000000000000000000000000000..6f1f20fa0323a530e1020c0af3c1ab7fbbc8561f --- /dev/null +++ b/Doc/MIS/latex/dir_f5b08de23b1ad7da5319369ec8d0bafb.tex @@ -0,0 +1,2 @@ +\hypertarget{dir_f5b08de23b1ad7da5319369ec8d0bafb}{}\section{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade Directory Reference} +\label{dir_f5b08de23b1ad7da5319369ec8d0bafb}\index{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade Directory Reference@{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade Directory Reference}} diff --git a/Doc/MIS/latex/dir_fa16f34da8dda09f0142eeff21fed967.tex b/Doc/MIS/latex/dir_fa16f34da8dda09f0142eeff21fed967.tex new file mode 100644 index 0000000000000000000000000000000000000000..78cc220af5ba5c4d5c52abc1a53d2f3a5239709a --- /dev/null +++ b/Doc/MIS/latex/dir_fa16f34da8dda09f0142eeff21fed967.tex @@ -0,0 +1,5 @@ +\hypertarget{dir_fa16f34da8dda09f0142eeff21fed967}{}\section{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade Directory Reference} +\label{dir_fa16f34da8dda09f0142eeff21fed967}\index{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade Directory Reference@{C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade Directory Reference}} +\subsection*{Directories} +\begin{DoxyCompactItemize} +\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/doxygen.sty b/Doc/MIS/latex/doxygen.sty new file mode 100644 index 0000000000000000000000000000000000000000..2510b410984cc5c621e3e508acef65153d21890d --- /dev/null +++ b/Doc/MIS/latex/doxygen.sty @@ -0,0 +1,500 @@ +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{doxygen} + +% Packages used by this style file +\RequirePackage{alltt} +\RequirePackage{array} +\RequirePackage{calc} +\RequirePackage{float} +\RequirePackage{ifthen} +\RequirePackage{verbatim} +\RequirePackage[table]{xcolor} +\RequirePackage{longtable} +\RequirePackage{tabu} +\RequirePackage{tabularx} +\RequirePackage{multirow} + +%---------- Internal commands used in this style file ---------------- + +\newcommand{\ensurespace}[1]{% + \begingroup% + \setlength{\dimen@}{#1}% + \vskip\z@\@plus\dimen@% + \penalty -100\vskip\z@\@plus -\dimen@% + \vskip\dimen@% + \penalty 9999% + \vskip -\dimen@% + \vskip\z@skip% hide the previous |\vskip| from |\addvspace| + \endgroup% +} + +\newcommand{\DoxyLabelFont}{} +\newcommand{\entrylabel}[1]{% + {% + \parbox[b]{\labelwidth-4pt}{% + \makebox[0pt][l]{\DoxyLabelFont#1}% + \vspace{1.5\baselineskip}% + }% + }% +} + +\newenvironment{DoxyDesc}[1]{% + \ensurespace{4\baselineskip}% + \begin{list}{}{% + \settowidth{\labelwidth}{20pt}% + \setlength{\parsep}{0pt}% + \setlength{\itemsep}{0pt}% + \setlength{\leftmargin}{\labelwidth+\labelsep}% + \renewcommand{\makelabel}{\entrylabel}% + }% + \item[#1]% +}{% + \end{list}% +} + +\newsavebox{\xrefbox} +\newlength{\xreflength} +\newcommand{\xreflabel}[1]{% + \sbox{\xrefbox}{#1}% + \setlength{\xreflength}{\wd\xrefbox}% + \ifthenelse{\xreflength>\labelwidth}{% + \begin{minipage}{\textwidth}% + \setlength{\parindent}{0pt}% + \hangindent=15pt\bfseries #1\vspace{1.2\itemsep}% + \end{minipage}% + }{% + \parbox[b]{\labelwidth}{\makebox[0pt][l]{\textbf{#1}}}% + }% +} + +%---------- Commands used by doxygen LaTeX output generator ---------- + +% Used by <pre> ... </pre> +\newenvironment{DoxyPre}{% + \small% + \begin{alltt}% +}{% + \end{alltt}% + \normalsize% +} + +% Used by @code ... @endcode +\newenvironment{DoxyCode}{% + \par% + \scriptsize% + \begin{alltt}% +}{% + \end{alltt}% + \normalsize% +} + +% Used by @example, @include, @includelineno and @dontinclude +\newenvironment{DoxyCodeInclude}{% + \DoxyCode% +}{% + \endDoxyCode% +} + +% Used by @verbatim ... @endverbatim +\newenvironment{DoxyVerb}{% + \footnotesize% + \verbatim% +}{% + \endverbatim% + \normalsize% +} + +% Used by @verbinclude +\newenvironment{DoxyVerbInclude}{% + \DoxyVerb% +}{% + \endDoxyVerb% +} + +% Used by numbered lists (using '-#' or <ol> ... </ol>) +\newenvironment{DoxyEnumerate}{% + \enumerate% +}{% + \endenumerate% +} + +% Used by bullet lists (using '-', @li, @arg, or <ul> ... </ul>) +\newenvironment{DoxyItemize}{% + \itemize% +}{% + \enditemize% +} + +% Used by description lists (using <dl> ... </dl>) +\newenvironment{DoxyDescription}{% + \description% +}{% + \enddescription% +} + +% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc +% (only if caption is specified) +\newenvironment{DoxyImage}{% + \begin{figure}[H]% + \begin{center}% +}{% + \end{center}% + \end{figure}% +} + +% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc +% (only if no caption is specified) +\newenvironment{DoxyImageNoCaption}{% + \begin{center}% +}{% + \end{center}% +} + +% Used by @attention +\newenvironment{DoxyAttention}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @author and @authors +\newenvironment{DoxyAuthor}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @date +\newenvironment{DoxyDate}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @invariant +\newenvironment{DoxyInvariant}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @note +\newenvironment{DoxyNote}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @post +\newenvironment{DoxyPostcond}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @pre +\newenvironment{DoxyPrecond}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @copyright +\newenvironment{DoxyCopyright}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @remark +\newenvironment{DoxyRemark}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @return and @returns +\newenvironment{DoxyReturn}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @since +\newenvironment{DoxySince}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @see +\newenvironment{DoxySeeAlso}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @version +\newenvironment{DoxyVersion}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @warning +\newenvironment{DoxyWarning}[1]{% + \begin{DoxyDesc}{#1}% +}{% + \end{DoxyDesc}% +} + +% Used by @internal +\newenvironment{DoxyInternal}[1]{% + \paragraph*{#1}% +}{% +} + +% Used by @par and @paragraph +\newenvironment{DoxyParagraph}[1]{% + \begin{list}{}{% + \settowidth{\labelwidth}{40pt}% + \setlength{\leftmargin}{\labelwidth}% + \setlength{\parsep}{0pt}% + \setlength{\itemsep}{-4pt}% + \renewcommand{\makelabel}{\entrylabel}% + }% + \item[#1]% +}{% + \end{list}% +} + +% Used by parameter lists +\newenvironment{DoxyParams}[2][]{% + \tabulinesep=1mm% + \par% + \ifthenelse{\equal{#1}{}}% + {\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|}}% name + description + {\ifthenelse{\equal{#1}{1}}% + {\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + name + desc + {\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + type + name + desc + } + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used for fields of simple structs +\newenvironment{DoxyFields}[1]{% + \tabulinesep=1mm% + \par% + \begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|X[-1,l]|}% + \multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used for fields simple class style enums +\newenvironment{DoxyEnumFields}[1]{% + \tabulinesep=1mm% + \par% + \begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used for parameters within a detailed function description +\newenvironment{DoxyParamCaption}{% + \renewcommand{\item}[2][]{\\ \hspace*{2.0cm} ##1 {\em ##2}}% +}{% +} + +% Used by return value lists +\newenvironment{DoxyRetVals}[1]{% + \tabulinesep=1mm% + \par% + \begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used by exception lists +\newenvironment{DoxyExceptions}[1]{% + \tabulinesep=1mm% + \par% + \begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used by template parameter lists +\newenvironment{DoxyTemplParams}[1]{% + \tabulinesep=1mm% + \par% + \begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endfirsthead% + \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% + \hline% + \endhead% +}{% + \end{longtabu}% + \vspace{6pt}% +} + +% Used for member lists +\newenvironment{DoxyCompactItemize}{% + \begin{itemize}% + \setlength{\itemsep}{-3pt}% + \setlength{\parsep}{0pt}% + \setlength{\topsep}{0pt}% + \setlength{\partopsep}{0pt}% +}{% + \end{itemize}% +} + +% Used for member descriptions +\newenvironment{DoxyCompactList}{% + \begin{list}{}{% + \setlength{\leftmargin}{0.5cm}% + \setlength{\itemsep}{0pt}% + \setlength{\parsep}{0pt}% + \setlength{\topsep}{0pt}% + \renewcommand{\makelabel}{\hfill}% + }% +}{% + \end{list}% +} + +% Used for reference lists (@bug, @deprecated, @todo, etc.) +\newenvironment{DoxyRefList}{% + \begin{list}{}{% + \setlength{\labelwidth}{10pt}% + \setlength{\leftmargin}{\labelwidth}% + \addtolength{\leftmargin}{\labelsep}% + \renewcommand{\makelabel}{\xreflabel}% + }% +}{% + \end{list}% +} + +% Used by @bug, @deprecated, @todo, etc. +\newenvironment{DoxyRefDesc}[1]{% + \begin{list}{}{% + \renewcommand\makelabel[1]{\textbf{##1}}% + \settowidth\labelwidth{\makelabel{#1}}% + \setlength\leftmargin{\labelwidth+\labelsep}% + }% +}{% + \end{list}% +} + +% Used by parameter lists and simple sections +\newenvironment{Desc} +{\begin{list}{}{% + \settowidth{\labelwidth}{20pt}% + \setlength{\parsep}{0pt}% + \setlength{\itemsep}{0pt}% + \setlength{\leftmargin}{\labelwidth+\labelsep}% + \renewcommand{\makelabel}{\entrylabel}% + } +}{% + \end{list}% +} + +% Used by tables +\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp}% +\newenvironment{TabularC}[1]% +{\tabulinesep=1mm +\begin{longtabu} spread 0pt [c]{*#1{|X[-1]}|}}% +{\end{longtabu}\par}% + +\newenvironment{TabularNC}[1]% +{\begin{tabu} spread 0pt [l]{*#1{|X[-1]}|}}% +{\end{tabu}\par}% + +% Used for member group headers +\newenvironment{Indent}{% + \begin{list}{}{% + \setlength{\leftmargin}{0.5cm}% + }% + \item[]\ignorespaces% +}{% + \unskip% + \end{list}% +} + +% Used when hyperlinks are turned off +\newcommand{\doxyref}[3]{% + \textbf{#1} (\textnormal{#2}\,\pageref{#3})% +} + +% Used to link to a table when hyperlinks are turned on +\newcommand{\doxytablelink}[2]{% + \ref{#1}% +} + +% Used to link to a table when hyperlinks are turned off +\newcommand{\doxytableref}[3]{% + \ref{#3}% +} + +% Used by @addindex +\newcommand{\lcurly}{\{} +\newcommand{\rcurly}{\}} + +% Colors used for syntax highlighting +\definecolor{comment}{rgb}{0.5,0.0,0.0} +\definecolor{keyword}{rgb}{0.0,0.5,0.0} +\definecolor{keywordtype}{rgb}{0.38,0.25,0.125} +\definecolor{keywordflow}{rgb}{0.88,0.5,0.0} +\definecolor{preprocessor}{rgb}{0.5,0.38,0.125} +\definecolor{stringliteral}{rgb}{0.0,0.125,0.25} +\definecolor{charliteral}{rgb}{0.0,0.5,0.5} +\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0} +\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43} +\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0} +\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0} + +% Color used for table heading +\newcommand{\tableheadbgcolor}{lightgray}% + +% Define caption that is also suitable in a table +\makeatletter +\def\doxyfigcaption{% +\refstepcounter{figure}% +\@dblarg{\@caption{figure}}} +\makeatother diff --git a/Doc/MIS/latex/hierarchy.tex b/Doc/MIS/latex/hierarchy.tex new file mode 100644 index 0000000000000000000000000000000000000000..e02354c76350f506f9d665d3562e350d7a170f40 --- /dev/null +++ b/Doc/MIS/latex/hierarchy.tex @@ -0,0 +1,32 @@ +\section{Class Hierarchy} +This inheritance list is sorted roughly, but not completely, alphabetically\+:\begin{DoxyCompactList} +\item \contentsline{section}{View.\+Button}{\pageref{class_view_1_1_button}}{} +\item \contentsline{section}{Model.\+Damage\+Calculations}{\pageref{class_model_1_1_damage_calculations}}{} +\item Form\begin{DoxyCompactList} +\item \contentsline{section}{View.\+How\+To\+Play}{\pageref{class_view_1_1_how_to_play}}{} +\item \contentsline{section}{View.\+How\+To\+Play2}{\pageref{class_view_1_1_how_to_play2}}{} +\item \contentsline{section}{View.\+How\+To\+Play3}{\pageref{class_view_1_1_how_to_play3}}{} +\item \contentsline{section}{View.\+Main\+Menu}{\pageref{class_view_1_1_main_menu}}{} +\end{DoxyCompactList} +\item Game\begin{DoxyCompactList} +\item \contentsline{section}{Controller.\+Game}{\pageref{class_controller_1_1_game}}{} +\end{DoxyCompactList} +\item \contentsline{section}{Controller.\+Game\+Function}{\pageref{class_controller_1_1_game_function}}{} +\item \contentsline{section}{Model.\+Game\+State}{\pageref{class_model_1_1_game_state}}{} +\item \contentsline{section}{Model.\+Graph}{\pageref{class_model_1_1_graph}}{} +\item \contentsline{section}{Controller.\+Mouse\+Handler}{\pageref{class_controller_1_1_mouse_handler}}{} +\item \contentsline{section}{Model.\+Node}{\pageref{class_model_1_1_node}}{} +\item \contentsline{section}{Model.\+Player}{\pageref{class_model_1_1_player}}{} +\item \contentsline{section}{Model.\+Unit}{\pageref{interface_model_1_1_unit}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{Model.\+Archer}{\pageref{class_model_1_1_archer}}{} +\item \contentsline{section}{Model.\+Mage}{\pageref{class_model_1_1_mage}}{} +\item \contentsline{section}{Model.\+Warrior}{\pageref{class_model_1_1_warrior}}{} +\end{DoxyCompactList} +\item \contentsline{section}{Model.\+Weapon}{\pageref{interface_model_1_1_weapon}}{} +\begin{DoxyCompactList} +\item \contentsline{section}{Model.\+Bronze\+Bow}{\pageref{class_model_1_1_bronze_bow}}{} +\item \contentsline{section}{Model.\+Bronze\+Sword}{\pageref{class_model_1_1_bronze_sword}}{} +\item \contentsline{section}{Model.\+Fireball}{\pageref{class_model_1_1_fireball}}{} +\end{DoxyCompactList} +\end{DoxyCompactList} diff --git a/Doc/MIS/latex/interface_model_1_1_unit.eps b/Doc/MIS/latex/interface_model_1_1_unit.eps new file mode 100644 index 0000000000000000000000000000000000000000..5471fbf06c8f877428de073e0b3a5597bf8766eb --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_unit.eps @@ -0,0 +1,207 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 130.718954 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 3.825000 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 3 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Unit) cw +(Model.Archer) cw +(Model.Mage) cw +(Model.Warrior) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Unit) 1.000000 1.000000 box + (Model.Archer) 0.000000 0.000000 box + (Model.Mage) 1.000000 0.000000 box + (Model.Warrior) 2.000000 0.000000 box + +% ----- relations ----- + +solid +1 1.000000 0.250000 out +solid +0.000000 2.000000 1.000000 conn +solid +0 0.000000 0.750000 in +solid +0 1.000000 0.750000 in +solid +0 2.000000 0.750000 in diff --git a/Doc/MIS/latex/interface_model_1_1_unit.pdf b/Doc/MIS/latex/interface_model_1_1_unit.pdf new file mode 100644 index 0000000000000000000000000000000000000000..16042e7c26762a340a5f2651d4f6284908402ae0 --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_unit.pdf @@ -0,0 +1,97 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ’=OÃ@†wÿ +À`Î÷å»$ÄÔ¡Ä\…ô5T Hü}œ&iRQÊàøüÚÏë\öhˆÑ´OË®Wï`p{àCûPÖx[¨ ¡µäEKè9¥è1%2. +5\Ìv/Õ–žÞ6—Å+Ü0N$Ž-~*áXl&fŸÉäà™$£OQó¦‚Ç_ºp:^'hdæ©‹›¦\WÍÑÇAþw\¶ê;žÁÍ«j\º_ó?.â$gÏ‹¦ÙìƉìÔL.†Èz6ƒúJÙ%¬»´¿‘ +§y[µIÿ–¨£œõ*°^´szpÒ¿¼C)‡ ÂÛîƒ'-fP &ëo}G3£äÄz[&’s¬9|J¨žŽendstream +endobj +6 0 obj +283 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 131] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-a55b74201cbc' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-a55b74201cbc' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:13-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:13-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-a55b74201cbc' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:59ea9b4c-a79d-11e6-0000-a55b74201cbc'/> +<rdf:Description rdf:about='uuid:59ea9b4c-a79d-11e6-0000-a55b74201cbc' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182813-05'00') +/ModDate(D:20161107182813-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000596 00000 n +0000002306 00000 n +0000000537 00000 n +0000000387 00000 n +0000000015 00000 n +0000000368 00000 n +0000000661 00000 n +0000000761 00000 n +0000000702 00000 n +0000000731 00000 n +0000000827 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<A866FCE4F3A4329E716EA3E3673CB8BF><A866FCE4F3A4329E716EA3E3673CB8BF>] +>> +startxref +2482 +%%EOF diff --git a/Doc/MIS/latex/interface_model_1_1_unit.tex b/Doc/MIS/latex/interface_model_1_1_unit.tex new file mode 100644 index 0000000000000000000000000000000000000000..20b8da3fbe0757f319aa6842ef6b77bdfeb59e25 --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_unit.tex @@ -0,0 +1,326 @@ +\hypertarget{interface_model_1_1_unit}{}\section{Model.\+Unit Interface Reference} +\label{interface_model_1_1_unit}\index{Model.\+Unit@{Model.\+Unit}} + + +\hyperlink{interface_model_1_1_unit}{Unit} Interface for \hyperlink{class_model_1_1_warrior}{Warrior}, \hyperlink{class_model_1_1_mage}{Mage}, and \hyperlink{class_model_1_1_archer}{Archer} + + +Inheritance diagram for Model.\+Unit\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{interface_model_1_1_unit} +\end{center} +\end{figure} +\subsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +int \hyperlink{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c}{get\+Movability} () +\item +int \mbox{[}$\,$\mbox{]} \hyperlink{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b}{get\+Stats} () +\item +void \hyperlink{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5}{set\+Initial\+Stats} () +\item +bool \hyperlink{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4}{is\+Button\+Active} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +void \hyperlink{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb}{set\+Button\+Coordinates} (Vector2 pixel\+Coordinates) +\item +void \hyperlink{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302}{animate} (Direction direction) +\item +Texture2D \hyperlink{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3}{get\+Sprite\+Image} () +\item +Texture2D \hyperlink{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80}{get\+Button\+Image} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +Texture2D \hyperlink{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b}{get\+Char\+Info} () +\item +Texture2D \hyperlink{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208}{get\+Char\+Attack\+Info} () +\item +\hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} \hyperlink{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d}{get\+Buttons} () +\item +\hyperlink{class_view_1_1_button}{Button} \hyperlink{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060}{get\+Button\+Of\+Type} (\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} button\+Type) +\item +Rectangle \hyperlink{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7}{get\+Current\+Frame} () +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} \hyperlink{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201}{get\+Equipable\+Weapons} () +\item +\hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} \hyperlink{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480}{get\+Class} () +\end{DoxyCompactItemize} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +bool \hyperlink{interface_model_1_1_unit_a9ec349169a911cbd3400fd8ac805bbc9}{Alive}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_add5c3b029398346c448bfa3a64f278f1}{Hp}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_a3d1d61e9c50cb7e005343a17bd9eff17}{Str}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_a9bef9ff10e4fb3d643632c431f1d3cfa}{Int}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_aacecaa31661bd95dcc36bde480a2ea81}{Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_aecee4e038fc518751386c525331ac920}{Speed}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_afca346077df4376dc519435f3a192949}{Def}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_acc73a95a98cadd660da4df26aa1dab22}{Res}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +int \hyperlink{interface_model_1_1_unit_afdbcc5ed513f2d2ac9b1817b542dcce5}{Level}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +\hyperlink{interface_model_1_1_weapon}{Weapon} \hyperlink{interface_model_1_1_unit_a6768928c4a12dfd60675b830bdc70167}{equipped\+Weapon}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Tuple$<$ int, int $>$ \hyperlink{interface_model_1_1_unit_a090b11590e5dbfa1a064c21d831d0a3b}{Position}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\item +Vector2 \hyperlink{interface_model_1_1_unit_a40c0baa06bc651953048d73599070425}{Pixel\+Coordinates}\hspace{0.3cm}{\ttfamily \mbox{[}get, set\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +\hyperlink{interface_model_1_1_unit}{Unit} Interface for \hyperlink{class_model_1_1_warrior}{Warrior}, \hyperlink{class_model_1_1_mage}{Mage}, and \hyperlink{class_model_1_1_archer}{Archer} + +This is the interface for the 3 playable unit classes, where the only differences in the units will be their statistics and graphical assets + +\subsection{Member Function Documentation} +\hypertarget{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302}{}\label{interface_model_1_1_unit_ae8e7d85dbf553f53c6a97a69a131e302} +\index{Model\+::\+Unit@{Model\+::\+Unit}!animate@{animate}} +\index{animate@{animate}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{animate()}{animate()}} +{\footnotesize\ttfamily void Model.\+Unit.\+animate (\begin{DoxyParamCaption}\item[{Direction}]{direction }\end{DoxyParamCaption})} + +animate sprite walking the direction specified +\begin{DoxyParams}{Parameters} +{\em direction} & The direction the unit is moving in \\ +\hline +\end{DoxyParams} + + +Implemented in \hyperlink{class_model_1_1_archer_a98d25f7b4b7f365402668bcfc03eff28}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a392e364fdf2970caec5941366cfdc6f9}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a0e4d364c551d62c4c9b8993f299e5688}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80}{}\label{interface_model_1_1_unit_a626820d6c1777ab3e3c2f3a2ce272e80} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Button\+Image@{get\+Button\+Image}} +\index{get\+Button\+Image@{get\+Button\+Image}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Button\+Image()}{getButtonImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Unit.\+get\+Button\+Image (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +returns the button texture at index i + +Implemented in \hyperlink{class_model_1_1_archer_aa643e878609d234a3fddca294d4d6756}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a6c34591377675f0643fa36a2d1cb378d}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a113fc7c767ebae89aa0968f2b467a007}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060}{}\label{interface_model_1_1_unit_a4988717b894a45723cca1a8b4dac5060} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Button\+Of\+Type@{get\+Button\+Of\+Type}} +\index{get\+Button\+Of\+Type@{get\+Button\+Of\+Type}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Button\+Of\+Type()}{getButtonOfType()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} Model.\+Unit.\+get\+Button\+Of\+Type (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +Returns the button type +\begin{DoxyParams}{Parameters} +{\em button\+Type} & The button to return (Move, Attack, Item, Wait, and attack confirm) \\ +\hline +\end{DoxyParams} + + +Implemented in \hyperlink{class_model_1_1_archer_a31d5c71c429ebedef4a23b84b93408ff}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_adeea72218aed1013de839d04e5bde84c}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a0f5a9c6f5e550f44c84ca64ce022e9a6}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d}{}\label{interface_model_1_1_unit_a99c8b10dfe133f56582ca11c1dbd230d} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Buttons@{get\+Buttons}} +\index{get\+Buttons@{get\+Buttons}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Buttons()}{getButtons()}} +{\footnotesize\ttfamily \hyperlink{class_view_1_1_button}{Button} \mbox{[}$\,$\mbox{]} Model.\+Unit.\+get\+Buttons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the dropdown menu buttons of the unit + +Implemented in \hyperlink{class_model_1_1_archer_a9bbc5e879beafc25e5a33ff80c59ae82}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a57c850c709b509cf0e23f8ebf24da6f0}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_acfd43847689bf1dc0d58429688c33b24}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208}{}\label{interface_model_1_1_unit_aeb30a63287028d9e2d123805b62d3208} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}} +\index{get\+Char\+Attack\+Info@{get\+Char\+Attack\+Info}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Char\+Attack\+Info()}{getCharAttackInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Unit.\+get\+Char\+Attack\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char attack info screen texture + +Implemented in \hyperlink{class_model_1_1_archer_a9f123fc3a324eaf0041462dd40b5ae10}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_aa7c9dac02c4b3c6cd7c6de256c3b2f92}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a40dcd822abdd36758035af6c6d08c0b9}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b}{}\label{interface_model_1_1_unit_adc54c0be5f1b657e30b56255a918f32b} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Char\+Info@{get\+Char\+Info}} +\index{get\+Char\+Info@{get\+Char\+Info}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Char\+Info()}{getCharInfo()}} +{\footnotesize\ttfamily Texture2D Model.\+Unit.\+get\+Char\+Info (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the char info screen texture + +Implemented in \hyperlink{class_model_1_1_archer_a4b1194492d3f9f83fe9842691fc110d9}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_ae6256780be01124c7c9864f4f44b9810}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a243b4ba6d7657e5275c0d74c1e9800e5}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480}{}\label{interface_model_1_1_unit_aab6dc07db093c4bb9f5a7beb0ac02480} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Class@{get\+Class}} +\index{get\+Class@{get\+Class}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Class()}{getClass()}} +{\footnotesize\ttfamily \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} Model.\+Unit.\+get\+Class (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns unit\textquotesingle{}s class (warrior, mage, archer) + +Implemented in \hyperlink{class_model_1_1_archer_abd8b38fd96a6bf778cd635afd1ae13a4}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_aa8290998eb8b6db8fd6544478771b4ab}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a0b8ae1e95b8b00d7da976330db80b968}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7}{}\label{interface_model_1_1_unit_aecb5510d53b67568a17e89b40cdadda7} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Current\+Frame@{get\+Current\+Frame}} +\index{get\+Current\+Frame@{get\+Current\+Frame}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Current\+Frame()}{getCurrentFrame()}} +{\footnotesize\ttfamily Rectangle Model.\+Unit.\+get\+Current\+Frame (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the current sprite frame in animation sequence + +Implemented in \hyperlink{class_model_1_1_archer_a5fc8cd405796886cde8f15f3ad095ca2}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a1da4d9ee53db7b09e338bdab37a57167}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a8e10a65906547abdc55aabb7852eb34a}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201}{}\label{interface_model_1_1_unit_aa57825903df804dda77d78eb2ca90201} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Equipable\+Weapons@{get\+Equipable\+Weapons}} +\index{get\+Equipable\+Weapons@{get\+Equipable\+Weapons}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Equipable\+Weapons()}{getEquipableWeapons()}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} \mbox{[}$\,$\mbox{]} Model.\+Unit.\+get\+Equipable\+Weapons (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns array of equipable weapons + +Implemented in \hyperlink{class_model_1_1_archer_a7a0e7ac7aae02a3f7ceb19a5581f114b}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a5735ecc56cf62b4dccaf218560458bef}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a8f611698ecb5f6b287fd68863462a344}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c}{}\label{interface_model_1_1_unit_afc43169b2f01f5015540c220bc9d2b9c} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Movability@{get\+Movability}} +\index{get\+Movability@{get\+Movability}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Movability()}{getMovability()}} +{\footnotesize\ttfamily int Model.\+Unit.\+get\+Movability (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +Returns the unit\textquotesingle{}s movability range on grid (number of spaces the unit can move in one turn) + +Implemented in \hyperlink{class_model_1_1_archer_a29de04ac6f33498c7b0b11aa7000846d}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a90c0cbd19877be1cb16be4300e7413b2}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a0810e8a8317bf596b2368100fcc6ca75}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3}{}\label{interface_model_1_1_unit_a7c076427c8ef933d33ae50c76ea995b3} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Sprite\+Image@{get\+Sprite\+Image}} +\index{get\+Sprite\+Image@{get\+Sprite\+Image}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Sprite\+Image()}{getSpriteImage()}} +{\footnotesize\ttfamily Texture2D Model.\+Unit.\+get\+Sprite\+Image (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns the sprite image of the unit + +Implemented in \hyperlink{class_model_1_1_archer_a4efe27d91b20d37fee32b7144bbe4af2}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_af32359315cd33ca16d78c83d3f898e8f}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_abcbb2031c3f28d0a4c3509aa30b6308a}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b}{}\label{interface_model_1_1_unit_a52301b538035cebd1ac9bc76bb09948b} +\index{Model\+::\+Unit@{Model\+::\+Unit}!get\+Stats@{get\+Stats}} +\index{get\+Stats@{get\+Stats}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{get\+Stats()}{getStats()}} +{\footnotesize\ttfamily int \mbox{[}$\,$\mbox{]} Model.\+Unit.\+get\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +returns all stats as an array + +Implemented in \hyperlink{class_model_1_1_archer_a6b4732f3d000afcc82512e5e35ede43d}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a226ae9e107258aca2485b887a9f2015f}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a6361e8105573a09d8f29935b41d2a59a}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4}{}\label{interface_model_1_1_unit_ae9cd223ee338da82906a99bd32e72bb4} +\index{Model\+::\+Unit@{Model\+::\+Unit}!is\+Button\+Active@{is\+Button\+Active}} +\index{is\+Button\+Active@{is\+Button\+Active}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{is\+Button\+Active()}{isButtonActive()}} +{\footnotesize\ttfamily bool Model.\+Unit.\+is\+Button\+Active (\begin{DoxyParamCaption}\item[{\hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type}}]{button\+Type }\end{DoxyParamCaption})} + +indicates whether a button has already been previously selected or not + +Implemented in \hyperlink{class_model_1_1_archer_ae2eb6257593149ac06d4518e3ee52d5e}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_ad4c42c550ad5993ee7fd773e896fc914}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a10925eec2f2749a02bcee78c273646f2}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb}{}\label{interface_model_1_1_unit_a9fe162206435e50e8da130388ab50fdb} +\index{Model\+::\+Unit@{Model\+::\+Unit}!set\+Button\+Coordinates@{set\+Button\+Coordinates}} +\index{set\+Button\+Coordinates@{set\+Button\+Coordinates}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{set\+Button\+Coordinates()}{setButtonCoordinates()}} +{\footnotesize\ttfamily void Model.\+Unit.\+set\+Button\+Coordinates (\begin{DoxyParamCaption}\item[{Vector2}]{pixel\+Coordinates }\end{DoxyParamCaption})} + +sets the coordinates of menu buttons +\begin{DoxyParams}{Parameters} +{\em pixel\+Coordinates} & The pixel coordinate of the button \\ +\hline +\end{DoxyParams} + + +Implemented in \hyperlink{class_model_1_1_archer_a18527b95d270412cf4e8c7500c6635fc}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_a4bada92e977b0edd41cb054a44f6d2e1}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_acdc442170e6d92c84dadcd7e49b90a7a}{Model.\+Warrior}. + +\hypertarget{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5}{}\label{interface_model_1_1_unit_a56e3ad622997f6c49e10f4b695644eb5} +\index{Model\+::\+Unit@{Model\+::\+Unit}!set\+Initial\+Stats@{set\+Initial\+Stats}} +\index{set\+Initial\+Stats@{set\+Initial\+Stats}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{set\+Initial\+Stats()}{setInitialStats()}} +{\footnotesize\ttfamily void Model.\+Unit.\+set\+Initial\+Stats (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + +sets initial unit stats upon creation + +Implemented in \hyperlink{class_model_1_1_archer_a4de690927cc791da8de82e7bedf13cf2}{Model.\+Archer}, \hyperlink{class_model_1_1_mage_ac9fb76a259c754214a3b9cc84c1da58d}{Model.\+Mage}, and \hyperlink{class_model_1_1_warrior_a8b774a43312fc8594725578630b27dfd}{Model.\+Warrior}. + + + +\subsection{Property Documentation} +\hypertarget{interface_model_1_1_unit_a9ec349169a911cbd3400fd8ac805bbc9}{}\label{interface_model_1_1_unit_a9ec349169a911cbd3400fd8ac805bbc9} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Alive@{Alive}} +\index{Alive@{Alive}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Alive}{Alive}} +{\footnotesize\ttfamily bool Model.\+Unit.\+Alive\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns whether or not unit is alive \hypertarget{interface_model_1_1_unit_afca346077df4376dc519435f3a192949}{}\label{interface_model_1_1_unit_afca346077df4376dc519435f3a192949} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Def@{Def}} +\index{Def@{Def}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Def}{Def}} +{\footnotesize\ttfamily int Model.\+Unit.\+Def\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Defense \hypertarget{interface_model_1_1_unit_a6768928c4a12dfd60675b830bdc70167}{}\label{interface_model_1_1_unit_a6768928c4a12dfd60675b830bdc70167} +\index{Model\+::\+Unit@{Model\+::\+Unit}!equipped\+Weapon@{equipped\+Weapon}} +\index{equipped\+Weapon@{equipped\+Weapon}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{equipped\+Weapon}{equippedWeapon}} +{\footnotesize\ttfamily \hyperlink{interface_model_1_1_weapon}{Weapon} Model.\+Unit.\+equipped\+Weapon\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns weapon the unit is currently equipping \hypertarget{interface_model_1_1_unit_add5c3b029398346c448bfa3a64f278f1}{}\label{interface_model_1_1_unit_add5c3b029398346c448bfa3a64f278f1} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Hp@{Hp}} +\index{Hp@{Hp}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Hp}{Hp}} +{\footnotesize\ttfamily int Model.\+Unit.\+Hp\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s HP \hypertarget{interface_model_1_1_unit_a9bef9ff10e4fb3d643632c431f1d3cfa}{}\label{interface_model_1_1_unit_a9bef9ff10e4fb3d643632c431f1d3cfa} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Int@{Int}} +\index{Int@{Int}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Int}{Int}} +{\footnotesize\ttfamily int Model.\+Unit.\+Int\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Intelliegence \hypertarget{interface_model_1_1_unit_afdbcc5ed513f2d2ac9b1817b542dcce5}{}\label{interface_model_1_1_unit_afdbcc5ed513f2d2ac9b1817b542dcce5} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Level@{Level}} +\index{Level@{Level}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Level}{Level}} +{\footnotesize\ttfamily int Model.\+Unit.\+Level\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Level \hypertarget{interface_model_1_1_unit_a40c0baa06bc651953048d73599070425}{}\label{interface_model_1_1_unit_a40c0baa06bc651953048d73599070425} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Pixel\+Coordinates@{Pixel\+Coordinates}} +\index{Pixel\+Coordinates@{Pixel\+Coordinates}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Pixel\+Coordinates}{PixelCoordinates}} +{\footnotesize\ttfamily Vector2 Model.\+Unit.\+Pixel\+Coordinates\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +returns the pixel coordinate of the unit \hypertarget{interface_model_1_1_unit_a090b11590e5dbfa1a064c21d831d0a3b}{}\label{interface_model_1_1_unit_a090b11590e5dbfa1a064c21d831d0a3b} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Position@{Position}} +\index{Position@{Position}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Position}{Position}} +{\footnotesize\ttfamily Tuple$<$int, int$>$ Model.\+Unit.\+Position\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +gets and sets unit\textquotesingle{}s position by tile \hypertarget{interface_model_1_1_unit_acc73a95a98cadd660da4df26aa1dab22}{}\label{interface_model_1_1_unit_acc73a95a98cadd660da4df26aa1dab22} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Res@{Res}} +\index{Res@{Res}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Res}{Res}} +{\footnotesize\ttfamily int Model.\+Unit.\+Res\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Resistance \hypertarget{interface_model_1_1_unit_aacecaa31661bd95dcc36bde480a2ea81}{}\label{interface_model_1_1_unit_aacecaa31661bd95dcc36bde480a2ea81} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Skill@{Skill}} +\index{Skill@{Skill}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Skill}{Skill}} +{\footnotesize\ttfamily int Model.\+Unit.\+Skill\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Skill \hypertarget{interface_model_1_1_unit_aecee4e038fc518751386c525331ac920}{}\label{interface_model_1_1_unit_aecee4e038fc518751386c525331ac920} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Speed@{Speed}} +\index{Speed@{Speed}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Speed}{Speed}} +{\footnotesize\ttfamily int Model.\+Unit.\+Speed\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Speed \hypertarget{interface_model_1_1_unit_a3d1d61e9c50cb7e005343a17bd9eff17}{}\label{interface_model_1_1_unit_a3d1d61e9c50cb7e005343a17bd9eff17} +\index{Model\+::\+Unit@{Model\+::\+Unit}!Str@{Str}} +\index{Str@{Str}!Model\+::\+Unit@{Model\+::\+Unit}} +\subsubsection{\texorpdfstring{Str}{Str}} +{\footnotesize\ttfamily int Model.\+Unit.\+Str\hspace{0.3cm}{\ttfamily [get]}, {\ttfamily [set]}} + +Sets and returns a unit\textquotesingle{}s Strength + +The documentation for this interface was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Unit.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/interface_model_1_1_weapon.eps b/Doc/MIS/latex/interface_model_1_1_weapon.eps new file mode 100644 index 0000000000000000000000000000000000000000..6ed1866bee0dde57c6cc511b15c06b8c4d906c0c --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_weapon.eps @@ -0,0 +1,207 @@ +%!PS-Adobe-2.0 EPSF-2.0 +%%Title: ClassName +%%Creator: Doxygen +%%CreationDate: Time +%%For: +%Magnification: 1.00 +%%Orientation: Portrait +%%BoundingBox: 0 0 500 98.765432 +%%Pages: 0 +%%BeginSetup +%%EndSetup +%%EndComments + +% ----- variables ----- + +/boxwidth 0 def +/boxheight 40 def +/fontheight 24 def +/marginwidth 10 def +/distx 20 def +/disty 40 def +/boundaspect 5.062500 def % aspect ratio of the BoundingBox (width/height) +/boundx 500 def +/boundy boundx boundaspect div def +/xspacing 0 def +/yspacing 0 def +/rows 2 def +/cols 3 def +/scalefactor 0 def +/boxfont /Times-Roman findfont fontheight scalefont def + +% ----- procedures ----- + +/dotted { [1 4] 0 setdash } def +/dashed { [5] 0 setdash } def +/solid { [] 0 setdash } def + +/max % result = MAX(arg1,arg2) +{ + /a exch def + /b exch def + a b gt {a} {b} ifelse +} def + +/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2) +{ + 0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max +} def + +/cw % boxwidth = MAX(boxwidth, stringwidth(arg1)) +{ + /str exch def + /boxwidth boxwidth str stringwidth pop max def +} def + +/box % draws a box with text `arg1' at grid pos (arg2,arg3) +{ gsave + 2 setlinewidth + newpath + exch xspacing mul xoffset add + exch yspacing mul + moveto + boxwidth 0 rlineto + 0 boxheight rlineto + boxwidth neg 0 rlineto + 0 boxheight neg rlineto + closepath + dup stringwidth pop neg boxwidth add 2 div + boxheight fontheight 2 div sub 2 div + rmoveto show stroke + grestore +} def + +/mark +{ newpath + exch xspacing mul xoffset add boxwidth add + exch yspacing mul + moveto + 0 boxheight 4 div rlineto + boxheight neg 4 div boxheight neg 4 div rlineto + closepath + eofill + stroke +} def + +/arrow +{ newpath + moveto + 3 -8 rlineto + -6 0 rlineto + 3 8 rlineto + closepath + eofill + stroke +} def + +/out % draws an output connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight add + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/in % draws an input connector for the block at (arg1,arg2) +{ + newpath + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul disty 2 div sub + /y exch def + /x exch def + x y moveto + 0 disty 2 div rlineto + stroke + 1 eq { x y disty 2 div add arrow } if +} def + +/hedge +{ + exch xspacing mul xoffset add boxwidth 2 div add + exch yspacing mul boxheight 2 div sub + /y exch def + /x exch def + newpath + x y moveto + boxwidth 2 div distx add 0 rlineto + stroke + 1 eq + { newpath x boxwidth 2 div distx add add y moveto + -8 3 rlineto + 0 -6 rlineto + 8 3 rlineto + closepath + eofill + stroke + } if +} def + +/vedge +{ + /ye exch def + /ys exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add dup + ys yspacing mul boxheight 2 div sub + moveto + ye yspacing mul boxheight 2 div sub + lineto + stroke +} def + +/conn % connections the blocks from col `arg1' to `arg2' of row `arg3' +{ + /ys exch def + /xe exch def + /xs exch def + newpath + xs xspacing mul xoffset add boxwidth 2 div add + ys yspacing mul disty 2 div sub + moveto + xspacing xe xs sub mul 0 + rlineto + stroke +} def + +% ----- main ------ + +boxfont setfont +1 boundaspect scale +(Model.Weapon) cw +(Model.BronzeBow) cw +(Model.BronzeSword) cw +(Model.Fireball) cw +/boxwidth boxwidth marginwidth 2 mul add def +/xspacing boxwidth distx add def +/yspacing boxheight disty add def +/scalefactor + boxwidth cols mul distx cols 1 sub mul add + boxheight rows mul disty rows 1 sub mul add boundaspect mul + max def +boundx scalefactor div boundy scalefactor div scale + +% ----- classes ----- + + (Model.Weapon) 1.000000 1.000000 box + (Model.BronzeBow) 0.000000 0.000000 box + (Model.BronzeSword) 1.000000 0.000000 box + (Model.Fireball) 2.000000 0.000000 box + +% ----- relations ----- + +solid +1 1.000000 0.250000 out +solid +0.000000 2.000000 1.000000 conn +solid +0 0.000000 0.750000 in +solid +0 1.000000 0.750000 in +solid +0 2.000000 0.750000 in diff --git a/Doc/MIS/latex/interface_model_1_1_weapon.pdf b/Doc/MIS/latex/interface_model_1_1_weapon.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8ce7c762fb34a71a3f215b42391e46a68a483e23 --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_weapon.pdf @@ -0,0 +1,96 @@ +%PDF-1.5 +%Çì¢ +5 0 obj +<</Length 6 0 R/Filter /FlateDecode>> +stream +xœ‘=OÃ@†wÿ +À`Î>ß× ˜J#1—6Š’††¡¿žKÛôC¥Ý`ýÚÏë»5b4ýÙÇi÷/Ÿ`pkàm÷aÚ`QfADd’g,ç°kdä”s^Ñ{J.E,¸yngUM¯Õä£]Ý–ïðPÂXIÔÜdÆpÈwöè|¢ò˜|B‰JÉ*vŒiÄ’$ï0Q +âý‰‘¢kW_UÑn^¶'†HNù*q¼i»ÙqÿýÆÿA¶ÁÍ.ÉË®z›ÔõkU"Y¾† Äbmÿ+âŒA•@j›Ýuø:+Ï}]˜r£c¡m–ˆæ÷ðö4s>c~!:Šª'•Ý³™5¨§ÍEßÁÐQr濯“’ŸX#øÂ2¥+endstream +endobj +6 0 obj +294 +endobj +4 0 obj +<</Type/Page/MediaBox [0 0 500 99] +/Parent 3 0 R +/Resources<</ProcSet[/PDF /Text] +/ExtGState 9 0 R +/Font 10 0 R +>> +/Contents 5 0 R +>> +endobj +3 0 obj +<< /Type /Pages /Kids [ +4 0 R +] /Count 1 +>> +endobj +1 0 obj +<</Type /Catalog /Pages 3 0 R +/Metadata 11 0 R +>> +endobj +7 0 obj +<</Type/ExtGState +/OPM 1>>endobj +9 0 obj +<</R7 +7 0 R>> +endobj +10 0 obj +<</R8 +8 0 R>> +endobj +8 0 obj +<</BaseFont/Times-Roman/Type/Font +/Subtype/Type1>> +endobj +11 0 obj +<</Type/Metadata +/Subtype/XML/Length 1402>>stream +<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> +<?adobe-xap-filters esc="CRLF"?> +<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> +<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-9a65f8e301e9' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='MiKTeX GPL Ghostscript 9.19'/> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-9a65f8e301e9' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2016-11-07T18:28:14-05:00</xmp:ModifyDate> +<xmp:CreateDate>2016-11-07T18:28:14-05:00</xmp:CreateDate> +<xmp:CreatorTool>Doxygen</xmp:CreatorTool></rdf:Description> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-9a65f8e301e9' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:5a8331cc-a79d-11e6-0000-9a65f8e301e9'/> +<rdf:Description rdf:about='uuid:5a8331cc-a79d-11e6-0000-9a65f8e301e9' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>ClassName</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description> +</rdf:RDF> +</x:xmpmeta> + + +<?xpacket end='w'?> +endstream +endobj +2 0 obj +<</Producer(MiKTeX GPL Ghostscript 9.19) +/CreationDate(D:20161107182814-05'00') +/ModDate(D:20161107182814-05'00') +/Title(ClassName) +/Creator(Doxygen) +/Author()>>endobj +xref +0 12 +0000000000 65535 f +0000000606 00000 n +0000002316 00000 n +0000000547 00000 n +0000000398 00000 n +0000000015 00000 n +0000000379 00000 n +0000000671 00000 n +0000000771 00000 n +0000000712 00000 n +0000000741 00000 n +0000000837 00000 n +trailer +<< /Size 12 /Root 1 0 R /Info 2 0 R +/ID [<7321400964E24C2458D2F29BBF46BF48><7321400964E24C2458D2F29BBF46BF48>] +>> +startxref +2492 +%%EOF diff --git a/Doc/MIS/latex/interface_model_1_1_weapon.tex b/Doc/MIS/latex/interface_model_1_1_weapon.tex new file mode 100644 index 0000000000000000000000000000000000000000..7f17af21eebbeb06d883b0438fef54b10dce1405 --- /dev/null +++ b/Doc/MIS/latex/interface_model_1_1_weapon.tex @@ -0,0 +1,69 @@ +\hypertarget{interface_model_1_1_weapon}{}\section{Model.\+Weapon Interface Reference} +\label{interface_model_1_1_weapon}\index{Model.\+Weapon@{Model.\+Weapon}} + + +\hyperlink{interface_model_1_1_weapon}{Weapon} Interface to be implemented when creating new weapons. + + +Inheritance diagram for Model.\+Weapon\+:\begin{figure}[H] +\begin{center} +\leavevmode +\includegraphics[height=2.000000cm]{interface_model_1_1_weapon} +\end{center} +\end{figure} +\subsection*{Properties} +\begin{DoxyCompactItemize} +\item +String \hyperlink{interface_model_1_1_weapon_a09f71c2dd3100e08a5d9cfc685e990e8}{name}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \hyperlink{interface_model_1_1_weapon_ae257017428d45a9d5d0de7071565c027}{mod\+Str}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \hyperlink{interface_model_1_1_weapon_a1ef41fea09be5beda6c21594fd648a5c}{mod\+Int}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \hyperlink{interface_model_1_1_weapon_ab9c4d1b5151aedba51ddfd187d2b98ab}{mod\+Skill}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\item +int \mbox{[}$\,$\mbox{]} \hyperlink{interface_model_1_1_weapon_acb042377d7f54c710d4f1e4a7299a2b8}{range}\hspace{0.3cm}{\ttfamily \mbox{[}get\mbox{]}} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +\hyperlink{interface_model_1_1_weapon}{Weapon} Interface to be implemented when creating new weapons. + +This is the interface to be used when creating new weapons. The only differences in weapons will be their statistics. + +\subsection{Property Documentation} +\hypertarget{interface_model_1_1_weapon_a1ef41fea09be5beda6c21594fd648a5c}{}\label{interface_model_1_1_weapon_a1ef41fea09be5beda6c21594fd648a5c} +\index{Model\+::\+Weapon@{Model\+::\+Weapon}!mod\+Int@{mod\+Int}} +\index{mod\+Int@{mod\+Int}!Model\+::\+Weapon@{Model\+::\+Weapon}} +\subsubsection{\texorpdfstring{mod\+Int}{modInt}} +{\footnotesize\ttfamily int Model.\+Weapon.\+mod\+Int\hspace{0.3cm}{\ttfamily [get]}} + +Returns the weapon intelligence. \hypertarget{interface_model_1_1_weapon_ab9c4d1b5151aedba51ddfd187d2b98ab}{}\label{interface_model_1_1_weapon_ab9c4d1b5151aedba51ddfd187d2b98ab} +\index{Model\+::\+Weapon@{Model\+::\+Weapon}!mod\+Skill@{mod\+Skill}} +\index{mod\+Skill@{mod\+Skill}!Model\+::\+Weapon@{Model\+::\+Weapon}} +\subsubsection{\texorpdfstring{mod\+Skill}{modSkill}} +{\footnotesize\ttfamily int Model.\+Weapon.\+mod\+Skill\hspace{0.3cm}{\ttfamily [get]}} + +Returns the weapon skill. \hypertarget{interface_model_1_1_weapon_ae257017428d45a9d5d0de7071565c027}{}\label{interface_model_1_1_weapon_ae257017428d45a9d5d0de7071565c027} +\index{Model\+::\+Weapon@{Model\+::\+Weapon}!mod\+Str@{mod\+Str}} +\index{mod\+Str@{mod\+Str}!Model\+::\+Weapon@{Model\+::\+Weapon}} +\subsubsection{\texorpdfstring{mod\+Str}{modStr}} +{\footnotesize\ttfamily int Model.\+Weapon.\+mod\+Str\hspace{0.3cm}{\ttfamily [get]}} + +Returns the weapon strength. \hypertarget{interface_model_1_1_weapon_a09f71c2dd3100e08a5d9cfc685e990e8}{}\label{interface_model_1_1_weapon_a09f71c2dd3100e08a5d9cfc685e990e8} +\index{Model\+::\+Weapon@{Model\+::\+Weapon}!name@{name}} +\index{name@{name}!Model\+::\+Weapon@{Model\+::\+Weapon}} +\subsubsection{\texorpdfstring{name}{name}} +{\footnotesize\ttfamily String Model.\+Weapon.\+name\hspace{0.3cm}{\ttfamily [get]}} + +Returns the name of the weapon. \hypertarget{interface_model_1_1_weapon_acb042377d7f54c710d4f1e4a7299a2b8}{}\label{interface_model_1_1_weapon_acb042377d7f54c710d4f1e4a7299a2b8} +\index{Model\+::\+Weapon@{Model\+::\+Weapon}!range@{range}} +\index{range@{range}!Model\+::\+Weapon@{Model\+::\+Weapon}} +\subsubsection{\texorpdfstring{range}{range}} +{\footnotesize\ttfamily int \mbox{[}$\,$\mbox{]} Model.\+Weapon.\+range\hspace{0.3cm}{\ttfamily [get]}} + +Return the range of the weapon, where range\mbox{[}minimum range, maximum range\mbox{]}. + +The documentation for this interface was generated from the following file\+:\begin{DoxyCompactItemize} +\item +C\+:/\+Users/chaos/\+Documents/\+Blaze-\/\+Brigade/src/\+Blaze-\/\+Brigade/\+Blaze\+\_\+\+Brigade/Weapon.\+cs\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/make.bat b/Doc/MIS/latex/make.bat new file mode 100644 index 0000000000000000000000000000000000000000..afcb4f72d6e4c8a796757b9a0e8d77d1a801ca53 --- /dev/null +++ b/Doc/MIS/latex/make.bat @@ -0,0 +1,30 @@ +set Dir_Old=%cd% +cd /D %~dp0 + +del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf + +pdflatex refman +echo ---- +makeindex refman.idx +echo ---- +pdflatex refman + +setlocal enabledelayedexpansion +set count=8 +:repeat +set content=X +for /F "tokens=*" %%T in ( 'findstr /C:"Rerun LaTeX" refman.log' ) do set content="%%~T" +if !content! == X for /F "tokens=*" %%T in ( 'findstr /C:"Rerun to get cross-references right" refman.log' ) do set content="%%~T" +if !content! == X goto :skip +set /a count-=1 +if !count! EQU 0 goto :skip + +echo ---- +pdflatex refman +goto :repeat +:skip +endlocal +makeindex refman.idx +pdflatex refman +cd /D %Dir_Old% +set Dir_Old= diff --git a/Doc/MIS/latex/namespace_blaze___brigade.tex b/Doc/MIS/latex/namespace_blaze___brigade.tex new file mode 100644 index 0000000000000000000000000000000000000000..7e6398e5bfb2aac0deb3f36a98a4bc3c3cff99b5 --- /dev/null +++ b/Doc/MIS/latex/namespace_blaze___brigade.tex @@ -0,0 +1,7 @@ +\hypertarget{namespace_blaze___brigade}{}\section{Blaze\+\_\+\+Brigade Namespace Reference} +\label{namespace_blaze___brigade}\index{Blaze\+\_\+\+Brigade@{Blaze\+\_\+\+Brigade}} +\subsection*{Classes} +\begin{DoxyCompactItemize} +\item +class {\bfseries Resource1} +\begin{DoxyCompactList}\small\item\em A strongly-\/typed resource class, for looking up localized strings, etc. \end{DoxyCompactList}\end{DoxyCompactItemize} diff --git a/Doc/MIS/latex/namespace_controller.tex b/Doc/MIS/latex/namespace_controller.tex new file mode 100644 index 0000000000000000000000000000000000000000..3fa20886c88e7c210882538b80de41222581dec3 --- /dev/null +++ b/Doc/MIS/latex/namespace_controller.tex @@ -0,0 +1,21 @@ +\hypertarget{namespace_controller}{}\section{Controller Namespace Reference} +\label{namespace_controller}\index{Controller@{Controller}} + + +The controller in M\+VC. These classes will control how the \hyperlink{namespace_model}{Model} is used, and how the \hyperlink{namespace_view}{View} will be displayed to the user. + + +\subsection*{Classes} +\begin{DoxyCompactItemize} +\item +class \hyperlink{class_controller_1_1_game}{Game} +\begin{DoxyCompactList}\small\item\em Main \hyperlink{namespace_controller}{Controller} for game \end{DoxyCompactList}\item +class \hyperlink{class_controller_1_1_game_function}{Game\+Function} +\begin{DoxyCompactList}\small\item\em Contains functions pertaining to the general game. \end{DoxyCompactList}\item +class \hyperlink{class_controller_1_1_mouse_handler}{Mouse\+Handler} +\begin{DoxyCompactList}\small\item\em Handles all user mouse input. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The controller in M\+VC. These classes will control how the \hyperlink{namespace_model}{Model} is used, and how the \hyperlink{namespace_view}{View} will be displayed to the user. + diff --git a/Doc/MIS/latex/namespace_model.tex b/Doc/MIS/latex/namespace_model.tex new file mode 100644 index 0000000000000000000000000000000000000000..dced2adf5d92eb2e60b6c5922b79560239d7ae88 --- /dev/null +++ b/Doc/MIS/latex/namespace_model.tex @@ -0,0 +1,90 @@ +\hypertarget{namespace_model}{}\section{Model Namespace Reference} +\label{namespace_model}\index{Model@{Model}} + + +The model in M\+VC. These classes contain the structure of the game, and will be controlled by \hyperlink{namespace_controller}{Controller}, and displayed in \hyperlink{namespace_view}{View}. + + +\subsection*{Classes} +\begin{DoxyCompactItemize} +\item +class \hyperlink{class_model_1_1_archer}{Archer} +\begin{DoxyCompactList}\small\item\em The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_bronze_bow}{Bronze\+Bow} +\begin{DoxyCompactList}\small\item\em Ranged physical \hyperlink{interface_model_1_1_weapon}{Weapon}. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_bronze_sword}{Bronze\+Sword} +\begin{DoxyCompactList}\small\item\em Melee Physical \hyperlink{interface_model_1_1_weapon}{Weapon}. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_damage_calculations}{Damage\+Calculations} +\begin{DoxyCompactList}\small\item\em This class calculates all damage related calculations \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_fireball}{Fireball} +\begin{DoxyCompactList}\small\item\em Ranged Magical \hyperlink{interface_model_1_1_weapon}{Weapon}. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_game_state}{Game\+State} +\begin{DoxyCompactList}\small\item\em This class holds states in the scope of the entire gameplay \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_graph}{Graph} +\begin{DoxyCompactList}\small\item\em Structure that represents the game map. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_mage}{Mage} +\begin{DoxyCompactList}\small\item\em The \hyperlink{class_model_1_1_mage}{Mage} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} ~\newline + This \hyperlink{interface_model_1_1_unit}{Unit} has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_node}{Node} +\begin{DoxyCompactList}\small\item\em Structure that represents a tile on the game map grid. \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_player}{Player} +\begin{DoxyCompactList}\small\item\em Represents a \hyperlink{class_model_1_1_player}{Player} in the game. \end{DoxyCompactList}\item +interface \hyperlink{interface_model_1_1_unit}{Unit} +\begin{DoxyCompactList}\small\item\em \hyperlink{interface_model_1_1_unit}{Unit} Interface for \hyperlink{class_model_1_1_warrior}{Warrior}, \hyperlink{class_model_1_1_mage}{Mage}, and \hyperlink{class_model_1_1_archer}{Archer} \end{DoxyCompactList}\item +class \hyperlink{class_model_1_1_warrior}{Warrior} +\begin{DoxyCompactList}\small\item\em The \hyperlink{class_model_1_1_warrior}{Warrior} model class, extends \hyperlink{interface_model_1_1_unit}{Unit} This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance \end{DoxyCompactList}\item +interface \hyperlink{interface_model_1_1_weapon}{Weapon} +\begin{DoxyCompactList}\small\item\em \hyperlink{interface_model_1_1_weapon}{Weapon} Interface to be implemented when creating new weapons. \end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{Enumerations} +\begin{DoxyCompactItemize} +\item +\hypertarget{namespace_model_a37db30f781c99ca4eb226b512958bded}{}\label{namespace_model_a37db30f781c99ca4eb226b512958bded} +enum {\bfseries Game\+Menu\+State} \{ \newline +{\bfseries Main\+Menu}, +{\bfseries How\+To\+Play}, +{\bfseries How\+To\+Play2}, +{\bfseries How\+To\+Play3}, +\newline +{\bfseries Playing}, +{\bfseries Drop\+Down\+Menu}, +{\bfseries Char\+Menu}, +{\bfseries Attack\+Menu} + \} +\item +\hypertarget{namespace_model_abc9786019e8deab9844b28c3d9c58f86}{}\label{namespace_model_abc9786019e8deab9844b28c3d9c58f86} +enum {\bfseries Turn\+State} \{ \newline +{\bfseries Wait}, +{\bfseries Attack\+Menu}, +{\bfseries Attack}, +{\bfseries Move}, +\newline +{\bfseries Items} + \} +\item +enum \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Unit\+Type} \{ {\bfseries Warrior}, +{\bfseries Archer}, +{\bfseries Mage} + \} +\item +\hypertarget{namespace_model_a8329f3bbd64a8419caf4bce32c1478e3}{}\label{namespace_model_a8329f3bbd64a8419caf4bce32c1478e3} +enum {\bfseries Direction} \{ {\bfseries Down}, +{\bfseries Left}, +{\bfseries Right}, +{\bfseries Up} + \} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The model in M\+VC. These classes contain the structure of the game, and will be controlled by \hyperlink{namespace_controller}{Controller}, and displayed in \hyperlink{namespace_view}{View}. + + + +\subsection{Enumeration Type Documentation} +\hypertarget{namespace_model_a68c359d1437f179951c3fe1315410fcf}{}\label{namespace_model_a68c359d1437f179951c3fe1315410fcf} +\index{Model@{Model}!Unit\+Type@{Unit\+Type}} +\index{Unit\+Type@{Unit\+Type}!Model@{Model}} +\subsubsection{\texorpdfstring{Unit\+Type}{UnitType}} +{\footnotesize\ttfamily enum \hyperlink{namespace_model_a68c359d1437f179951c3fe1315410fcf}{Model.\+Unit\+Type}\hspace{0.3cm}{\ttfamily [strong]}} + +defines the possible classes of a unit \ No newline at end of file diff --git a/Doc/MIS/latex/namespace_view.tex b/Doc/MIS/latex/namespace_view.tex new file mode 100644 index 0000000000000000000000000000000000000000..e389d6388e63b917df0c5b676ee9f8123a636b67 --- /dev/null +++ b/Doc/MIS/latex/namespace_view.tex @@ -0,0 +1,47 @@ +\hypertarget{namespace_view}{}\section{View Namespace Reference} +\label{namespace_view}\index{View@{View}} + + +The view in M\+VC. These classes deal with the view that the user sees in the game. + + +\subsection*{Classes} +\begin{DoxyCompactItemize} +\item +class \hyperlink{class_view_1_1_button}{Button} +\begin{DoxyCompactList}\small\item\em Buttons for the drop down menu buttons when selecting units \end{DoxyCompactList}\item +class \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} +\begin{DoxyCompactList}\small\item\em How to Play Menu \end{DoxyCompactList}\item +class \hyperlink{class_view_1_1_how_to_play2}{How\+To\+Play2} +\begin{DoxyCompactList}\small\item\em How to Play Menu 2 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu \end{DoxyCompactList}\item +class \hyperlink{class_view_1_1_how_to_play3}{How\+To\+Play3} +\begin{DoxyCompactList}\small\item\em How to Play Menu 3 is opened with next is clicked on \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} Menu 2 \end{DoxyCompactList}\item +class \hyperlink{class_view_1_1_main_menu}{Main\+Menu} +\begin{DoxyCompactList}\small\item\em The Main Menu class. This window is displayed upon starting game, and can link you to \hyperlink{class_view_1_1_how_to_play}{How\+To\+Play} playing the Game. \end{DoxyCompactList}\end{DoxyCompactItemize} +\subsection*{Enumerations} +\begin{DoxyCompactItemize} +\item +enum \hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{Button\+Type} \{ \newline +{\bfseries Attack}, +{\bfseries Attack\+Confirm}, +{\bfseries Move}, +{\bfseries Items}, +\newline +{\bfseries Wait} + \} +\end{DoxyCompactItemize} + + +\subsection{Detailed Description} +The view in M\+VC. These classes deal with the view that the user sees in the game. + + + +\subsection{Enumeration Type Documentation} +\hypertarget{namespace_view_a422668be256dfc045dfa818cfd90a99e}{}\label{namespace_view_a422668be256dfc045dfa818cfd90a99e} +\index{View@{View}!Button\+Type@{Button\+Type}} +\index{Button\+Type@{Button\+Type}!View@{View}} +\subsubsection{\texorpdfstring{Button\+Type}{ButtonType}} +{\footnotesize\ttfamily enum \hyperlink{namespace_view_a422668be256dfc045dfa818cfd90a99e}{View.\+Button\+Type}\hspace{0.3cm}{\ttfamily [strong]}} + +Enumerated list for the possible button types \ No newline at end of file diff --git a/Doc/MIS/latex/namespaces.tex b/Doc/MIS/latex/namespaces.tex new file mode 100644 index 0000000000000000000000000000000000000000..7f4a034ac3e4a220a6141ffd0a2757b22ae9708a --- /dev/null +++ b/Doc/MIS/latex/namespaces.tex @@ -0,0 +1,7 @@ +\section{Packages} +Here are the packages with brief descriptions (if available)\+:\begin{DoxyCompactList} +\item\contentsline{section}{\hyperlink{namespace_blaze___brigade}{Blaze\+\_\+\+Brigade} }{\pageref{namespace_blaze___brigade}}{} +\item\contentsline{section}{\hyperlink{namespace_controller}{Controller} \\*The controller in M\+VC. These classes will control how the \hyperlink{namespace_model}{Model} is used, and how the \hyperlink{namespace_view}{View} will be displayed to the user. }{\pageref{namespace_controller}}{} +\item\contentsline{section}{\hyperlink{namespace_model}{Model} \\*The model in M\+VC. These classes contain the structure of the game, and will be controlled by \hyperlink{namespace_controller}{Controller}, and displayed in \hyperlink{namespace_view}{View}. }{\pageref{namespace_model}}{} +\item\contentsline{section}{\hyperlink{namespace_view}{View} \\*The view in M\+VC. These classes deal with the view that the user sees in the game. }{\pageref{namespace_view}}{} +\end{DoxyCompactList} diff --git a/Doc/MIS/latex/refman.tex b/Doc/MIS/latex/refman.tex new file mode 100644 index 0000000000000000000000000000000000000000..6cf5a7fb461e4f5ef9124148dfb4835e3a359e0b --- /dev/null +++ b/Doc/MIS/latex/refman.tex @@ -0,0 +1,184 @@ +\documentclass[twoside]{book} + +% Packages required by doxygen +\usepackage{fixltx2e} +\usepackage{calc} +\usepackage{doxygen} +\usepackage[export]{adjustbox} % also loads graphicx +\usepackage{graphicx} +\usepackage[utf8]{inputenc} +\usepackage{makeidx} +\usepackage{multicol} +\usepackage{multirow} +\PassOptionsToPackage{warn}{textcomp} +\usepackage{textcomp} +\usepackage[nointegrals]{wasysym} +\usepackage[table]{xcolor} + +% Font selection +\usepackage[T1]{fontenc} +\usepackage[scaled=.90]{helvet} +\usepackage{courier} +\usepackage{amssymb} +\usepackage{sectsty} +\renewcommand{\familydefault}{\sfdefault} +\allsectionsfont{% + \fontseries{bc}\selectfont% + \color{darkgray}% +} +\renewcommand{\DoxyLabelFont}{% + \fontseries{bc}\selectfont% + \color{darkgray}% +} +\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}} + +% Page & text layout +\usepackage{geometry} +\geometry{% + a4paper,% + top=2.5cm,% + bottom=2.5cm,% + left=2.5cm,% + right=2.5cm% +} +\tolerance=750 +\hfuzz=15pt +\hbadness=750 +\setlength{\emergencystretch}{15pt} +\setlength{\parindent}{0cm} +\setlength{\parskip}{3ex plus 2ex minus 2ex} +\makeatletter +\renewcommand{\paragraph}{% + \@startsection{paragraph}{4}{0ex}{-1.0ex}{1.0ex}{% + \normalfont\normalsize\bfseries\SS@parafont% + }% +} +\renewcommand{\subparagraph}{% + \@startsection{subparagraph}{5}{0ex}{-1.0ex}{1.0ex}{% + \normalfont\normalsize\bfseries\SS@subparafont% + }% +} +\makeatother + +% Headers & footers +\usepackage{fancyhdr} +\pagestyle{fancyplain} +\fancyhead[LE]{\fancyplain{}{\bfseries\thepage}} +\fancyhead[CE]{\fancyplain{}{}} +\fancyhead[RE]{\fancyplain{}{\bfseries\leftmark}} +\fancyhead[LO]{\fancyplain{}{\bfseries\rightmark}} +\fancyhead[CO]{\fancyplain{}{}} +\fancyhead[RO]{\fancyplain{}{\bfseries\thepage}} +\fancyfoot[LE]{\fancyplain{}{}} +\fancyfoot[CE]{\fancyplain{}{}} +\fancyfoot[RE]{\fancyplain{}{\bfseries\scriptsize Generated by Doxygen }} +\fancyfoot[LO]{\fancyplain{}{\bfseries\scriptsize Generated by Doxygen }} +\fancyfoot[CO]{\fancyplain{}{}} +\fancyfoot[RO]{\fancyplain{}{}} +\renewcommand{\footrulewidth}{0.4pt} +\renewcommand{\chaptermark}[1]{% + \markboth{#1}{}% +} +\renewcommand{\sectionmark}[1]{% + \markright{\thesection\ #1}% +} + +% Indices & bibliography +\usepackage{natbib} +\usepackage[titles]{tocloft} +\setcounter{tocdepth}{3} +\setcounter{secnumdepth}{5} +\makeindex + +% Hyperlinks (required, but should be loaded last) +\usepackage{ifpdf} +\ifpdf + \usepackage[pdftex,pagebackref=true]{hyperref} +\else + \usepackage[ps2pdf,pagebackref=true]{hyperref} +\fi +\hypersetup{% + colorlinks=true,% + linkcolor=blue,% + citecolor=blue,% + unicode% +} + +% Custom commands +\newcommand{\clearemptydoublepage}{% + \newpage{\pagestyle{empty}\cleardoublepage}% +} + +\usepackage{caption} +\captionsetup{labelsep=space,justification=centering,font={bf},singlelinecheck=off,skip=4pt,position=top} + +%===== C O N T E N T S ===== + +\begin{document} + +% Titlepage & ToC +\hypersetup{pageanchor=false, + bookmarksnumbered=true, + pdfencoding=unicode + } +\pagenumbering{alph} +\begin{titlepage} +\vspace*{7cm} +\begin{center}% +{\Large Blaze Brigade }\\ +\vspace*{1cm} +{\large Generated by Doxygen 1.8.12}\\ +\end{center} +\end{titlepage} +\clearemptydoublepage +\pagenumbering{roman} +\tableofcontents +\clearemptydoublepage +\pagenumbering{arabic} +\hypersetup{pageanchor=true} + +%--- Begin generated contents --- +\chapter{Namespace Index} +\input{namespaces} +\chapter{Hierarchical Index} +\input{hierarchy} +\chapter{Class Index} +\input{annotated} +\chapter{Namespace Documentation} +\input{namespace_blaze___brigade} +\input{namespace_controller} +\input{namespace_model} +\input{namespace_view} +\chapter{Class Documentation} +\input{class_model_1_1_archer} +\input{class_model_1_1_bronze_bow} +\input{class_model_1_1_bronze_sword} +\input{class_view_1_1_button} +\input{class_model_1_1_damage_calculations} +\input{class_model_1_1_fireball} +\input{class_controller_1_1_game} +\input{class_controller_1_1_game_function} +\input{class_model_1_1_game_state} +\input{class_model_1_1_graph} +\input{class_view_1_1_how_to_play} +\input{class_view_1_1_how_to_play2} +\input{class_view_1_1_how_to_play3} +\input{class_model_1_1_mage} +\input{class_view_1_1_main_menu} +\input{class_controller_1_1_mouse_handler} +\input{class_model_1_1_node} +\input{class_model_1_1_player} +\input{interface_model_1_1_unit} +\input{class_model_1_1_warrior} +\input{interface_model_1_1_weapon} +%--- End generated contents --- + +% Index +\backmatter +\newpage +\phantomsection +\clearemptydoublepage +\addcontentsline{toc}{chapter}{Index} +\printindex + +\end{document} diff --git a/src/Blaze-Brigade/Blaze_Brigade/Archer.cs b/src/Blaze-Brigade/Blaze_Brigade/Archer.cs index c7cab78627dcc09cbea8d74aa7b22a629f0e490e..62506abf8659d772791b60311cf39645b15b7892 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Archer.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Archer.cs @@ -2,11 +2,454 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework; + +using View; +using System.Diagnostics; namespace Model { - class Archer + /// <summary> + /// The Warrior model class, extends Unit + /// This unit has a high skill and speed, and excels in dealing accurate ranged, high critical, physical attacks, but suffers from overall defense against physical attacks. + /// </summary> + class Archer : Unit { - // TODO + /** + Sets and returns whether or not unit is alive + */ + public bool Alive { get; set; } + /** + Sets and returns a unit's HP + */ + public int Hp { get; set; } + private int str; // unit strength + private int intelligence; // unit intelliegence + private int skill; // unit skill + /** + Sets and returns a unit's Speed + */ + public int Speed { get; set; } + /** + Sets and returns a unit's Defense + */ + public int Def { get; set; } + /** + Sets and returns a unit's Resistance + */ + public int Res { get; set; } + /** + Sets and returns a unit's Level + */ + public int Level { get; set; } + private readonly int movability = 4; // Warrior movement is permanently set to 4 + private Weapon[] equipableWeapons; // Array of all equipable weapons + /** + returns weapon the unit is currently equipping + */ + public Weapon equippedWeapon { get; set; } + private Texture2D spriteImage; // the char sprite + private Vector2 pixelCoordinates; // the pixel coordinate of the unit + private Tuple<int, int> position; // the tile location of the unit + private Button[] buttons = new Button[5]; // the buttons associated with the unit + private Texture2D charInfo, charAttackInfo; // The character and attack info textures + private int currentFrame; // the current frame the sprite is on + private int player; // which player this unit belongs to + + /** + * The constructor for Unit Warrior + * @param spriteImage The character sprite + * @param attackButton The dropdownmenu attack button texture + * @param moveButton The dropdownmenu move button texture + * @param itemButton The dropdownmenu item button texture + * @param waitButton The dropdownmenu wait button texture + * @param confirmButton The attack confirm button texture + * @param charInfo The character info popup texture + * @param charAttackInfo The character attack menu popup texture + * @param coordinates The unit's current coordinate on screen + * @param player The player of which the unit belongs to + */ + public Archer(Texture2D spriteImage, Button attackButton, Button moveButton, + Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, + Texture2D charAttackInfo, Vector2 coordinates, int player) + { + this.spriteImage = spriteImage; + buttons[0] = attackButton; + buttons[1] = moveButton; + buttons[2] = itemButton; + buttons[3] = waitButton; + buttons[4] = confirmButton; + this.charInfo = charInfo; + this.charAttackInfo = charAttackInfo; + this.player = player; + pixelCoordinates = coordinates; + int positionX = (int)Math.Round(coordinates.X / 32); + int positionY = (int)Math.Round(coordinates.Y / 32); + position = new Tuple<int, int>(positionX, positionY); + currentFrame = 1; + setButtonCoordinates(pixelCoordinates); + setInitialStats(); //sets initial warrior stats + } + + //sets initial unit stats + public void setInitialStats() + { + Alive = true; + Level = 1; + Hp = 9; + Str = 5; + Int = 1; + Skill = 10; + Speed = 11; + Def = 6; + Res = 7; + } + + /* + Sets the new strength value + \n Gets the effective strength -> Unit strength + weapon strength + */ + public int Str + { + get + { + return str + equippedWeapon.modStr; + } + set + { + str = value; + } + } + + /* + Sets the new intelligence value + \n Gets the effective intelligence -> Unit intelligence + weapon intelligence + */ + public int Int + { + get + { + return intelligence + equippedWeapon.modInt; + } + set + { + intelligence = value; + } + } + + /* + Sets the new skill value + \n Gets the effective skill -> Unit skill + weapon skill + */ + public int Skill + { + get + { + return skill + equippedWeapon.modSkill; + } + set + { + skill = value; + } + } + + /** + Returns the unit's movability range on grid (number of spaces the unit can move in one turn) + */ + public int getMovability() + { + return movability; + } + + /** + returns all stats as an array + */ + public int[] getStats() + { + int[] allStats = new int[7]; + allStats[0] = Level; + allStats[1] = Str; + allStats[2] = Int; + allStats[3] = Skill; + allStats[4] = Speed; + allStats[5] = Def; + allStats[6] = Res; + return allStats; + } + + public Weapon[] getEquipableWeapons() + { + return equipableWeapons; + } + + /** + returns unit's class (warrior, mage, archer) + */ + public UnitType getClass() + { + return UnitType.Warrior; + } + + /** + returns the sprite image of the unit + */ + public Texture2D getSpriteImage() + { + return spriteImage; + } + + /** + returns the button texture at index i + */ + public Texture2D getButtonImage(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: // if attack clicked + return buttons[0].getImage(); + case ButtonType.Move: // if moved is clicked + return buttons[1].getImage(); + case ButtonType.Items: // if item is clicked + return buttons[2].getImage(); + case ButtonType.Wait: // if wait is clicked + return buttons[3].getImage(); + case ButtonType.AttackConfirm: + return buttons[4].getImage(); + default: + return null; + } + } + + /** + indicates whether a button has already been previously selected or not + */ + public bool isButtonActive(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: + return buttons[0].Active; + case ButtonType.Move: + return buttons[1].Active; + case ButtonType.Items: + return buttons[2].Active; + case ButtonType.Wait: + return buttons[3].Active; + case ButtonType.AttackConfirm: + return buttons[4].Active; + + default: + return false; + } + } + + /** + returns the char info screen texture + */ + public Texture2D getCharInfo() + { + return charInfo; + } + + /** + returns the char attack info screen texture + */ + public Texture2D getCharAttackInfo() + { + return charAttackInfo; + } + + /** + gets and sets unit's position by tile + */ + public Tuple<int, int> Position + { + get + { + return position; + } + set + { + position = value; + pixelCoordinates = new Vector2(value.Item1 * 32, value.Item2 * 32); + } + } + + /** + returns the pixel coordinate of the unit + \n sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) + */ + public Vector2 PixelCoordinates + { + get + { + return pixelCoordinates; + } + set + { + pixelCoordinates = value; + int positionX = (int)Math.Round(PixelCoordinates.X / 32); + int positionY = (int)Math.Round(PixelCoordinates.Y / 32); + position = new Tuple<int, int>(positionX, positionY); + } + } + + /** + returns the dropdown menu buttons of the unit + */ + public Button[] getButtons() + { + return buttons; + } + + /** + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + */ + public Button getButtonOfType(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: + return buttons[0]; + case ButtonType.Move: + return buttons[1]; + case ButtonType.Items: + return buttons[2]; + case ButtonType.Wait: + return buttons[3]; + case ButtonType.AttackConfirm: + return buttons[4]; + + default: + return null; + } + } + + /** + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + */ + public void setButtonCoordinates(Vector2 pixelCoordinates) + { + int increment = 0; + foreach (Button button in buttons) + { + if (button.Active) + { + if (button.getButtonType() != ButtonType.AttackConfirm) + { + button.setPixelCoordinates((int)(pixelCoordinates.X + 32), (int)(pixelCoordinates.Y + (increment * 32))); + increment++; + } + else if (GameState.attackConfirmOpen) + { + button.setPixelCoordinates((int)(pixelCoordinates.X + 32), (int)(pixelCoordinates.Y)); + } + } + } + } + + /** + returns the current sprite frame in animation sequence + */ + public Rectangle getCurrentFrame() //return current frame the sprite is on + { + Rectangle screenBounds = new Rectangle(currentFrame * 32, 0, 32, 32); + return screenBounds; + } + + /** + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + */ + public void animate(Direction direction) + { + + #region Walking Down + if (direction == Direction.Down) // for going down + { + if (currentFrame > 2) // if unit isnt already going down, set the sprite to default facing downwards + { + currentFrame = 1; + } + else + { + if (currentFrame == 2) // if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 0; + } + else + { + currentFrame++; // increment through walk cycle + } + } + } + #endregion + + #region Walking Left + else if (direction == Direction.Left) // for going left + { + if ((currentFrame < 3) || (currentFrame > 5)) // if unit isnt already going left, set the sprite to default facing left + { + currentFrame = 4; + } + else + { + if (currentFrame == 5) // if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 3; + } + else + { + currentFrame++; //increment walk cycle + } + } + } + #endregion + + #region Walking Right + else if (direction == Direction.Right) // for going right + { + if ((currentFrame < 6) || (currentFrame > 8)) // if unit isnt already going right, set the sprite to default facing right + { + currentFrame = 7;//increment walk cycle + } + else + { + if (currentFrame == 8)// if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 6; + } + else + { + currentFrame++; + } + } + } + #endregion + + #region Walking Up + else if (direction == Direction.Up) // for going up + { + if (currentFrame < 9) // if unit isnt already going up, set the sprite to default facing upwards + { + currentFrame = 10;//increment walk cycle + } + else + { + if (currentFrame == 11)// if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 9;//increment walk cycle + } + else + { + currentFrame++; + } + } + } + #endregion + } } } diff --git a/src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj b/src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj index ca7fa0feb67474051424ec40d7d2a1b3ca20b80b..e1a4dc244c1dab0b88e6a6719d12b5db95371655 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj +++ b/src/Blaze-Brigade/Blaze_Brigade/Blaze_Brigade.csproj @@ -69,12 +69,6 @@ <ItemGroup> <Compile Include="Archer.cs" /> <Compile Include="BronzeBow.cs" /> - <Compile Include="CharInfoScreen.cs"> - <SubType>Form</SubType> - </Compile> - <Compile Include="CharInfoScreen.Designer.cs"> - <DependentUpon>CharInfoScreen.cs</DependentUpon> - </Compile> <Compile Include="BronzeSword.cs" /> <Compile Include="DamageCalculations.cs" /> <Compile Include="Fireball.cs" /> @@ -170,9 +164,6 @@ </ProjectReference> </ItemGroup> <ItemGroup> - <EmbeddedResource Include="CharInfoScreen.resx"> - <DependentUpon>CharInfoScreen.cs</DependentUpon> - </EmbeddedResource> <EmbeddedResource Include="HowToPlay.resx"> <DependentUpon>HowToPlay.cs</DependentUpon> </EmbeddedResource> diff --git a/src/Blaze-Brigade/Blaze_Brigade/BronzeBow.cs b/src/Blaze-Brigade/Blaze_Brigade/BronzeBow.cs index a41a0e94acdcdc9f4feb81d01b32ca8b2c378746..ce396f1ff71199a82601d74d8754a5b9a072ed9b 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/BronzeBow.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/BronzeBow.cs @@ -6,7 +6,7 @@ using System.Text; namespace Model { /// <summary> - /// Ranged weapon. + /// Ranged physical Weapon. /// </summary> /** diff --git a/src/Blaze-Brigade/Blaze_Brigade/BronzeSword.cs b/src/Blaze-Brigade/Blaze_Brigade/BronzeSword.cs index 5f10ae04bc8b338c798a26114b93be6982ae8f20..5d8e739152abaa13dfa32ec2d74c4b56d9665bf8 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/BronzeSword.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/BronzeSword.cs @@ -5,7 +5,7 @@ using System; namespace Model { /// <summary> - /// Melee weapon. + /// Melee Physical Weapon. /// </summary> /** diff --git a/src/Blaze-Brigade/Blaze_Brigade/Button.cs b/src/Blaze-Brigade/Blaze_Brigade/Button.cs index 2ac56c033575ba102dc308b06fea1f1dea853bf5..1c7bcb51e1f0e551d3b32ccb5f3c79e8c392ec2a 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Button.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Button.cs @@ -7,56 +7,69 @@ using Microsoft.Xna.Framework.Graphics; namespace View { - // used for the drop down menu buttons when selecting units + /// <summary> + /// Buttons for the drop down menu buttons when selecting units + /// </summary> class Button { private ButtonType buttonType; // holds the button type - private Vector2 pixelCoordinates; // holds the coordinates of the menu button in question - private Texture2D buttonImage; - private bool isActive; + private Vector2 pixelCoordinates; // holds the coordinates of the menu button in question + private Texture2D buttonImage; // stores the texture for the button + public bool Active { get; set; } // sets and gets whether button is active + /** + Constructor for button + * @param type Which button type + * @param coordinates The pixel coordinate of the button + * @param image The texture for the button + */ public Button(ButtonType type, Vector2 coordinates, Texture2D image) { buttonType = type; pixelCoordinates = coordinates; buttonImage = image; - isActive = true; + Active = true; } + /** + Returns the pixel coordinate of the button + */ public Vector2 getPixelCoordinates() { return pixelCoordinates; } + /** + Returns the button type + */ public ButtonType getButtonType() { return buttonType; } + /** + Returns the button image + */ public Texture2D getImage() { return buttonImage; } + /** + Sets the pixelCoordinate + * @param x The x coordinate of the button + * @param y the y coordinate of the button + */ public void setPixelCoordinates(int x, int y) { Vector2 coordinates = new Vector2(x, y); pixelCoordinates = coordinates; } - - //sets whether this button should be displayed when dropdownmenu is active - public void setActive(bool a) - { - isActive = a; - } - - //returns whether this button is active - public bool getActive() - { - return isActive; - } } + /** + Enumerated list for the possible button types + */ enum ButtonType { Attack, diff --git a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.Designer.cs b/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.Designer.cs deleted file mode 100644 index bd34599d0ea2644bb79bfa05d10df219ca884722..0000000000000000000000000000000000000000 --- a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.Designer.cs +++ /dev/null @@ -1,66 +0,0 @@ -namespace Blaze_Brigade -{ - partial class CharInfoScreen - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(244, 21); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(22, 13); - this.label1.TabIndex = 0; - this.label1.Text = "HP"; - // - // CharInfoScreen - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.DimGray; - this.ClientSize = new System.Drawing.Size(394, 306); - this.ControlBox = false; - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Location = new System.Drawing.Point(600, 300); - this.Name = "CharInfoScreen"; - this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; - this.Text = "Character Info"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.cs b/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.cs deleted file mode 100644 index 7e24e4f0d1fd88a94915d039381ccdedc5869620..0000000000000000000000000000000000000000 --- a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace Blaze_Brigade -{ - public partial class CharInfoScreen : Form - { - public CharInfoScreen() - { - InitializeComponent(); - } - } -} diff --git a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.resx b/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.resx deleted file mode 100644 index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..0000000000000000000000000000000000000000 --- a/src/Blaze-Brigade/Blaze_Brigade/CharInfoScreen.resx +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> -</root> \ No newline at end of file diff --git a/src/Blaze-Brigade/Blaze_Brigade/DamageCalculations.cs b/src/Blaze-Brigade/Blaze_Brigade/DamageCalculations.cs index a15551ec359c87f535c5ac53ea09bed9a1143596..c8510bbdf31803cdc23e3659e7b42d6eb0b34604 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/DamageCalculations.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/DamageCalculations.cs @@ -5,11 +5,17 @@ using System.Text; namespace Model { - //This class deals with all damage calculations dealt by a unit attacking another unit + /// <summary> + /// This class calculates all damage related calculations + /// </summary> static class DamageCalculations { - - //passes in the 2 units, and a boolean on whether attack is physical (false), or magical (true), and returns damage dealt by taking into account an attacker's str/int, and defender def/res + /** + passes in the 2 units, and a boolean on whether attack is physical (false), or magical (true), and returns damage dealt by taking into account an attacker's str/int, and defender def/res + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + *@param physOrMagic Boolean that tells the controller if it's physical or magical damage to be calculated + */ public static int getDamageDealt(Unit attacker, Unit defender, bool physOrMagic){ if(physOrMagic== false) { @@ -19,22 +25,33 @@ namespace Model { return attacker.Int - defender.Res; //else return magical damage dealt } - } - //passes in the 2 units, and returns the hit rate as a percentage out of 100 by taking into account both unit's skill + /** + passes in the 2 units, and returns the hit rate as a percentage out of 100 by taking into account both unit's skill + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + */ public static int getHitRate(Unit attacker, Unit defender) { return (int) Math.Round( ( ( (attacker.Skill / 10.0) - (defender.Skill / 10.0) + 1.0) * 0.8)*100.0); } - //passes in the 2 units, and returns the crit rate as a percentage out of 100 by taking into account both unit's skill + /** + passes in the 2 units, and returns the crit rate as a percentage out of 100 by taking into account both unit's skill + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + */ public static int getCritRate(Unit attacker, Unit defender) { return (int)Math.Round( ( ( (attacker.Skill / 3.0) - (defender.Skill / 3.0) + 1.0) * 0.1) * 100.0); } - //passes in then 2 units, and determines how many attacks the attacker makes by factoring in both unit's relative speed + /** + passes in then 2 units, and determines how many attacks the attacker makes by factoring in both unit's relative speed + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + */ public static int getHitCount(Unit attacker, Unit defender) { if (attacker.Speed > (defender.Speed + 4)) @@ -46,8 +63,12 @@ namespace Model return 1; //else return 1 } } - - //factors in damage dealt, hit rate, crit rate, and number of attacks (as in how above functions were calculated) to calculate actual damage dealt + /** + factors in damage dealt, hit rate, crit rate, and number of attacks (as in how above functions were calculated) to calculate actual damage dealt + *@param attacker The unit performing the attack + *@param defender The unit defending against the attack + *@param physOrMagic Boolean that tells the controller if it's physical or magical damage to be calculated + */ public static int finalDamage(Unit attacker, Unit defender, bool physOrMagic) { int rawDamage = getDamageDealt(attacker, defender, physOrMagic); diff --git a/src/Blaze-Brigade/Blaze_Brigade/FireBall.cs b/src/Blaze-Brigade/Blaze_Brigade/FireBall.cs index ffdccb9f7ead3d64996a97f3827b18d57abc2800..219fa8668080e435b219d9017082af4f12410f8d 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/FireBall.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/FireBall.cs @@ -6,7 +6,7 @@ using System.Text; namespace Model { /// <summary> - /// Magic based weapon. + /// Ranged Magical Weapon. /// </summary> /** diff --git a/src/Blaze-Brigade/Blaze_Brigade/Game.cs b/src/Blaze-Brigade/Blaze_Brigade/Game.cs index 8efcdddd17a30ae8b995e61ae0a39c1f480fb1d2..6c132c5d9a0bb2c24db5c9f39a9fb1000b59f35c 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Game.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Game.cs @@ -17,7 +17,7 @@ using System.Diagnostics; /// <summary> /// The controller in MVC. These classes will control how the Model is used, and how the -/// view will be displayed to the user. +/// View will be displayed to the user. /// </summary> namespace Controller @@ -72,15 +72,18 @@ namespace Controller tut3 = new HowToPlay3(); } - //initializes game + /** + initializes game + */ protected override void Initialize() { Form MyGameForm = (Form)Form.FromHandle(Window.Handle); // creates handle MyGameForm.Opacity = 0; // hides the game window until it's set to visible base.Initialize(); } - - //loads required textures and values for starting game + /** + loads required textures and values for starting game + */ protected override void LoadContent() { // creates a new SpriteBatch, which can be used to draw textures @@ -122,7 +125,9 @@ namespace Controller } - // Updates game in real time - 60fps + /** + Updates game in real time - 60fps + */ protected override void Update(GameTime gameTime) { #region Exiting Game @@ -229,7 +234,9 @@ namespace Controller base.Update(gameTime); // repeatedly calls update } - //draws the game as it updates + /** + draws the game as it updates + */ protected override void Draw(GameTime gameTime) { spriteBatch.Begin(SpriteSortMode.BackToFront, BlendState.AlphaBlend, null, null, null, null); // begin spriteBatch @@ -303,7 +310,7 @@ namespace Controller unit.setButtonCoordinates(unit.PixelCoordinates); foreach (Button button in unit.getButtons()) { - if (button.getActive() && button.getButtonType() != ButtonType.AttackConfirm) + if (button.Active && button.getButtonType() != ButtonType.AttackConfirm) { spriteBatch.Draw(button.getImage(), button.getPixelCoordinates(), null, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0f); } @@ -376,15 +383,16 @@ namespace Controller Vector2 statLocation2 = new Vector2(235, 535); //starting location for first stat Vector2 increment = new Vector2(0, 20); //increment downwards for each stat Vector2 infoLocation = new Vector2(20, 513); + int[] stats = unit.getStats(); for (int k = 0; k < 4; k++) //for stats - level, str, int, skill, { - spriteBatch.DrawString(font, unit.getStats(k).ToString(), statLocation, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); + spriteBatch.DrawString(font, stats[k].ToString(), statLocation, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); statLocation = statLocation + increment; //increment downwards } for (int t = 4; t < 7; t++) //for stats - speed, defense, resistance { - spriteBatch.DrawString(font, unit.getStats(t).ToString(), statLocation2, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); + spriteBatch.DrawString(font, stats[t].ToString(), statLocation2, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); statLocation2 = statLocation2 + increment; //increment downwards } @@ -400,15 +408,16 @@ namespace Controller Vector2 statLocation2 = new Vector2(860, 533); //starting location for first stat Vector2 increment = new Vector2(0, 20); //increment downwards for each stat Vector2 infoLocation = new Vector2(635, 513); + int[] stats = unit.getStats(); for (int k = 0; k < 4; k++) //for stats - level, str, int, skill, { - spriteBatch.DrawString(font, unit.getStats(k).ToString(), statLocation, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); + spriteBatch.DrawString(font, stats[k].ToString(), statLocation, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); statLocation = statLocation + increment; //increment downwards } for (int t = 4; t < 7; t++) //for stats - speed, defense, resistance { - spriteBatch.DrawString(font, unit.getStats(t).ToString(), statLocation2, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); + spriteBatch.DrawString(font, stats[t].ToString(), statLocation2, Color.White, 0, Vector2.Zero, 1f, SpriteEffects.None, 0.6f); statLocation2 = statLocation2 + increment; //increment downwards } diff --git a/src/Blaze-Brigade/Blaze_Brigade/GameFunction.cs b/src/Blaze-Brigade/Blaze_Brigade/GameFunction.cs index 3b4e3f8ad747fcfd7a6fa0d6a7332f28dc020371..b824c039edf1bbebb076e5de6263ce2a331f7ad0 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/GameFunction.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/GameFunction.cs @@ -58,7 +58,7 @@ namespace Controller if (buttons[i].getButtonType() != ButtonType.Attack || buttons[i].getButtonType() != ButtonType.AttackConfirm) { - buttons[i].setActive(true); + buttons[i].Active=true; } } } diff --git a/src/Blaze-Brigade/Blaze_Brigade/GameState.cs b/src/Blaze-Brigade/Blaze_Brigade/GameState.cs index a8bcb753924e614f5b49074d198a37c0821db031..dbb20f2a21ade1f7520958b30880f5d7a81d2620 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/GameState.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/GameState.cs @@ -5,25 +5,58 @@ using System.Text; namespace Model { - // This class holds states in the scope of the entire gameplay + /// <summary> + /// This class holds states in the scope of the entire gameplay + /// </summary> static class GameState { public static readonly int SCREEN_HEIGHT = 640; public static readonly int SCREEN_WIDTH = 960; - - public static bool playableUnitSelected { get; set; } //indicates playable selected unit - public static Unit selectedUnit { get; set; } // indicates current selected unit - public static Unit unitToAttack { get; set; } // indicates the unit to attack - public static Player currentPlayer { get; set; } // indicates player 1 - public static Player enemyPlayer { get; set; } // indicates enemy player (player 2) - public static bool dropDownMenuOpen { get; set; } // indicates whether drop down menu should be open - public static bool attackConfirmOpen { get; set; } //indicates whether player has selected a unit to attack - public static bool beforeMove { get; set; } // true before unit moves, false after it moves. Used to determine what tiles are highlighted - public static bool isAnimating { get; set; } // indicates whether an animation sequence is on screen - public static LinkedList<Node> moveableNodes { get; set; } // holds moveable nodes that can be retreived without calling path finding + /** + Sets and gets if a playable unit is selected + */ + public static bool playableUnitSelected { get; set; } + /** + Sets and gets a unit + */ + public static Unit selectedUnit { get; set; } + /** + Sets and gets the unit to attack + */ + public static Unit unitToAttack { get; set; } + /** + Sets and gets the current player + */ + public static Player currentPlayer { get; set; } + /** + Sets and gets the enemy player + */ + public static Player enemyPlayer { get; set; } + /** + Sets and gets whether drop down menu should be open + */ + public static bool dropDownMenuOpen { get; set; } + /** + Sets and gets whether attackConfirm menu should be open + */ + public static bool attackConfirmOpen { get; set; } + /** + Sets and gets if a unit has moved yet or not. beforeMOve is true before unit moves, false after it moves. Used to determine what tiles are highlighted + */ + public static bool beforeMove { get; set; } + /* + Sets and gets whether an animation sequence is currently on screen + */ + public static bool isAnimating { get; set; } + /* + Sets and gets movable nodes that can be retrieved without calling path finding + */ + public static LinkedList<Node> moveableNodes { get; set; } } - - enum GameMenuState // enumerated list for different possible Game States + /* + enumerated list for different possible Game States + */ + enum GameMenuState { MainMenu, // menu screen HowToPlay, // Instruction Screen 1 @@ -34,9 +67,11 @@ namespace Model CharMenu, // character drop down info menu AttackMenu // attack menu } - - enum TurnState //what the current turn state is (per unit) - { + /* + enumerated list for what the current turn state is (per unit) + */ + enum TurnState + { Wait, AttackMenu, Attack, diff --git a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.cs b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.cs index 8383897a20d25e3a2a8b66209073da88dabab255..98c944be1acb076a6cc0959164950fcb1405f278 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay.cs @@ -10,48 +10,66 @@ using System.Windows.Forms; namespace View { + /// <summary> + /// How to Play Menu + /// </summary> public partial class HowToPlay : Form { - public bool quit = false; - public bool next = false; - + public bool quit = false; // boolean that checks is quit button is clicked + public bool next = false; // boolean that checks is next button is clicked + /** + Constructor for HowToPlay window + */ public HowToPlay() { InitializeComponent(); } - + /** + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + */ private void Exit_Click(object sender, EventArgs e) { - quit = true; // check if user quits + quit = true; } - - //checks if Game State is no longer inside How To Play + /** + checks if Game State is no longer inside How To Play + */ public void setQuitFalse() { quit = false; } - //returns if quit button is currently clicked + /** + returns if quit button is currently clicked + */ public Boolean getQuit() { return quit; } - + /** + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + */ private void next_Click(object sender, EventArgs e) { next = true; // check if user clicks next } - - //checks if Game State is no longer inside How To Play + /** + checks if Game State is no longer inside How To Play + */ public void setNextFalse() { next = false; } - //returns if quit button is currently clicked + /** + returns if quit button is currently clicked + */ public Boolean getNext() { return next; } - } } diff --git a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.cs b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.cs index 6aaffd9e5562ed4104b9a25fec82f44238f5c9b2..26a56d0b8c84235e0a929f3bc015f064933801ff 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay2.cs @@ -10,44 +10,63 @@ using System.Windows.Forms; namespace View { + /// <summary> + /// How to Play Menu 2 is opened with next is clicked on HowToPlay Menu + /// </summary> public partial class HowToPlay2 : Form { - public bool quit = false; - public bool next = false; - + public bool quit = false; // boolean that checks is quit button is clicked + public bool next = false; // boolean that checks is next button is clicked + /** + Constructor for HowToPlay2 window + */ public HowToPlay2() { InitializeComponent(); } - + /** + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + */ private void Exit_Click(object sender, EventArgs e) { - quit = true; // check if user quits + quit = true; } - - //checks if Game State is no longer inside How To Play + /** + checks if Game State is no longer inside How To Play + */ public void setQuitFalse() { quit = false; } - //returns if quit button is currently clicked + /** + returns if quit button is currently clicked + */ public Boolean getQuit() { return quit; } - + /** + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + */ private void next_Click(object sender, EventArgs e) { next = true; // check if user clicks next } - - //checks if Game State is no longer inside How To Play + /** + checks if Game State is no longer inside How To Play + */ public void setNextFalse() { next = false; } - //returns if quit button is currently clicked + /** + returns if quit button is currently clicked + */ public Boolean getNext() { return next; diff --git a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs index 4b71123fe77db8bce8037299a47f174d24cd82b7..ecd40e7cbdd06ca871e4e436891faa55b28b9823 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/HowToPlay3.cs @@ -10,27 +10,39 @@ using System.Windows.Forms; namespace View { + /// <summary> + /// How to Play Menu 3 is opened with next is clicked on HowToPlay Menu 2 + /// </summary> public partial class HowToPlay3 : Form { - public bool quit = false; - + public bool quit = false; // boolean that checks is quit button is clicked + /** + Constructor for HowToPlay3 window + */ public HowToPlay3() { InitializeComponent(); } - + /** + checks if user clicks quit + * @params sender the object to check + * @params e The event to check for + */ private void Exit_Click(object sender, EventArgs e) { - quit = true; // check if user quits + quit = true; } - - //checks if Game State is no longer inside How To Play + /** + checks if Game State is no longer inside How To Play + */ public void setQuitFalse() { quit = false; } - //returns if quit button is currently clicked + /** + returns if quit button is currently clicked + */ public Boolean getQuit() { return quit; diff --git a/src/Blaze-Brigade/Blaze_Brigade/Mage.cs b/src/Blaze-Brigade/Blaze_Brigade/Mage.cs index df0af424c14ca4372c5e048f79185add218c6638..58df34612f065ba209e91c2dd98ab88be0a95a20 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Mage.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Mage.cs @@ -2,11 +2,454 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework; + +using View; +using System.Diagnostics; namespace Model { - class Mage + /// <summary> + /// The Mage model class, extends Unit + /// \n This Unit has strong magical capabilities, and is capable of powerful ranged magic attacks, but makes up with poor physical stats + /// </summary> + class Mage : Unit { - // TODO + /** + Sets and returns whether or not unit is alive + */ + public bool Alive { get; set; } + /** + Sets and returns a unit's HP + */ + public int Hp { get; set; } + private int str; // unit strength + private int intelligence; // unit intelliegence + private int skill; // unit skill + /** + Sets and returns a unit's Speed + */ + public int Speed { get; set; } + /** + Sets and returns a unit's Defense + */ + public int Def { get; set; } + /** + Sets and returns a unit's Resistance + */ + public int Res { get; set; } + /** + Sets and returns a unit's Level + */ + public int Level { get; set; } + private readonly int movability = 4; // Warrior movement is permanently set to 4 + private Weapon[] equipableWeapons; // Array of all equipable weapons + /** + returns weapon the unit is currently equipping + */ + public Weapon equippedWeapon { get; set; } + private Texture2D spriteImage; // the char sprite + private Vector2 pixelCoordinates; // the pixel coordinate of the unit + private Tuple<int, int> position; // the tile location of the unit + private Button[] buttons = new Button[5]; // the buttons associated with the unit + private Texture2D charInfo, charAttackInfo; // The character and attack info textures + private int currentFrame; // the current frame the sprite is on + private int player; // which player this unit belongs to + + /** + * The constructor for Unit Mage + * @param spriteImage The character sprite + * @param attackButton The dropdownmenu attack button texture + * @param moveButton The dropdownmenu move button texture + * @param itemButton The dropdownmenu item button texture + * @param waitButton The dropdownmenu wait button texture + * @param confirmButton The attack confirm button texture + * @param charInfo The character info popup texture + * @param charAttackInfo The character attack menu popup texture + * @param coordinates The unit's current coordinate on screen + * @param player The player of which the unit belongs to + */ + public Mage(Texture2D spriteImage, Button attackButton, Button moveButton, + Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, + Texture2D charAttackInfo, Vector2 coordinates, int player) + { + this.spriteImage = spriteImage; + buttons[0] = attackButton; + buttons[1] = moveButton; + buttons[2] = itemButton; + buttons[3] = waitButton; + buttons[4] = confirmButton; + this.charInfo = charInfo; + this.charAttackInfo = charAttackInfo; + this.player = player; + pixelCoordinates = coordinates; + int positionX = (int)Math.Round(coordinates.X / 32); + int positionY = (int)Math.Round(coordinates.Y / 32); + position = new Tuple<int, int>(positionX, positionY); + currentFrame = 1; + setButtonCoordinates(pixelCoordinates); + setInitialStats(); //sets initial warrior stats + } + + //sets initial unit stats + public void setInitialStats() + { + Alive = true; + Level = 1; + Hp = 8; + Str = 2; + Int = 7; + Skill = 4; + Speed = 8; + Def = 3; + Res = 8; + } + + /* + Sets the new strength value + \n Gets the effective strength -> Unit strength + weapon strength + */ + public int Str + { + get + { + return str + equippedWeapon.modStr; + } + set + { + str = value; + } + } + + /* + Sets the new intelligence value + \n Gets the effective intelligence -> Unit intelligence + weapon intelligence + */ + public int Int + { + get + { + return intelligence + equippedWeapon.modInt; + } + set + { + intelligence = value; + } + } + + /* + Sets the new skill value + \n Gets the effective skill -> Unit skill + weapon skill + */ + public int Skill + { + get + { + return skill + equippedWeapon.modSkill; + } + set + { + skill = value; + } + } + + /** + Returns the unit's movability range on grid (number of spaces the unit can move in one turn) + */ + public int getMovability() + { + return movability; + } + + /** + returns all stats as an array + */ + public int[] getStats() + { + int[] allStats = new int[7]; + allStats[0] = Level; + allStats[1] = Str; + allStats[2] = Int; + allStats[3] = Skill; + allStats[4] = Speed; + allStats[5] = Def; + allStats[6] = Res; + return allStats; + } + + public Weapon[] getEquipableWeapons() + { + return equipableWeapons; + } + + /** + returns unit's class (warrior, mage, archer) + */ + public UnitType getClass() + { + return UnitType.Warrior; + } + + /** + returns the sprite image of the unit + */ + public Texture2D getSpriteImage() + { + return spriteImage; + } + + /** + returns the button texture at index i + */ + public Texture2D getButtonImage(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: // if attack clicked + return buttons[0].getImage(); + case ButtonType.Move: // if moved is clicked + return buttons[1].getImage(); + case ButtonType.Items: // if item is clicked + return buttons[2].getImage(); + case ButtonType.Wait: // if wait is clicked + return buttons[3].getImage(); + case ButtonType.AttackConfirm: + return buttons[4].getImage(); + default: + return null; + } + } + + /** + indicates whether a button has already been previously selected or not + */ + public bool isButtonActive(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: + return buttons[0].Active; + case ButtonType.Move: + return buttons[1].Active; + case ButtonType.Items: + return buttons[2].Active; + case ButtonType.Wait: + return buttons[3].Active; + case ButtonType.AttackConfirm: + return buttons[4].Active; + + default: + return false; + } + } + + /** + returns the char info screen texture + */ + public Texture2D getCharInfo() + { + return charInfo; + } + + /** + returns the char attack info screen texture + */ + public Texture2D getCharAttackInfo() + { + return charAttackInfo; + } + + /** + gets and sets unit's position by tile + */ + public Tuple<int, int> Position + { + get + { + return position; + } + set + { + position = value; + pixelCoordinates = new Vector2(value.Item1 * 32, value.Item2 * 32); + } + } + + /** + returns the pixel coordinate of the unit + \n sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) + */ + public Vector2 PixelCoordinates + { + get + { + return pixelCoordinates; + } + set + { + pixelCoordinates = value; + int positionX = (int)Math.Round(PixelCoordinates.X / 32); + int positionY = (int)Math.Round(PixelCoordinates.Y / 32); + position = new Tuple<int, int>(positionX, positionY); + } + } + + /** + returns the dropdown menu buttons of the unit + */ + public Button[] getButtons() + { + return buttons; + } + + /** + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + */ + public Button getButtonOfType(ButtonType buttonType) + { + switch (buttonType) + { + case ButtonType.Attack: + return buttons[0]; + case ButtonType.Move: + return buttons[1]; + case ButtonType.Items: + return buttons[2]; + case ButtonType.Wait: + return buttons[3]; + case ButtonType.AttackConfirm: + return buttons[4]; + + default: + return null; + } + } + + /** + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + */ + public void setButtonCoordinates(Vector2 pixelCoordinates) + { + int increment = 0; + foreach (Button button in buttons) + { + if (button.Active) + { + if (button.getButtonType() != ButtonType.AttackConfirm) + { + button.setPixelCoordinates((int)(pixelCoordinates.X + 32), (int)(pixelCoordinates.Y + (increment * 32))); + increment++; + } + else if (GameState.attackConfirmOpen) + { + button.setPixelCoordinates((int)(pixelCoordinates.X + 32), (int)(pixelCoordinates.Y)); + } + } + } + } + + /** + returns the current sprite frame in animation sequence + */ + public Rectangle getCurrentFrame() //return current frame the sprite is on + { + Rectangle screenBounds = new Rectangle(currentFrame * 32, 0, 32, 32); + return screenBounds; + } + + /** + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + */ + public void animate(Direction direction) + { + + #region Walking Down + if (direction == Direction.Down) // for going down + { + if (currentFrame > 2) // if unit isnt already going down, set the sprite to default facing downwards + { + currentFrame = 1; + } + else + { + if (currentFrame == 2) // if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 0; + } + else + { + currentFrame++; // increment through walk cycle + } + } + } + #endregion + + #region Walking Left + else if (direction == Direction.Left) // for going left + { + if ((currentFrame < 3) || (currentFrame > 5)) // if unit isnt already going left, set the sprite to default facing left + { + currentFrame = 4; + } + else + { + if (currentFrame == 5) // if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 3; + } + else + { + currentFrame++; //increment walk cycle + } + } + } + #endregion + + #region Walking Right + else if (direction == Direction.Right) // for going right + { + if ((currentFrame < 6) || (currentFrame > 8)) // if unit isnt already going right, set the sprite to default facing right + { + currentFrame = 7;//increment walk cycle + } + else + { + if (currentFrame == 8)// if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 6; + } + else + { + currentFrame++; + } + } + } + #endregion + + #region Walking Up + else if (direction == Direction.Up) // for going up + { + if (currentFrame < 9) // if unit isnt already going up, set the sprite to default facing upwards + { + currentFrame = 10;//increment walk cycle + } + else + { + if (currentFrame == 11)// if unit has reached end of going down walk cycle, go back to beginning + { + currentFrame = 9;//increment walk cycle + } + else + { + currentFrame++; + } + } + } + #endregion + } } } diff --git a/src/Blaze-Brigade/Blaze_Brigade/MainMenu.cs b/src/Blaze-Brigade/Blaze_Brigade/MainMenu.cs index a00c7f6bcaa9264f88c72beed8fdebadbb9da6b8..a1bee03e30428aefd41d9d9a3ed6dd56f0af2065 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/MainMenu.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/MainMenu.cs @@ -13,41 +13,64 @@ using System.Windows.Forms; namespace View { + /// <summary> + /// The Main Menu class. This window is displayed upon starting game, and can link you to + /// HowToPlay playing the Game. + /// </summary> public partial class MainMenu : Form { - public bool start = false; - public bool instruct = false; - public bool quit = false; - public bool load = false; + public bool start = false; //boolean that checks if start button is clicked + public bool instruct = false; // boolean that checks if instruct button is clicked + public bool quit = false; // boolean that checks if quit button is clicked + public bool load = false; // boolean that checks if load button is clicked + /** + Constructor for Main Menu window + */ public MainMenu() { InitializeComponent(); } + /** + checks if user clicks start + * @params sender the object to check + * @params e The event to check for + */ private void Start_Click(object sender, EventArgs e) { start = true; // check if user starts game } + /** + check if user wants instructions and clicks on HowToPlay button + * @params sender the object to check + * @params e The event to check for + */ private void howToPlay_Click(object sender, EventArgs e) { - instruct = true; // check if user wants instructions + instruct = true; // } - //sets instruct to false when no longer on how-to-play gameState + /** + sets instruct to false when no longer on how-to-play gameState + */ public void setInstructFalse() { instruct = false; } - //returns current instruct boolean + /** + returns current instruct boolean + */ public Boolean getInstruct() { return instruct; } - //checks if exit is clicked + /** + checks if exit is clicked + */ private void Exit_Click(object sender, EventArgs e) { quit = true; // check if user quits diff --git a/src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs b/src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs index 283ea2883272d843e64f21f74cbf993a79fc237a..b63bfd2305f2d1e18894e7837d7918c89df14954 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/MouseHandler.cs @@ -91,7 +91,7 @@ namespace Controller // if path finder returns a non-null path, then end node is valid if (path != null) { - GameState.selectedUnit.getButtonOfType(ButtonType.Move).setActive(false); // move button no longer active + GameState.selectedUnit.getButtonOfType(ButtonType.Move).Active = false; // move button no longer active updateUnitPosition(graph, mouseClickCoordinates, path); GameState.beforeMove = false; turnState = TurnState.Wait; @@ -125,7 +125,7 @@ namespace Controller setSelectedUnit(unit, true); GameFunction.setMovableNodes(graph, unit); GameState.dropDownMenuOpen = true; - if (unit.getButtonOfType(ButtonType.Move).getActive()) + if (unit.getButtonOfType(ButtonType.Move).Active) { GameState.beforeMove = true; } @@ -284,14 +284,14 @@ namespace Controller { if (unit.PixelCoordinates.X < nodePixelX) { - unit.animate(2); + unit.animate(Direction.Right); unit.PixelCoordinates = new Vector2(unit.PixelCoordinates.X + pixelDifference, unit.PixelCoordinates.Y); Game.Instance.Tick(); Thread.Sleep(40); } else { - unit.animate(1); + unit.animate(Direction.Left); unit.PixelCoordinates = new Vector2(unit.PixelCoordinates.X - pixelDifference, unit.PixelCoordinates.Y); Game.Instance.Tick(); Thread.Sleep(40); @@ -302,14 +302,14 @@ namespace Controller { if (unit.PixelCoordinates.Y < nodePixelY) { - unit.animate(0); + unit.animate(Direction.Down); unit.PixelCoordinates = new Vector2(unit.PixelCoordinates.X, unit.PixelCoordinates.Y + pixelDifference); Game.Instance.Tick(); Thread.Sleep(40); } else { - unit.animate(3); + unit.animate(Direction.Up); unit.PixelCoordinates = new Vector2(unit.PixelCoordinates.X, unit.PixelCoordinates.Y - pixelDifference); Game.Instance.Tick(); Thread.Sleep(40); @@ -363,9 +363,9 @@ namespace Controller GameState.dropDownMenuOpen = false; // close the dropdownmenu when selecting who to attack break; case ButtonType.AttackConfirm: // if confirm attack clicked - button.setActive(false); - unit.getButtonOfType(ButtonType.Move).setActive(false); // move button is no longer active - unit.getButtonOfType(ButtonType.Attack).setActive(false); // attack button is no longer active + button.Active = false; + unit.getButtonOfType(ButtonType.Move).Active = false; // move button is no longer active + unit.getButtonOfType(ButtonType.Attack).Active = false; // attack button is no longer active int attackDirection = 0; int counterAttackDirection = 0; if (unit.Position.Item1 < unit2.Position.Item1) @@ -412,7 +412,7 @@ namespace Controller turnState = TurnState.Wait; GameState.dropDownMenuOpen = false; setSelectedUnit(null, false); - button.setActive(false); + button.Active = false; break; default: diff --git a/src/Blaze-Brigade/Blaze_Brigade/Unit.cs b/src/Blaze-Brigade/Blaze_Brigade/Unit.cs index f7e8b5d76d9d7a31b039695a1b9a20afa2d75c52..15a81e7796af4595b060bb70d1c8f0b150f2d63a 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Unit.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Unit.cs @@ -23,69 +23,150 @@ namespace Model */ interface Unit { + #region Stats /** Sets and returns whether or not unit is alive */ - bool Alive { get; set; } + bool Alive { get; set; } + /** Sets and returns a unit's HP */ - int Hp { get; set; } + int Hp { get; set; } + /** Sets and returns a unit's Strength */ - int Str { get; set; } + int Str { get; set; } + /** Sets and returns a unit's Intelliegence */ - int Int { get; set; } + int Int { get; set; } + /** Sets and returns a unit's Skill */ - int Skill { get; set; } + int Skill { get; set; } + /** Sets and returns a unit's Speed */ - int Speed { get; set; } + int Speed { get; set; } + /** Sets and returns a unit's Defense */ - int Def { get; set; } + int Def { get; set; } + /** Sets and returns a unit's Resistance */ - int Res { get; set; } + int Res { get; set; } + /** Sets and returns a unit's Level */ - int Level { get; set; } + int Level { get; set; } + /** Returns the unit's movability range on grid (number of spaces the unit can move in one turn) */ int getMovability(); + + /** + returns all stats as an array + */ + int[] getStats(); + + /** + sets initial unit stats upon creation + */ + void setInitialStats(); + #endregion + /** - returns stat located at i (in order from 0-6: lvl, str, mag, skill, spd, def, res) - \param i The location of the stat to be returned in array + returns weapon the unit is currently equipping */ - int getStats(int i); - Weapon equippedWeapon { get; set; } // returns weapon the unit is currently equipping + Weapon equippedWeapon { get; set; } //void setEquipableWeapons(Weapon add); // need to update the weapon array, put new weapon into it - bool isButtonActive(ButtonType buttonType); // indicates whether a button has already been previously selected or not - void setButtonCoordinates(Vector2 pixelCoordinates); // sets the coordinates of menu buttons - void animate(int direction); // animate sprite walking the direction specified - void setInitialStats(); // sets initial unit stats upon creation - Texture2D getSpriteImage(); // returns the sprite image of the unit - Texture2D getButtonImage(ButtonType buttonType); // returns the button texture at index i - Texture2D getCharInfo(); // returns the char info screen texture - Texture2D getCharAttackInfo(); // returns the char attack info screen texture - Tuple<int, int> Position { get; set;} // gets and sets unit's position by tile + /** + indicates whether a button has already been previously selected or not + */ + bool isButtonActive(ButtonType buttonType); + + /** + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + */ + void setButtonCoordinates(Vector2 pixelCoordinates); + + /** + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + */ + void animate(Direction direction); + + /** + returns the sprite image of the unit + */ + Texture2D getSpriteImage(); + + /** + returns the button texture at index i + */ + Texture2D getButtonImage(ButtonType buttonType); + + /** + returns the char info screen texture + */ + Texture2D getCharInfo(); + + /** + returns the char attack info screen texture + */ + Texture2D getCharAttackInfo(); + + /** + gets and sets unit's position by tile + */ + Tuple<int, int> Position { get; set;} + + /** + returns the pixel coordinate of the unit + */ Vector2 PixelCoordinates { get; set; } - Button[] getButtons(); // returns the dropdown menu buttons of the unit + + /** + returns the dropdown menu buttons of the unit + */ + Button[] getButtons(); + + /** + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + */ Button getButtonOfType(ButtonType buttonType); - Rectangle getCurrentFrame(); // returns the current sprite frame in animation sequence - Weapon[] getEquipableWeapons(); // returns array of equipable weapons - UnitType getClass(); // returns unit's class (warrior, mage, archer) - } - enum UnitType { Warrior, Archer, Mage }; //defines the possible classes of a unit + /** + returns the current sprite frame in animation sequence + */ + Rectangle getCurrentFrame(); + + /** + returns array of equipable weapons + */ + Weapon[] getEquipableWeapons(); + + /** + returns unit's class (warrior, mage, archer) + */ + UnitType getClass(); + + } + /** + defines the possible classes of a unit + */ + enum UnitType { Warrior, Archer, Mage }; + enum Direction { Down, Left, Right, Up}; } diff --git a/src/Blaze-Brigade/Blaze_Brigade/Warrior.cs b/src/Blaze-Brigade/Blaze_Brigade/Warrior.cs index c29e2a84c06c212c5bba17b9d4a73f13fd543422..54934177b6c02ad8416663c578574c3c76742a15 100644 --- a/src/Blaze-Brigade/Blaze_Brigade/Warrior.cs +++ b/src/Blaze-Brigade/Blaze_Brigade/Warrior.cs @@ -10,30 +10,69 @@ using System.Diagnostics; namespace Model { + /// <summary> + /// The Warrior model class, extends Unit + /// This unit excels in dealing melee physical damage, with a high defense, but suffers from lack of any magical attack or resistance + /// </summary> class Warrior : Unit { + /** + Sets and returns whether or not unit is alive + */ public bool Alive { get; set; } - public int Hp { get; set; } - private int str; - private int intelligence; - private int skill; + /** + Sets and returns a unit's HP + */ + public int Hp { get; set; } + private int str; // unit strength + private int intelligence; // unit intelliegence + private int skill; // unit skill + /** + Sets and returns a unit's Speed + */ public int Speed { get; set; } + /** + Sets and returns a unit's Defense + */ public int Def { get; set; } + /** + Sets and returns a unit's Resistance + */ public int Res { get; set; } - public int Level { get; set; } - private readonly int movability = 4; // all warriors will have 4 movability - private Weapon[] equipableWeapons; - public Weapon equippedWeapon { get; set; } - private Texture2D spriteImage; - private Vector2 pixelCoordinates; - private Tuple<int, int> position; - private Button[] buttons = new Button[5]; - private Texture2D charInfo, charAttackInfo; - private int currentFrame; //the current frame the sprite is on - private int player; // which player this unit belongs to + /** + Sets and returns a unit's Level + */ + public int Level { get; set; } + private readonly int movability = 4; // Warrior movement is permanently set to 4 + private Weapon[] equipableWeapons; // Array of all equipable weapons + /** + returns weapon the unit is currently equipping + */ + public Weapon equippedWeapon { get; set; } + private Texture2D spriteImage; // the char sprite + private Vector2 pixelCoordinates; // the pixel coordinate of the unit + private Tuple<int, int> position; // the tile location of the unit + private Button[] buttons = new Button[5]; // the buttons associated with the unit + private Texture2D charInfo, charAttackInfo; // The character and attack info textures + private int currentFrame; // the current frame the sprite is on + private int player; // which player this unit belongs to + /** + * The constructor for Unit Warrior + * @param spriteImage The character sprite + * @param attackButton The dropdownmenu attack button texture + * @param moveButton The dropdownmenu move button texture + * @param itemButton The dropdownmenu item button texture + * @param waitButton The dropdownmenu wait button texture + * @param confirmButton The attack confirm button texture + * @param charInfo The character info popup texture + * @param charAttackInfo The character attack menu popup texture + * @param coordinates The unit's current coordinate on screen + * @param player The player of which the unit belongs to + */ public Warrior(Texture2D spriteImage, Button attackButton, Button moveButton, - Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, Texture2D charAttackInfo, Vector2 coordinates, int player) + Button itemButton, Button waitButton, Button confirmButton, Texture2D charInfo, + Texture2D charAttackInfo, Vector2 coordinates, int player) { this.spriteImage = spriteImage; buttons[0] = attackButton; @@ -67,7 +106,10 @@ namespace Model Res = 4; } - //sets and gets unit effective str + /* + Sets the new strength value + \n Gets the effective strength -> Unit strength + weapon strength + */ public int Str { get @@ -80,7 +122,10 @@ namespace Model } } - //sets and gets unit effective int + /* + Sets the new intelligence value + \n Gets the effective intelligence -> Unit intelligence + weapon intelligence + */ public int Int { get @@ -93,7 +138,10 @@ namespace Model } } - //sets and gets unit effective skill + /* + Sets the new skill value + \n Gets the effective skill -> Unit skill + weapon skill + */ public int Skill { get @@ -106,13 +154,18 @@ namespace Model } } + /** + Returns the unit's movability range on grid (number of spaces the unit can move in one turn) + */ public int getMovability() { return movability; } - //returns each stat as an index for incrementing purposes - public int getStats(int i) + /** + returns all stats as an array + */ + public int[] getStats() { int[] allStats = new int[7]; allStats[0] = Level; @@ -122,7 +175,7 @@ namespace Model allStats[4] = Speed; allStats[5] = Def; allStats[6] = Res; - return allStats[i]; + return allStats; } public Weapon[] getEquipableWeapons() @@ -130,16 +183,25 @@ namespace Model return equipableWeapons; } + /** + returns unit's class (warrior, mage, archer) + */ public UnitType getClass() { return UnitType.Warrior; } + /** + returns the sprite image of the unit + */ public Texture2D getSpriteImage() { return spriteImage; } + /** + returns the button texture at index i + */ public Texture2D getButtonImage(ButtonType buttonType) { switch (buttonType) @@ -159,37 +221,48 @@ namespace Model } } - // indicates whether a button has already been previously selected or not + /** + indicates whether a button has already been previously selected or not + */ public bool isButtonActive(ButtonType buttonType) { switch (buttonType) { case ButtonType.Attack: - return buttons[0].getActive(); + return buttons[0].Active; case ButtonType.Move: - return buttons[1].getActive(); + return buttons[1].Active; case ButtonType.Items: - return buttons[2].getActive(); + return buttons[2].Active; case ButtonType.Wait: - return buttons[3].getActive(); + return buttons[3].Active; case ButtonType.AttackConfirm: - return buttons[4].getActive(); + return buttons[4].Active; default: return false; } } + /** + returns the char info screen texture + */ public Texture2D getCharInfo() { return charInfo; } + /** + returns the char attack info screen texture + */ public Texture2D getCharAttackInfo() { return charAttackInfo; } + /** + gets and sets unit's position by tile + */ public Tuple<int, int> Position { get @@ -203,6 +276,10 @@ namespace Model } } + /** + returns the pixel coordinate of the unit + \n sets the pixel coordinate, and also sets Position (which is the tile location of that coordinate) + */ public Vector2 PixelCoordinates { get @@ -218,11 +295,18 @@ namespace Model } } + /** + returns the dropdown menu buttons of the unit + */ public Button[] getButtons() { return buttons; } + /** + Returns the button type + * @param buttonType The button to return (Move, Attack, Item, Wait, and attack confirm) + */ public Button getButtonOfType(ButtonType buttonType) { switch (buttonType) @@ -243,13 +327,16 @@ namespace Model } } - // updates menu button positions + /** + sets the coordinates of menu buttons + * @param pixelCoordinates The pixel coordinate of the button + */ public void setButtonCoordinates(Vector2 pixelCoordinates) { int increment = 0; foreach (Button button in buttons) { - if (button.getActive()) + if (button.Active) { if (button.getButtonType() != ButtonType.AttackConfirm) { @@ -264,18 +351,24 @@ namespace Model } } + /** + returns the current sprite frame in animation sequence + */ public Rectangle getCurrentFrame() //return current frame the sprite is on { Rectangle screenBounds = new Rectangle(currentFrame * 32, 0, 32, 32); return screenBounds; } - // animates the sprite by switching to the correct frame sequences - public void animate(int direction) + /** + animate sprite walking the direction specified + * @param direction The direction the unit is moving in + */ + public void animate(Direction direction) { #region Walking Down - if (direction == 0) // for going down + if (direction == Direction.Down) // for going down { if (currentFrame > 2) // if unit isnt already going down, set the sprite to default facing downwards { @@ -296,7 +389,7 @@ namespace Model #endregion #region Walking Left - else if (direction == 1) // for going left + else if (direction == Direction.Left) // for going left { if ((currentFrame < 3) || (currentFrame > 5)) // if unit isnt already going left, set the sprite to default facing left { @@ -317,7 +410,7 @@ namespace Model #endregion #region Walking Right - else if (direction == 2) // for going right + else if (direction == Direction.Right) // for going right { if ((currentFrame < 6) || (currentFrame > 8)) // if unit isnt already going right, set the sprite to default facing right { @@ -338,7 +431,7 @@ namespace Model #endregion #region Walking Up - else if (direction == 3) // for going up + else if (direction == Direction.Up) // for going up { if (currentFrame < 9) // if unit isnt already going up, set the sprite to default facing upwards {