Friday, March 23, 2007

NEW XNA BLOG: "ADVICE FROM THE SWAMP"

There's a new blogger in the XNA Community: Thomas Aylesworth (you can also see screenshots and or download his game: "Space Invasion").

And he's opened with a great subject ...one of the topics that Shawn likes most :) ... Software Efficiency and Optimization (Part 1).

As you an see this is the first installment of a series so stay tuned to his blog.

Cheers!

DAVID WELLER SAYS "WE ARE HIRING!"

Dave's latest post informs that there are 5 opening jobs in the "XNA Developer Connection" organization, so if you're interested and think you qualify just follow the links included in his post to submit your resume.

Good luck!

[When will be the day when only C# is requested? ... C++ is still a must ... also, what about "tele-working"? ... ok, let's stop the daydream ... back to the ultracave!]

AN AD-HOC 3D PRIMER

Things have been a bit quiet in the XNA world lately -like a calm before the storm, so I decided to post some useful links for those who want to do the first steps into 3D and thus, need to understand some basic concepts.

First things first, mathematical concepts: undertanding vectors and matrices. You will learn how to operate with both as well as understand some relevant concepts like the difference between dot and cross products. Of course, further separated reads can be found on vectors and matrices.

Assuming that you've got that clear, you can then move onto the next concept: coordinate systems. What's the difference between local and world coordinates? What's tangent space? You'll get a first glimpse to these concepts, dont' worry.

Now enters transformation matrices. So, what's a transformation matrix? You will learn that in order to get the desired and or correct 3D projection, the order how you operate with matrices is the key.

Ok, let's take a larger step here, ... this topic is not particularly referred to 3D only, but it comes very handy when you want to build a game engine and start dealing with parent and children objects moving along together and thus, with matrices concatenation: scene-graph.

Implementing a scenegraph varies on a per-project basis, but if you understand the basic concepts you will do well, even if you don't (want to) call it a scene-graph in your source code or want to avoid its whole implementation but still preserve its functionality.

Well, as you can see, this is just an ad-hoc primer, built by just browsing the web with the help of search engines, so if you don't have money to buy a good book on the subject you will find that Internet is a great place to find the information you need if you're patient while searching.

Have a nice read ...