Difference between revisions of "Game Programming Class14"

esse quam videri
Jump to: navigation, search
(Lighting)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Manifest==
+
Cocos2D XNA http://www.cocos2dxna.com/
Game Challenge
 
  
==Animation Tutorial==
+
Originally written in python
*http://www.stromcode.com/2008/03/10/modelling-for-xna-with-blender-part-i/
 
*http://www.stromcode.com/2008/03/11/modelling-for-xna-with-blender-part-ii/
 
*http://www.stromcode.com/2008/03/13/modeling-for-xna-with-blender-iii/
 
*http://www.stromcode.com/2008/03/16/modeling-for-xna-with-blender-part-iv/
 
  
==Mixing 2D and 3D==
+
Other Versions
I forgot to show you last week that the Spritebatch draw code need to be modified slightly in order top mix 2D and 3D
 
You need to use SaveStateMode.SaveSate if you don't explicitly order everything in your Draw code. Saving states can be SLOOWWWWW and significantly reduce your performance. [http://blogs.msdn.com/shawnhar/archive/2006/11/13/spritebatch-and-renderstates.aspx More info on RenderStates]
 
       
 
<pre>spriteBatch.Begin(SpriteBlendMode.AlphaBlend, SpriteSortMode.Deferred, SaveStateMode.SaveState);
 
</pre>
 
  
==Lighting==
+
*http://cocos2d.org/ python
 +
*http://www.cocos2d-iphone.org/ objective-c
 +
*http://www.cocos2d-x.org/ c++
  
The XNA basic effect is a simple implementation of a [http://msdn.microsoft.com/en-us/library/bb509561%28VS.85%29.aspx HLSL] effect.
+
Angry Ninjas
   
 
HLSL is Microsoft's High level implementation of FFE Fixed Function Pipeline implemented in video hardware.
 
GPU Hardware does two things. The vertex shader runs first and is rasterized to 2D, then the pixel shaders run.
 
  
* Vertex Shader
+
https://github.com/Xamarin/AngryNinjas
* Pixel Shader
 
 
 
Lighting Demo with Basic Effect IntroMeshLights.zip
 
 
 
=HLSL=
 
HLSL Demo
 
 
 
http://code.msdn.microsoft.com/HLSL
 
 
 
[http://creators.xna.com/en-US/sample/nonrealisticrendering Creators Club Non Realistic Render]
 
 
[http://www.riemers.net/eng/Tutorials/XNA/Csharp/Series1/Lighting_basics.php Lighting basics]
 
 
 
[http://www.riemers.net/eng/Tutorials/XNA/Csharp/Series3/Per-pixel_lighting.php/ Per-pixel lighting]
 
 
 
==SkyBox==
 
 
 
IntroMeshLightsSkyBox.zip
 
 
 
Skybox generator
 
 
 
===Making Skyboxes===
 
* [http://www.planetside.co.uk/terragen/ with Terragen]
 
* [http://www.stromcode.com/2008/03/30/building-an-xna-skybox-with-blender/ with Blender]
 

Latest revision as of 03:57, 4 December 2013

Cocos2D XNA http://www.cocos2dxna.com/

Originally written in python

Other Versions

Angry Ninjas

https://github.com/Xamarin/AngryNinjas