Changes

Jump to: navigation, search

Team Guardian Cube Mapping

43,289 bytes removed, 05:51, 14 April 2011
no edit summary
<html xmlns:v="urn:schemas!-microsoft-com:vml"xmlns:o="urn:schemas[if gte mso 9]>CloudScorpionCloudScorpion219712011-microsoft04-com14T09:office44:office"xmlns:w="urn:schemas00Z2011-microsoft04-com14T09:office44:word"xmlns:m="http://schemas00Z3104459544913698512.microsoft.com/office/2004/12/omml"xmlns="http://www.w3.org/TR/REC00<![endif]--html40"> <head!--[if gte mso 9]><meta httpCleanCleanfalsefalsefalsefalseEN-equiv=ContentCAX-Type content="text/html; charset=windowsNONEX-1252">NONEMicrosoftInternetExplorer4<meta name=ProgId content=Word.Document><meta name=Generator content="Microsoft Word 12"><meta name=Originator content="Microsoft Word 12"><link rel=File![endif]--Listhref="How%20to%20implement%20Environmental%20Cube%20Mapping_files/filelist.xml"><&#33;!--[if gte mso 9]><xml![endif]--> <o:DocumentProperties!--[if gte mso 10]> <o:Author![endif]-->CloudScorpion</o:Author!--[if gte mso 9]><o:LastAuthor![endif]-->CloudScorpion</o:LastAuthor!--[if gte mso 9]><o:Revision![endif]-->2</o Theory behind the Material Class:Revision> <o:TotalTime![if !supportLists]>1971</o:TotalTime><o:Created>2011-04-14T09:44:00Z          </o:Created![endif]><o:LastSaved>2011-04-14T09:44:00Z</o:LastSaved><o:Pages>3</o:Pages><o:Words>1044</o:Words><o:Characters>5954</o:Characters><o:Lines>49</o:Lines><o:Paragraphs>13</o:Paragraphs><o:CharactersWithSpaces>6985</o:CharactersWithSpaces><o:Version>12The material class was originally supposed to encapsulate all material related data, such as textures, colors, reflectivity etc. The intention was to replace a lot of the functionality of graphic, so that an object encapsulates an in world object, graphic encapsulated a static mesh and material described the appearance of a mesh.00</o:Version> This way you could have a material attached to many different meshes, so a similar appearance can be applied amongst many objects. This is similar to the approach taken by 3DS Max. </o:DocumentProperties></xml![if !supportLists]>-          <&#33;![endif]--><link rel=themeDataThis approach proved too invasive for others to implement, so now I have made Material a category, which will shift responsibility of drawing the object away from graphic and into Material. href="How%20to%20implement%20Environmental%20Cube%20Mapping_files/themedata.thmx"><link rel=colorSchemeMappingto implement Environmental Cube Mapping href="How%20to%20implement%20Environmental%20Cube%20Mapping_files/colorschememapping.xml"><&#33;--![if gte mso 9!supportLists]>1)      <xml![endif]>Download and include the iMaterial.h, Material.h and Material.cpp into your project. <w:WordDocument![if !supportLists]>2)      <w:SpellingState![endif]>Clean<Add the cube map code from the provided FX file into your own FX file. If you will be adding there manually, copy the code between //w:SpellingState><w:GrammarState>Clean<REF_CUBE_MAP_A# and /w:GrammarState><w:TrackMoves>false</w:TrackMoves>END REF_CUBE_MAP_A#, there should be 4 sections to copy in total <w:TrackFormatting/![if !supportLists]>3)      <w:PunctuationKerning/![endif]>Edit the Configuration.h file  and add “MATERIAL” to the Category enumeration <w:ValidateAgainstSchemas/![if !supportLists]>4)      <w![endif]>Object is now going to need some adjustments.  I’ll break this down into a few components:SaveIfXMLInvalid>false </w:SaveIfXMLInvalid![if !supportLists]>·         <w:IgnoreMixedContent![endif]>falseiObject.h </w:IgnoreMixedContent![if !supportLists]>                                                              I.      <w:AlwaysShowPlaceholderText![endif]>falseAdd ‘class iMaterial’ to the top of the file with the rest of the declarations </w:AlwaysShowPlaceholderText![if !supportLists]>                                                            II.      <w:DoNotPromoteQF/![endif]>Add a virtual getting and setter for the Object’s material <w:LidThemeOther![if !supportLists]>EN-CA                                                          III.      </w:LidThemeOther![endif]>Add two more virtual functions, one called getID, receives an int and returns an int, and second one called resetID which receives an int and returns nothing. <w:LidThemeAsian![if !supportLists]>X-NONE·         </w:LidThemeAsian![endif]>Object.h <w:LidThemeComplexScript![if !supportLists]>X-NONE                                                              I.      </w:LidThemeComplexScript![endif]><w:Compatibility><Add a private iMaterial pointer to the object named rMaterial (you could change it to w:BreakWrappedTables/><w:SnapToGridInCelle you want, but it won’t be as easy to copy/>paste code if you don’t) <w:WrapTextWithPunct/![if !supportLists]>                                                            II.      <w:UseAsianBreakRules/><w:DontGrowAutofit/><w:SplitPgBreakAndParaMark/><w:DontVertAlignCellWithSp/![endif]>Implement the getter and setter in the in the Object header, in the setter, change the category of the object to MATERIAL. <w:DontBreakConstrainedForcedTables/![if !supportLists]>                                                          III.      <w:DontVertAlignInTxbx/><w:Word11KerningPairs/><w:CachedColBalance/![endif]>Remove the braces after Object’s preDraw() function, we are going to need to implement this function in the cpp. </w:Compatibility![if !supportLists]>                                                          IV.      <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><m:mathPr><m:mathFont m:val="Cambria Math"/![endif]>Add a private int array called get cubeMapID, which for this implementation,  it can be an array of 2 items, since reflection depth will not be implemented. <m:brkBin m:val="before"/![if !supportLists]>                                                            V.      <m:brkBinSub m:val="&#45;-"/![endif]><m:smallFrac m:val="off"/Implement getID and resetID, get id returns the int at level in the cubeMapID array (return cubeMapID[level];) and resetID sets the int at level in the cubeMapID to -1. <![if !supportLists]>·         <m:dispDef/><m:lMargin m:val="0"/![endif]>Object.cpp <m:rMargin m:val="0"/![if !supportLists]>                                                              I.      <m:defJc m:val="centerGroup"/![endif]>Add ‘#includeiMaterial.h’ at the top. <m:wrapIndent m:val="1440"/![if !supportLists]>                                                            II.      <m:intLim m:val="subSup"/![endif]><m:naryLim m:valIn the object constructor add ‘rMaterial ="undOvr"/>NULL’, just to be safe, also set cubeMapID [0] and [1] to -1. </m:mathPr![if !supportLists]>                                                          III.      </w:WordDocument></xml><&#33;![endif]>In the object’s = operator, set CubeMapID[0] and [1] to -->1. <&#33;--![if gte mso 9!supportLists]>                                                          IV.      <xml![endif]><w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"DefSemiHidden="In the Object’s attach function,  check if the category is set to MATERIAL and that rMaterial isn’t NULL, if true" DefQFormat="false" DefPriority="99"LatentStyleCount="267"><w:LsdException Locked="false" Priority="0" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Normal"/><w:LsdException Locked="false" Priority="9" SemiHidden="false", use Material’s setStage, if category is not set to MATERIALS then use the code already there (Remember, if reading this is confusing, you can always copy the code, this is just trying to explain what to do) UnhideWhenUsed="false" QFormat="true" Name="heading 1"/<![if !supportLists]>                                                            V.      <w:LsdException Locked="false" Priority="9" QFormat="![endif]>Above the draw function, add the implementation of the preDraw, which is simple. Check if the category is set to MATERIAL and rMaterial isn’t NULL, if true" Name="heading 2"/, set the cubeMapID (at index of rMaterial-><w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/getDepth()) to dthe result of rMaterial->getCubeID(this). Finally call the preDraw function on rMaterial and pass it a reference to the object (this), vertexlist pointer, and scene pointer. <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/![if !supportLists]>                                                          VI.      <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/><w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/><w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/![endif]>Mod the Object’s draw function to test if the category is set to MATERIAL, if it is and  rMaterial isn’t NULL, call the draw function on the material (passing in the object and scene) in place of using the attach and draw code in the function, the report should occur regardless. <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/![if !supportLists]>                                                        VII.      <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/![endif]>In the suspend code, check if rMaterial is NULL, if not, call suspend on it. Do the same for release. <w:LsdException Locked="false" Priority="39" Name="toc 1"/![if !supportLists]>5)      <w:LsdException Locked="false" Priority="39" Name="toc 2"/><w:LsdException Locked="false" Priority="39" Name="toc 3"/><w:LsdException Locked="false" Priority="39" Name="toc 4"/![endif]>Open Display.cpp,  #include Material.h and call the static function connectDevice from Material, this will give material access to the device and below, call the static function connectEffect, giving Material access to the effect file. <w:LsdException Locked="false" Priority="39" Name="toc 5"/![if !supportLists]>6)      <w:LsdException Locked="false" Priority="39" Name="toc 6"/![endif]><w:LsdException Locked="false" Priority="39" Name="toc 7"/><w:LsdException Locked="false" Priority="39" Name="toc 8"/><w:LsdException Locked="false" Priority="39" Name="toc 9"/><w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/><w:LsdException Locked="false" Priority="10" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Title"/><wThe system requires a knowledge of the vertices of the in a mesh, so you have to go to iVertex list and add two virtual functions,  ‘intgetNumOfVerts()’ and ‘Vertex* getVertitices()’. Now you have to go into the VertexList class, implement these functions to return nVertices and Vertex.  You also need to make an implementation for stock mesh, simply give return NULL for both stock mesh implementations. \\ NOTE:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/><w:LsdException Locked="false" Priority="11" SemiHidden="false"If you already have your object’s center and radius calculated or easily accessible, you can skip this step and alter the code in the Material class to use that data instead of calculating the center from the vertex list. UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/<![if !supportLists]>7)      <w:LsdException Locked="false" Priority="22" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Strong"/![endif]><w:LsdException Locked="false" Priority="20" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/Open Design.cpp and #include iMaterial.h.  Add scene-><w:LsdException Locked="false" Priority="59" SemiHidden="false"UnhideWhenUsed="false" Name="Table Grid"/draw(MATERIAL); to Design’s draw function and scene-><w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/><w:LsdException Locked="false" Priority="1" SemiHidden="false"draw(MATERIAL); to Design’s preDraw.UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"This will give you the ability to use the Material class with your object to give them a nice reflective or refracting effect. UnhideWhenUsed="false" Name="Light List"/><wHow to use Material:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid"/><wTo use a material, follow these few steps:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2"/![if !supportLists]><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1"/>)      <w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2"/![endif]><wCreate a Material:LsdException Locked\\_iMaterial__* mat ="false" Priority="67" SemiHidden="false"CreateMaterial(contextPointer, numberOfStages, numberOfSubsets);\\_NOTES: if the material only have one stage and subset, only pass in context. UnhideWhenUsed="false" Name="Medium Grid 1"/<![if !supportLists]>2)      <w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2"/![endif]><wSetup the material:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3"/\\_mat-><wsetup(arrayOfBasicColors, twoDimensionalTextureArray, arrayOfColorsRepresentingReflection, arrayOfRefractionPowers, twoDimensionalArrayOfColorsRepresentingRefraction, ObjectShine, ObjectFlags, ObjectBorderColor);_\\ NOTE:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List"If you specify only one subset/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 1"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 1"/><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent stage, you can simply put in a pointers to this data, but if you specify more than one subset or stage, you  must implement the data in an array OR pass in NULL. The alpha channel determines how strong the effect of the reflection or refraction will be, and they are both over-riding effects, reflection being the most over-riding of the two.  So if refraction’s alpha channel is 1"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1".0, the object’s color and texture will be completely gone, the object will only have the refracted texture on it. If the alpha channel is 0.5, then it will be half refracted texture, half color/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/><w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/><w:LsdException Locked="false" Priority="34" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/><w:LsdException Locked="false" Priority="29" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Quote"/><w:LsdException Locked="false" Priority="30" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent diffuse texture. The same works with reflection except that reflection will over-ride refraction, so if an object is 100% refractive and 100% reflective, you will only see the reflection. Where as if the reflection is 50% and refraction is 50%, the distribution of the texture will be 50% reflective, 25% refractive, 25% diffuse. The refractive power float array dictates how much the light bends, so if it is equal to 1"/><w:LsdException Locked="false" Priority="67" SemiHidden="false".0, the light will not bend at all, where as if it is set to 0.9, it will bend about 10% of the angle of the normal of the fragment. UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/<![if !supportLists]>3)      <w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/![endif]><wSet the material onto the object:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/\\_object-><wsetMaterial(mat);_\\ NOTE:LsdException Locked="false" Priority="70" SemiHidden="false"this will convert the object to a material object and attach the material.UnhideWhenUsed="false" Name="Dark List Accent 1"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/><wA quick example of how to make a glass like cube would be:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 1"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed\\_iObject__* boxy ="false" Name="Colorful Grid Accent CreateBox(-10,-10, -10, 10, 10, 10, “opaque”, Colour(1"/><w:LsdException Locked.0f, 1.0f, 1.0f,1.0f);\\iMaterial* mat ="false" PriorityCreateMaterial(context);\\ float power ="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 2"0.9f; /><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 2"/this is just to sidestep the need for an array\\ mat-><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent 2"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading setup(&Colour(0.7f, 0.7f, 0.7f, 0.7f), NULL, &Colour(1 Accent 2"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List .0f, 1 Accent 2"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/><w:LsdException Locked="false" Priority="67" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid .0f, 1 Accent 2"/><w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/><w:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/><w:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List Accent 2"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 2"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 3"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 3"/><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent 3"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/><w:LsdException Locked="false" Priority="67" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/><w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/><w:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/><w:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List Accent 3"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 3"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 4"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 4"/><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent 4"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/><w:LsdException Locked="false" Priority="67" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/><w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/><w:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/><w:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List Accent 4"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 4"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 5"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 5"/><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent 5"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/><w:LsdException Locked="false" Priority="67" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/><w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/><w:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/><w:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List Accent 5"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 5"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/><w:LsdException Locked="false" Priority="60" SemiHidden="false"UnhideWhenUsed="false" Name="Light Shading Accent 6"/><w:LsdException Locked="false" Priority="61" SemiHidden="false"UnhideWhenUsed="false" Name="Light List Accent 6"/><w:LsdException Locked="false" Priority="62" SemiHidden="false"UnhideWhenUsed="false" Name="Light Grid Accent 6"/><w:LsdException Locked="false" Priority="63" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/><w:LsdException Locked="false" Priority="64" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/><w:LsdException Locked="false" Priority="65" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/><w:LsdException Locked="false" Priority="66" SemiHidden="false"UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/><w:LsdException Locked="false" Priority="67" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/><w:LsdException Locked="false" Priority="68" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/><w:LsdException Locked="false" Priority="69" SemiHidden="false"UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/><w:LsdException Locked="false" Priority="70" SemiHidden="false"UnhideWhenUsed="false" Name="Dark List Accent 6"/><w:LsdException Locked="false" Priority="71" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/><w:LsdException Locked="false" Priority="72" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful List Accent 6"/><w:LsdException Locked="false" Priority="73" SemiHidden="false"UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/><w:LsdException Locked="false" Priority="19" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/><w:LsdException Locked="false" Priority="21" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/><w:LsdException Locked="false" Priority="31" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/><w:LsdException Locked="false" Priority="32" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/><w:LsdException Locked="false" Priority="33" SemiHidden="false"UnhideWhenUsed="false" QFormat="true" Name="Book Title"/><w:LsdException Locked="false" Priority="37" Name="Bibliography"/><w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/></w:LatentStyles></xml><&#33;[endif]--><style><&#33;--/* Font Definitions */@font-face {font-family:Wingdings; panose-1:5 0 0 0 0 0 0 0 0 0; mso-font-charset:2; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:0 268435456 0 0 -2147483648 0;}@font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-536870145 1107305727 0 0 415 0;}@font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-520092929 1073786111 9 0 415 0;}/* Style Definitions */p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0cm; margin-right:0cm; margin-bottom:10.0pt; margin-left:0cm; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph {mso-style-priority:34; mso-style-unhide:no; mso-style-qformat:yes; margin-top:0cm; margin-right:0cm; margin-bottom:10.0pt; margin-left:36.0pt; mso-add-space:auto; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst {mso-style-priority:34; mso-style-unhide:no; mso-style-qformat:yes; mso-style-type:export-only; margin-top:0cm; margin-right:0cm; margin-bottom:0cm; margin-left:36.0pt; margin-bottom:.0001pt; mso-add-space:auto; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle {mso-style-priority:34; mso-style-unhide:no; mso-style-qformat:yes; mso-style-type:export-only; margin-top:0cm; margin-right:0cm; margin-bottom:0cm; margin-left:36.0pt; margin-bottom:.0001pt; mso-add-space:auto; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast {mso-style-priority:34; mso-style-unhide:no; mso-style-qformat:yes; mso-style-type:export-only; margin-top:0cm; margin-right:0cm; margin-bottom:10.0pt; margin-left:36.0pt; mso-add-space:auto; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}span.SpellE {mso-style-name:""; mso-spl-e:yes;}span.GramE {mso-style-name:""; mso-gram-e:yes;}.MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}.MsoPapDefault {mso-style-type:export-only; margin-bottom:10.0pt; line-height:115%;}@page WordSection1 {size:612.0pt 792.0pt; margin:72.0pt 72.0pt 72.0pt 72.0pt; mso-header-margin:35.4pt; mso-footer-margin:35.4pt; mso-paper-source:0;}div.WordSection1 {page:WordSection1;}/* List Definitions */@list l0 {mso-list-id:99953897; mso-list-type:hybrid; mso-list-template-ids:1078334064 269025297 269025281 269025299 269025295 269025305 269025307 269025295 269025305 269025307;}@list l0:level1 {mso-level-text:"%1)"; mso-level-tab-stop:none; mso-level-number-position:left; text-indent:-18.0pt;}@list l0:level2 {mso-level-number-format:bullet; mso-level-text:F0B7; mso-level-tab-stop:none; mso-level-number-position:left; text-indent:-18.0pt; font-family:Symbol;}@list l0:level3 {mso-level-number-format:roman-upper; mso-level-tab-stop:none; mso-level-number-position:right; text-indent:-9.0pt;}@list l1 {mso-list-id:1295597332; mso-list-type:hybrid; mso-list-template-ids:1772285300 659349742 269025283 269025285 269025281 269025283 269025285 269025281 269025283 269025285;}@list l1:level1 {mso-level-start-at:7; mso-level-number-format:bullet; mso-level-text:-; mso-level-tab-stop:none; mso-level-number-position:left; text-indent:-18.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin;}@list l2 {mso-list-id:1355693235; mso-list-type:hybrid; mso-list-template-ids:-1185349758 269025295 269025305 269025307 269025295 269025305 269025307 269025295 269025305 269025307;}@list l2:level1 {mso-level-tab-stop:none; mso-level-number-position:left; margin-left:18.0pt; text-indent:-18.0pt;}@list l3 {mso-list-id:1524247400; mso-list-type:hybrid; mso-list-template-ids:-930814958 269025297 269025305 269025307 269025295 269025305 269025307 269025295 269025305 269025307;}@list l3:level1 {mso-level-text:"%1)"; mso-level-tab-stop:none; mso-level-number-position:left; margin-left:54.0pt; text-indent:-18.0pt;}@list l3:level2 {mso-level-number-format:alpha-lower; mso-level-tab-stop:none; mso-level-number-position:left; margin-left:90.0pt; text-indent:-18.0pt;}@list l4 {mso-list-id:2127850769; mso-list-type:hybrid; mso-list-template-ids:226368910 269025295 269025305 269025307 269025295 269025305 269025307 269025295 269025305 269025307;}@list l4:level1 {mso-level-tab-stop:none; mso-level-number-position:left; margin-left:18.0pt; text-indent:-18.0pt;}ol {margin-bottom:0cm;}ul {margin-bottom:0cm;}--></style><&#33;--[if gte mso 10]><style>/* Style Definitions */table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0cm; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-fareast-language:EN-US;}</style><&#33;[endif]--><&#33;--[if gte mso 9]><xml><o:shapedefaults v:ext="edit" spidmax="2050"/></xml><&#33;[endif]--><&#33;--[if gte mso 9]><xml><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></xml><&#33;[endif]--></head><body lang=EN-CA style='tab-interval:36.0pt'><div class=WordSection1><p class=MsoNormal>Theory behind the Material Class:</p><p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt;mso-list:l1 level1 lfo4'><&#33;[if &#33;supportLists]><spanstyle='mso-ascii-font-family:Calibri;mso-fareast-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:Calibri'><spanstyle='mso-list:Ignore'>-<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>The material class was originally supposed to encapsulateall material related data, such as textures, colors, reflectivity etc. Theintention was to replace a lot of the functionality of graphic, so that anobject encapsulates an in world object, graphic encapsulated a static mesh and materialdescribed the appearance of a mesh. <span style='mso-spacerun:yes'> </span>Thisway you could have a material attached to many different meshes, so a similarappearance can be applied amongst many objects. This is similar to the approachtaken by 3DS Max.</p><p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt;mso-list:l1 level1 lfo4'><&#33;[if &#33;supportLists]><spanstyle='mso-ascii-font-family:Calibri;mso-fareast-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:Calibri'><spanstyle='mso-list:Ignore'>-<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>This approach proved too invasive for others toimplement, so now I have made Material a category, which will shiftresponsibility of drawing the object away from graphic and into Material.</p><p class=MsoNormal>How to implement Environmental Cube Mapping</p><p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>1)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Download and include the <span class=SpellE>iMaterial.h</span>,<span class=SpellE>Material.h</span> and Material.cpp into your project.</p><p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>2)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add the cube map code from the provided FX fileinto your own FX file. If you will be adding there manually, copy the codebetween //REF_CUBE_MAP_A# and //END REF_CUBE_MAP_A#, there should be 4 sectionsto copy in total</p><p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>3)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Edit the <span class=SpellE>Configuration.h</span>file<span style='mso-spacerun:yes'>  </span>and add “MATERIAL” to the Categoryenumeration</p><p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>4)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Object is now going to need someadjustments.<span style='mso-spacerun:yes'>  </span>I’ll break this down into afew components:</p><p class=MsoListParagraphCxSpMiddle style='margin-left:72.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l0 level2 lfo1'><&#33;[if &#33;supportLists]><spanstyle='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]><span class=SpellE>iObject.h</span></p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>I.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add ‘class <span class=SpellE>iMaterial</span>’to the top of the file with the rest of the declarations</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>II.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add a virtual getting and setter for theObject’s material</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>III.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add two more virtual functions, one called <spanclass=SpellE>getID</span>, receives an <span class=SpellE>int</span> andreturns an <span class=SpellE>int</span>, and second one called <spanclass=SpellE>resetID</span> which receives an <span class=SpellE>int</span> andreturns nothing.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:72.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l0 level2 lfo1'><&#33;[if &#33;supportLists]><spanstyle='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]><span class=SpellE>Object.h</span></p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>I.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add a private <span class=SpellE>iMaterial</span>pointer to the object named <span class=SpellE>rMaterial</span> (you couldchange it to w/e you want, but it won’t be as easy to copy/paste code if youdon’t)</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>II.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Implement the getter and setter in the in theObject header, in the setter, change the category of the object to MATERIAL.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>III.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Remove the braces after Object’s <spanclass=SpellE><span class=GramE>preDraw</span></span><span class=GramE>(</span>)function, we are going to need to implement this function in the <spanclass=SpellE>cpp</span>.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>IV.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add a private <span class=SpellE>int</span>array called get <span class=SpellE>cubeMapID</span>, which for thisimplementation<span class=GramE>,<span style='mso-spacerun:yes'>  </span>it</span>can be an array of 2 items, since reflection depth will not be implemented.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>V.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Implement <span class=SpellE>getID</span> and <spanclass=SpellE>resetID</span>, get id returns the <span class=SpellE>int</span>at level in the <span class=SpellE>cubeMapID</span> array (return <spanclass=SpellE><span class=GramE>cubeMapID</span></span><span class=GramE>[</span>level];)and <span class=SpellE>resetID</span> sets the <span class=SpellE>int</span> atlevel in the <span class=SpellE>cubeMapID</span> to -1.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:72.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l0 level2 lfo1'><&#33;[if &#33;supportLists]><spanstyle='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Object.cpp</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>I.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Add ‘#<span class=GramE>include</span><spanclass=SpellE>iMaterial.h</span>’ at the top.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>II.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>In the object constructor add ‘<spanclass=SpellE>rMaterial</span> = NULL’, just to be safe, also set <spanclass=SpellE>cubeMapID</span> [0] and [1] to -1.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>III.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>In the object’s = operator, set <spanclass=SpellE><span class=GramE>CubeMapID</span></span><span class=GramE>[</span>0]and [1] to -1.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>IV.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>In the Object’s attach function,<spanstyle='mso-spacerun:yes'>  </span>check if the category is set to MATERIAL andthat <span class=SpellE>rMaterial</span> isn’t NULL, if true, use Material’s <spanclass=SpellE>setStage</span>, if category is not set to MATERIALS then use thecode already there (Remember, if reading this is confusing, you can always copythe code, this is just trying to explain what to do)</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>V.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Above the draw function, add the implementationof the <span class=SpellE>preDraw</span>, which is simple. Check if thecategory is set to MATERIAL and <span class=SpellE>rMaterial</span> isn’t NULL,if true, set the <span class=SpellE>cubeMapID</span> (at index of <spanclass=SpellE>rMaterial</span>-&gt;<span class=SpellE><span class=GramE>getDepth</span></span><spanclass=GramE>(</span>)) to <span class=SpellE>dthe</span> result of <spanclass=SpellE>rMaterial</span>-&gt;<span class=SpellE>getCubeID</span>(this).Finally call the <span class=SpellE>preDraw</span> function on <spanclass=SpellE>rMaterial</span> and pass it a reference to the object (this), <spanclass=SpellE>vertexlist</span> pointer, and scene pointer.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>VI.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Mod the Object’s draw function to test if thecategory is set to MATERIAL, if it is and<span style='mso-spacerun:yes'> </span><span class=SpellE>rMaterial</span> isn’t NULL, call the draw functionon the material (passing in the object and scene) in place of using the attachand draw code in the function, the report should occur regardless.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:108.0pt;mso-add-space:auto;text-indent:-108.0pt;mso-text-indent-alt:-9.0pt;mso-list:l0 level3 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>VII.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>In the suspend code, check if <spanclass=SpellE>rMaterial</span> is NULL, if not, call suspend on it. Do the samefor release.</p><p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>5)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Open Display.cpp,<spanstyle='mso-spacerun:yes'>  </span>#include <span class=SpellE>Material.h</span>and call the static function <span class=SpellE>connectDevice</span> fromMaterial, this will give material access to the device and below, call thestatic function <span class=SpellE>connectEffect</span>, giving Material accessto the effect file.</p><p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>6)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>The system requires a knowledge of the verticesof the in a mesh, so you have to go to <span class=SpellE>iVertex</span> listand add two virtual functions<span class=GramE>,<spanstyle='mso-spacerun:yes'>  </span>‘<span class=SpellE>int</span></span><spanclass=SpellE>getNumOfVerts</span>()’ and ‘Vertex* <span class=SpellE>getVertitices</span>()’.Now you have to go into the <span class=SpellE>VertexList</span> class,implement these functions to return <span class=SpellE>nVertices</span> andVertex.<span style='mso-spacerun:yes'>  </span>You also need to make animplementation for stock mesh, simply give return NULL for both stock meshimplementations. <br>NOTE: If you already have your object’s center and radius calculated or easilyaccessible, you can skip this step and alter the code in the Material class touse that data instead of calculating the center from the vertex list.</p><p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt;mso-list:l0 level1 lfo1'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>7)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Open Design.cpp and #include <span class=SpellE>iMaterial.h</span>.<spanstyle='mso-spacerun:yes'>  </span>Add scene-&gt;<span class=GramE>draw(</span>MATERIAL);to Design’s draw function and scene-&gt;draw(MATERIAL); to Design’s <spanclass=SpellE>preDraw</span>.</p><p class=MsoNormal>This will give you the ability to use the Material classwith your object to give them a nice reflective or refracting effect.</p><p class=MsoNormal>How to use Material:</p><p class=MsoNormal>To use a material, follow these few steps:</p><p class=MsoListParagraphCxSpFirst style='margin-left:54.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l3 level1 lfo5'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>1)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Create a Material<span class=GramE>:</span><br><span class=SpellE><i style='mso-bidi-font-style:normal'>iMaterial</i></span><istyle='mso-bidi-font-style:normal'>* mat = <span class=SpellE>CreateMaterial</span>(<spanclass=SpellE>contextPointer</span>, <span class=SpellE>numberOfStages</span>, <spanclass=SpellE>numberOfSubsets</span>);<br></i>NOTES: if the material only have one stage and subset, only pass incontext.</p><p class=MsoListParagraphCxSpMiddle style='margin-left:54.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l3 level1 lfo5'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>2)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Setup the material<span class=GramE>:</span><br><i style='mso-bidi-font-style:normal'>mat-&gt;setup(<span class=SpellE>arrayOfBasicColors</span>,<span class=SpellE>twoDimensionalTextureArray</span>, <span class=SpellE>arrayOfColorsRepresentingReflection</span>,<span class=SpellE>arrayOfRefractionPowers</span>, <span class=SpellE>twoDimensionalArrayOfColorsRepresentingRefraction</span>,<span class=SpellE>ObjectShine</span>, <span class=SpellE>ObjectFlags</span>, <spanclass=SpellE>ObjectBorderColor</span>);</i><br>NOTE: If you specify only one subset/stage, you can simply put in a pointers tothis data, but if you specify more than one subset or stage, you <spanstyle='mso-spacerun:yes'> </span>must implement the data in an array OR pass inNULL. The alpha channel determines how strong the effect of the reflection orrefraction will be, and they are both over-riding effects, reflection being themost over-riding of the two. <span style='mso-spacerun:yes'> </span>So ifrefraction’s alpha channel is 1.0, the object’s color and texture will becompletely gone, the object will only have the refracted texture on it. If thealpha channel is 0.5, then it will be half refracted texture, halfcolor/diffuse texture. The same works with reflection except that reflectionwill over-ride refraction, so if an object is 100% refractive and 100%reflective, you will only see the reflection. Where as if the reflection is 50%and refraction is 50%, the distribution of the texture will be 50% reflective,25% refractive, 25% diffuse. The refractive power float array dictates how muchthe light bends, so if it is equal to 1.0, the light will not bend at all,where as if it is set to 0.9, it will bend about 10% of the angle of the normalof the fragment.</p><p class=MsoListParagraphCxSpLast style='margin-left:54.0pt;mso-add-space:auto;text-indent:-18.0pt;mso-list:l3 level1 lfo5'><&#33;[if &#33;supportLists]><spanstyle='mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'><spanstyle='mso-list:Ignore'>3)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><&#33;[endif]>Set the material onto the object<spanclass=GramE>:</span><br><i style='mso-bidi-font-style:normal'>object-&gt;<span class=SpellE>setMaterial</span>(mat);</i><br>NOTE: this will convert the object to a material object and attach thematerial.</p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>A quick example of how to make a glass like cube would be:</p><p class=MsoNormal><br><span class=SpellE><i style='mso-bidi-font-style:normal'>iObject</i></span><istyle='mso-bidi-font-style:normal'>* boxy = <span class=SpellE>CreateBox</span>(-10.0f, 0.25),-10,-10, 10, 10, 10, “opaque”&power, &Colour(1.0f, 1.0f, 1.0f,1.0f));<br><span class=SpellE>iMaterial</span>* mat = <span class=SpellE>CreateMaterial</span\\ boxy->setMaterial(context);<br>float power = 0.9f; //this is just to sidestep the need for an array<br>mat-&gt;setup(&amp;Colour(0.7f, 0.7f, 0.7f, 0.7f), NULL, &amp;Colour(1.0f,_1.0f, 1.0f, 0.25), &amp;power, &amp;Colour(1.0f, 1.0f, 1.0f, 1.0f));<br>boxy-&gt;<span class=SpellE>setMaterial</span>(mat);<o:p></o:p></i></p><p class=MsoNormal>I didn’t test the above code so there could be a typo.</p></div></body></html>

Navigation menu