<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Game Producer Christmas Calendar &#8211; Day 8 (Object Oriented Code Design Patterns)</title>
	<atom:link href="http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/</link>
	<description>I&#039;m baking games. Indie style.</description>
	<lastBuildDate>Sun, 12 Feb 2012 18:37:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Sargon</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132323</link>
		<dc:creator>Sargon</dc:creator>
		<pubDate>Fri, 12 Dec 2008 19:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132323</guid>
		<description>Oh, and clearly, a programmer that always think out of the box is a dissaster.
Programming shouldn&#039;t be a difficult task most of the time. Thinking out of the box requires allot of effort from your brain, you are reinventing the wheel in places you shouldn&#039;t put so much effort, because there is a simple solution.
You need to be creative only at 1% of your program&#039;s code, and be laid back in the rest of the 99% of your program&#039;s code.</description>
		<content:encoded><![CDATA[<p>Oh, and clearly, a programmer that always think out of the box is a dissaster.<br />
Programming shouldn&#8217;t be a difficult task most of the time. Thinking out of the box requires allot of effort from your brain, you are reinventing the wheel in places you shouldn&#8217;t put so much effort, because there is a simple solution.<br />
You need to be creative only at 1% of your program&#8217;s code, and be laid back in the rest of the 99% of your program&#8217;s code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sargon</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132322</link>
		<dc:creator>Sargon</dc:creator>
		<pubDate>Fri, 12 Dec 2008 19:01:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132322</guid>
		<description>tonic, although I didn&#039;t read the affordmentioned book. The guy clearly don&#039;t know what design patterns are for.
I could explain what are design patterns with an example.
Imagine you are a warrior that trains for an upcoming war. You have never fought in your life before.
So they give you a wooden sword to practice.
This wooden sword is very valuable, because it allows you to improove your fighting skills.
However, in battle, the wooden sword is useless. You will want a steel sword, or even some other weapon like an axe would be good, even though you practiced on a wooden sword.
Design patterns are this wooden sword.</description>
		<content:encoded><![CDATA[<p>tonic, although I didn&#8217;t read the affordmentioned book. The guy clearly don&#8217;t know what design patterns are for.<br />
I could explain what are design patterns with an example.<br />
Imagine you are a warrior that trains for an upcoming war. You have never fought in your life before.<br />
So they give you a wooden sword to practice.<br />
This wooden sword is very valuable, because it allows you to improove your fighting skills.<br />
However, in battle, the wooden sword is useless. You will want a steel sword, or even some other weapon like an axe would be good, even though you practiced on a wooden sword.<br />
Design patterns are this wooden sword.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tonic</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132315</link>
		<dc:creator>tonic</dc:creator>
		<pubDate>Thu, 11 Dec 2008 02:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132315</guid>
		<description>http://realtimecollisiondetection.net/blog/?p=44</description>
		<content:encoded><![CDATA[<p><a href="http://realtimecollisiondetection.net/blog/?p=44" rel="nofollow">http://realtimecollisiondetection.net/blog/?p=44</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hObbE</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132266</link>
		<dc:creator>hObbE</dc:creator>
		<pubDate>Mon, 08 Dec 2008 20:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132266</guid>
		<description>I have made many designs both for games and other softwares. Some has relied heavily on the classic GoF design patterns others have not. In my experience heavy use of design patterns (patternitis) have a tendency to over generalize the design and make it very hard to understand and thus maintain.

As of late I have gravitated more or less towards more specific designs using techniques as &lt;a href=&quot;http://www.spellofplay.com/tags/imgui/&quot; rel=&quot;nofollow&quot;&gt;immediate mode gui&lt;/a&gt; and such.

However, I do use some patterns when needed (Model-View-Controller for example), and I do stay away from some patterns (like Singleton). Also reading about and implementing patterns is a great way to learn more about oo-programming and design.

You can also become more efficient when communicating to others if you can just name a pattern and not need to go into specifics.

In that respect, I think you should at least have a basic knowledge about patterns.</description>
		<content:encoded><![CDATA[<p>I have made many designs both for games and other softwares. Some has relied heavily on the classic GoF design patterns others have not. In my experience heavy use of design patterns (patternitis) have a tendency to over generalize the design and make it very hard to understand and thus maintain.</p>
<p>As of late I have gravitated more or less towards more specific designs using techniques as <a href="http://www.spellofplay.com/tags/imgui/" rel="nofollow">immediate mode gui</a> and such.</p>
<p>However, I do use some patterns when needed (Model-View-Controller for example), and I do stay away from some patterns (like Singleton). Also reading about and implementing patterns is a great way to learn more about oo-programming and design.</p>
<p>You can also become more efficient when communicating to others if you can just name a pattern and not need to go into specifics.</p>
<p>In that respect, I think you should at least have a basic knowledge about patterns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sargon</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132262</link>
		<dc:creator>Sargon</dc:creator>
		<pubDate>Mon, 08 Dec 2008 16:38:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132262</guid>
		<description>Programming is a bit like swiming, you can&#039;t learn it by only reading a book.
Design patterns are just structures to give you basic ideas how to exploit an object oriented langauge.
When you create a number of classes, those classes will most likely be a mixture of bits from several design patterns.
So it helps allot to learn design pattern to get the idea of how you are suppose to solve problems.
However, there is no single or right solution for every programming problem.
You may solve a certain programming problem in several different ways.
Because there is an informal part of programming, and the ability for anyone to give you a formula to use as is, is very limited.
That is why when someone try to help you learn how to design your code well, he can only give you a general idea, concepts, atitudes. He cannot tell you &quot;Do exactly as I say and your program will be perfect&quot;.</description>
		<content:encoded><![CDATA[<p>Programming is a bit like swiming, you can&#8217;t learn it by only reading a book.<br />
Design patterns are just structures to give you basic ideas how to exploit an object oriented langauge.<br />
When you create a number of classes, those classes will most likely be a mixture of bits from several design patterns.<br />
So it helps allot to learn design pattern to get the idea of how you are suppose to solve problems.<br />
However, there is no single or right solution for every programming problem.<br />
You may solve a certain programming problem in several different ways.<br />
Because there is an informal part of programming, and the ability for anyone to give you a formula to use as is, is very limited.<br />
That is why when someone try to help you learn how to design your code well, he can only give you a general idea, concepts, atitudes. He cannot tell you &#8220;Do exactly as I say and your program will be perfect&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lumooja</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132261</link>
		<dc:creator>Lumooja</dc:creator>
		<pubDate>Mon, 08 Dec 2008 16:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132261</guid>
		<description>While game engines are sure easier to maintain and develop in OOP, for the actual game logic it&#039;s better to use a straight forward procedural language.

The game logic is often (or should be) based on complex macro functions, like PopulateWorld() or UpdateEnemies() or ResurrectPlayer(), which is also reflected in in-game scripting languages like LUA. OOP doesn&#039;t make much sense here, since the game engine already does the OOP part internally, so the user kinda only tells the engine classes in human like language to do what is wanted.</description>
		<content:encoded><![CDATA[<p>While game engines are sure easier to maintain and develop in OOP, for the actual game logic it&#8217;s better to use a straight forward procedural language.</p>
<p>The game logic is often (or should be) based on complex macro functions, like PopulateWorld() or UpdateEnemies() or ResurrectPlayer(), which is also reflected in in-game scripting languages like LUA. OOP doesn&#8217;t make much sense here, since the game engine already does the OOP part internally, so the user kinda only tells the engine classes in human like language to do what is wanted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.gameproducer.net/2008/12/08/game-producer-christmas-calendar-day-8-object-oriented-code-design-patterns/comment-page-1/#comment-132260</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 08 Dec 2008 13:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.gameproducer.net/?p=1906#comment-132260</guid>
		<description>Composition is THE design pattern for games :)</description>
		<content:encoded><![CDATA[<p>Composition is THE design pattern for games :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

