<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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>EternalPower</title>
	<atom:link href="http://www.eternalpower.de/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.eternalpower.de</link>
	<description>Ein weiteres tolles WordPress-Blog</description>
	<pubDate>Sat, 28 Feb 2009 12:45:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ansi nach UTF-8 Converter</title>
		<link>http://www.eternalpower.de/?p=41</link>
		<comments>http://www.eternalpower.de/?p=41#comments</comments>
		<pubDate>Sat, 28 Feb 2009 12:37:18 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Programmieren]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=41</guid>
		<description><![CDATA[Nach langer Zeit mal wieder ein neuer Blogeintrag  
Nachdem ich den Webserver wechseln musste, wurde auch gleichzeitig der Apache auf UTF-8 umgestellt, so dass ich meine gesamten Seiten konvertieren musste. Da ich dieses nicht von Hand erledigen wollte schrieb ich mir ein Programm, was dieses für mich erledigt:
Dieses wird mit einem Eingabepfad aufgerufen und [...]]]></description>
			<content:encoded><![CDATA[<p>Nach langer Zeit mal wieder ein neuer Blogeintrag <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nachdem ich den Webserver wechseln musste, wurde auch gleichzeitig der Apache auf UTF-8 umgestellt, so dass ich meine gesamten Seiten konvertieren musste. Da ich dieses nicht von Hand erledigen wollte schrieb ich mir ein Programm, was dieses für mich erledigt:</p>
<p>Dieses wird mit einem Eingabepfad aufgerufen und durchsucht alle Dateien in dem Ordner nach den in einem Array angegebenen Dateiextensions. Wird eine gefunden, wird diese konvertiert. Entsprechendes gilt auch für alle Unterordner von dem gegebenem Pfad. Da ich nicht alle Ordner erneut uploaden wollte, hab ich mir ausgeben lassen in welchen Unterordnern Dateien verändert worden sind.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #FF0000;">class</span> Converter
    <span style="color: #000000;">&#123;</span>
        <span style="color: #0600FF;">static</span> Encoding sourceEncoding <span style="color: #008000;">=</span> Encoding.<span style="color: #0000FF;">GetEncoding</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">1252</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">static</span> Encoding destinationEncoding <span style="color: #008000;">=</span> Encoding.<span style="color: #0000FF;">UTF8</span><span style="color: #008000;">;</span>
        <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">string</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> extensions <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> <span style="color: #FF0000;">string</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#123;</span> <span style="color: #666666;">&quot;.tpl&quot;</span>, <span style="color: #666666;">&quot;.htm&quot;</span> <span style="color: #000000;">&#125;</span><span style="color: #008000;">;</span>
&nbsp;
        <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">void</span> Encode<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> filename<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            StreamReader reader <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> StreamReader<span style="color: #000000;">&#40;</span>filename, sourceEncoding<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">string</span> content <span style="color: #008000;">=</span> reader.<span style="color: #0000FF;">ReadToEnd</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            reader.<span style="color: #0000FF;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
            StreamWriter writer <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> StreamWriter<span style="color: #000000;">&#40;</span>filename, <span style="color: #0600FF;">false</span>, destinationEncoding<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            writer.<span style="color: #0000FF;">Write</span><span style="color: #000000;">&#40;</span>content<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            writer.<span style="color: #0000FF;">Flush</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            reader.<span style="color: #0000FF;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">void</span> RecursiveReader<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> path<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            DirectoryInfo info <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> DirectoryInfo<span style="color: #000000;">&#40;</span>path<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
            DirectoryInfo<span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> subDirs <span style="color: #008000;">=</span> info.<span style="color: #0000FF;">GetDirectories</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            FileInfo<span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> files <span style="color: #008000;">=</span> info.<span style="color: #0000FF;">GetFiles</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #FF0000;">bool</span> ouputDirectoryName <span style="color: #008000;">=</span> true<span style="color: #008000;">;</span>
&nbsp;
            <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>FileInfo file <span style="color: #0600FF;">in</span> files<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> extension <span style="color: #0600FF;">in</span> extensions<span style="color: #000000;">&#41;</span>
                <span style="color: #000000;">&#123;</span>
                    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>file.<span style="color: #0000FF;">Extension</span>.<span style="color: #0000FF;">ToLower</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">Equals</span><span style="color: #000000;">&#40;</span>extension<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
                    <span style="color: #000000;">&#123;</span>
                        Encode<span style="color: #000000;">&#40;</span>file.<span style="color: #0000FF;">FullName</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>ouputDirectoryName<span style="color: #000000;">&#41;</span>
                        <span style="color: #000000;">&#123;</span>
                            Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;At least one file was converted in path: {0}.&quot;</span>, path<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
                            ouputDirectoryName <span style="color: #008000;">=</span> false<span style="color: #008000;">;</span>
                        <span style="color: #000000;">&#125;</span>
                        continue<span style="color: #008000;">;</span>
                    <span style="color: #000000;">&#125;</span>
                <span style="color: #000000;">&#125;</span>
            <span style="color: #000000;">&#125;</span>
&nbsp;
            <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>DirectoryInfo dir <span style="color: #0600FF;">in</span> subDirs<span style="color: #000000;">&#41;</span>
            <span style="color: #000000;">&#123;</span>
                RecursiveReader<span style="color: #000000;">&#40;</span>dir.<span style="color: #0000FF;">FullName</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">void</span> Main<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> args<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            RecursiveReader<span style="color: #000000;">&#40;</span><span style="color: #666666;">@&quot;c:\ToConvert\&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            Console.<span style="color: #0000FF;">ReadLine</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>
    <span style="color: #000000;">&#125;</span></pre></div></div>

<p>Sourcecode: <a href='http://www.eternalpower.de/wp-content/uploads/2009/02/ansitoutf8converter.cs'>ANSItoUTF-8Converter.cs</a></p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=41</wfw:commentRss>
		</item>
		<item>
		<title>Upload Carbon Videos</title>
		<link>http://www.eternalpower.de/?p=37</link>
		<comments>http://www.eternalpower.de/?p=37#comments</comments>
		<pubDate>Tue, 03 Jun 2008 19:54:49 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Spiele]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=37</guid>
		<description><![CDATA[Hallo,
um den integrierten Stream Player mal zu testen hab ich einfach mal 2 Videos hochgeladen. Kommentare sind wie immer Willkommen. Bitte schont aber meinen Traffik  
Video 1 - Einfacher Drift über einer meiner Lieblingscanyonstrecken von Carbon:Video 2 - Perfekter Lasterdrift. Hab ich noch nicht mal auf Youtube von wem anders gefunden ;)Viel Spass beim [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>um den integrierten Stream Player mal zu testen hab ich einfach mal 2 Videos hochgeladen. Kommentare sind wie immer Willkommen. Bitte schont aber meinen Traffik <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Video 1 - Einfacher Drift über einer meiner Lieblingscanyonstrecken von Carbon:</p>
[Bitte schauen Sie sich den vollständigen Beitrag an, um das Video zu sehen.]
<p>Video 2 - Perfekter Lasterdrift. Hab ich noch nicht mal auf Youtube von wem anders gefunden <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
[Bitte schauen Sie sich den vollständigen Beitrag an, um das Video zu sehen.]
<p>Viel Spass beim Anschauen.</p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=37</wfw:commentRss>
		</item>
		<item>
		<title>Redesign of Gatelock UI</title>
		<link>http://www.eternalpower.de/?p=34</link>
		<comments>http://www.eternalpower.de/?p=34#comments</comments>
		<pubDate>Sun, 01 Jun 2008 12:03:02 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Gatelock]]></category>

		<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=34</guid>
		<description><![CDATA[After finishing the redesign of my homepage, i started to publish the new interface changes to Gatelock.
First of all the old interface design of the main screen:
and here are the two new proposals:
the first one is a futuristic one:
and the second one tries to keep it a little bit simpler and cleaner:
We decided to take [...]]]></description>
			<content:encoded><![CDATA[<p>After finishing the redesign of my homepage, i started to publish the new interface changes to Gatelock.</p>
<p>First of all the old interface design of the main screen:</p>

<a href="http://www.eternalpower.de/wp-content/gallery/gatelock/gatelock02.jpg" title="" class="shutterset_singlepic768" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=768&amp;width=150&amp;height=112&amp;mode=web20" alt="gatelock02.jpg" title="gatelock02.jpg" width="150" height="112" />
</a>

<p>and here are the two new proposals:</p>
<p>the first one is a futuristic one:</p>

<a href="http://www.eternalpower.de/wp-content/gallery/gatelock/olpc-mainscreen-p1.png" title="" class="shutterset_singlepic783" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=783&amp;width=150&amp;height=112&amp;mode=web20" alt="olpc-mainscreen-p1.png" title="olpc-mainscreen-p1.png" width="150" height="112" />
</a>

<p>and the second one tries to keep it a little bit simpler and cleaner:</p>

<a href="http://www.eternalpower.de/wp-content/gallery/gatelock/olpc-mainscreen-p4.png" title="" class="shutterset_singlepic790" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=790&amp;width=150&amp;height=112&amp;mode=web20" alt="olpc-mainscreen-p4.png" title="olpc-mainscreen-p4.png" width="150" height="112" />
</a>

<p>We decided to take the blue one as new design for the main interface. Comments are welcome. We accept both (good and bad respones) <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The second change we&#8217;ve done is to design a complete new development interface. Take a look into the gallery to see it. (The last seven pictures in the Gatelock gallery)</p>
<div class="ngg-albumoverview">	
	<!-- List of galleries -->
	
	<div class="ngg-album">
		<div class="ngg-albumtitle"><a href="/?feed=rss2&amp;album=1&amp;gallery=9">Projekt G.a.t.e.l.o.c.k.</a></div>
			<div class="ngg-albumcontent">
				<div class="ngg-thumbnail">
					<a href="/?feed=rss2&amp;album=1&amp;gallery=9"><img class="Thumb" alt="Projekt G.a.t.e.l.o.c.k." src="http://www.eternalpower.de/wp-content/gallery/gatelock/thumbs/thumbs_gatelock01.jpg"/></a>
				</div>
				<div class="ngg-description">
				<p>Bilder zu meinem Diplomarbeitsthema:
Erstellung einer kindgerechten Entwicklungsumgebung für den OLPC (Game Authoring Tool for Education Learning for OLpc Kids)</p>
				<p><strong>21</strong> Fotos</p>
			</div>
		</div>
	</div>

 	
	<div class="ngg-album">
		<div class="ngg-albumtitle"><a href="/?feed=rss2&amp;album=1&amp;gallery=2">OLPC - Bilder</a></div>
			<div class="ngg-albumcontent">
				<div class="ngg-thumbnail">
					<a href="/?feed=rss2&amp;album=1&amp;gallery=2"><img class="Thumb" alt="OLPC - Bilder" src="http://www.eternalpower.de/wp-content/gallery/olpc/thumbs/thumbs_img_0613.jpg"/></a>
				</div>
				<div class="ngg-description">
				<p>Im Rahmen der Diplomarbeit wurden mir mehrere OLPC Prototypen zur Verfügung gestellt. Einige Impressionen möchte ich in dieser Gallerie zeigen.</p>
				<p><strong>38</strong> Fotos</p>
			</div>
		</div>
	</div>

 	
</div>
<div class="ngg-clear"></div>

<p>regards<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=34</wfw:commentRss>
		</item>
		<item>
		<title>Upload OLPC Bilder</title>
		<link>http://www.eternalpower.de/?p=25</link>
		<comments>http://www.eternalpower.de/?p=25#comments</comments>
		<pubDate>Tue, 19 Jun 2007 17:45:29 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Gatelock]]></category>

		<category><![CDATA[OLPC]]></category>

		<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=25</guid>
		<description><![CDATA[Hallo,
nachdem wir für die Lange Nacht der Wissenschaft einen OLPC von Dr. Bert Freudenberg (Impara GmbH) geliehen bekommen haben, hat sich für mich die Möglichkeit ergeben ein paar Impressionen von dem OLPC festhalten zu dürfen.
Natürlich möchte ich euch diese nicht vorenthalten, deshalb hier ein paar Auszüge:

Die Bilder zeigen unser Hauptmenu (des OLPC Projekts: Gatelock) im [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>nachdem wir für die <a title="Lange Nacht der Wissenschaft" href="http://www.magdeburg.de/wissenschaft/lndw.php?nav=6&amp;content=698.2676.1" target="_blank">Lange Nacht der Wissenschaft</a> einen OLPC von Dr. Bert Freudenberg (<a title="Impara GmbH" href="http://www.impara.de/" target="_blank">Impara GmbH</a>) geliehen bekommen haben, hat sich für mich die Möglichkeit ergeben ein paar Impressionen von dem OLPC festhalten zu dürfen.</p>
<p>Natürlich möchte ich euch diese nicht vorenthalten, deshalb hier ein paar Auszüge:</p>
<p style="text-align: center;">
<div class="ngg-albumoverview">		

	<!-- List of galleries -->
		
	<div class="ngg-album-compact">
		<div class="ngg-album-compactbox">
			<div class="ngg-album-link">
				<a class="Link" href="/?feed=rss2&amp;album=1&amp;gallery=9">
					<img class="Thumb" alt="Projekt G.a.t.e.l.o.c.k." src="http://www.eternalpower.de/wp-content/gallery/gatelock/thumbs/thumbs_gatelock01.jpg"/>
				</a>
			</div>
		</div>
		<h4><a class="ngg-album-desc" title="Projekt G.a.t.e.l.o.c.k." href="/?feed=rss2&amp;album=1&amp;gallery=9" >Projekt G.a.t.e.l.o.c.k.</a></h4>
		<p><strong>21</strong> Fotos</p>
	</div>

 		
	<div class="ngg-album-compact">
		<div class="ngg-album-compactbox">
			<div class="ngg-album-link">
				<a class="Link" href="/?feed=rss2&amp;album=1&amp;gallery=2">
					<img class="Thumb" alt="OLPC - Bilder" src="http://www.eternalpower.de/wp-content/gallery/olpc/thumbs/thumbs_img_0613.jpg"/>
				</a>
			</div>
		</div>
		<h4><a class="ngg-album-desc" title="OLPC - Bilder" href="/?feed=rss2&amp;album=1&amp;gallery=2" >OLPC - Bilder</a></h4>
		<p><strong>38</strong> Fotos</p>
	</div>

 	
</div>
<div class="ngg-clear"></div>


<p>Die Bilder zeigen unser Hauptmenu (des OLPC Projekts: <a title="Gatelock" href="?cat=6" target="_blank">Gatelock</a>) im &#8220;normalen&#8221; Modus sowie im Schwarz Weiß Modus, welcher durch eine speziele TFT Technik erreicht wird. Trifft Sonnenlicht auf das Display, werden keine Farben mehr angezeigt, dafür ist das Bild im Schwarz Weiß Modus besonders gut zu erkennen und dies auch bei direkter Sonneneinstrahlung.</p>
<p>Viele weitere Bilder können natürlich in meiner <a title="Galerie" href="?page_id=4&amp;album=1&amp;gallery=2" target="_blank">Galerie</a> betrachtet werden&#8230;</p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=25</wfw:commentRss>
		</item>
		<item>
		<title>XNA Bomberman - Erste Screenshots</title>
		<link>http://www.eternalpower.de/?p=24</link>
		<comments>http://www.eternalpower.de/?p=24#comments</comments>
		<pubDate>Tue, 29 May 2007 17:36:46 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Projekte]]></category>

		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=24</guid>
		<description><![CDATA[Hallo,
ich habe es endlich mal geschaft, ein paar Impressionen aus meinem Bomberman online zu stellen.
Bild 1 zeigt das Hauptmenü. Es befindet sich alles noch in der Entwicklung zeigt aber schon ganz gut wohin es gehen soll  
PS:
Wer das Spiel zu dem Hintergrund erkennt und als Erster in die Comments schreibt bekommt ein Bienchen  [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich habe es endlich mal geschaft, ein paar Impressionen aus meinem Bomberman online zu stellen.</p>

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen1.png" title="" class="shutterset_singlepic761" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=761&amp;width=150&amp;height=112&amp;mode=web20" alt="screen1.png" title="screen1.png" width="150" height="112" />
</a>

<p>Bild 1 zeigt das Hauptmenü. Es befindet sich alles noch in der Entwicklung zeigt aber schon ganz gut wohin es gehen soll <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PS:<br />
Wer das Spiel zu dem Hintergrund erkennt und als Erster in die Comments schreibt bekommt ein Bienchen <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen2.png" title="" class="shutterset_singlepic762" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=762&amp;width=150&amp;height=112&amp;mode=web20" alt="screen2.png" title="screen2.png" width="150" height="112" />
</a>

<p>Bild 2 zeigt die Startphase:<br />
Bevor das heiße Gefecht losgeht, kommt erstmal ein Zähler, der von 5 runterzählt.<br />

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen3.png" title="" class="shutterset_singlepic763" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=763&amp;width=150&amp;height=112&amp;mode=web20" alt="screen3.png" title="screen3.png" width="150" height="112" />
</a>
</p>
<p>Bild 3 zeigt eine Impression vom Spielgeschehen:<br />
Die Bodentextur wurde ausgetauscht und durch etwas Grasähnliches ersetzt. Aktuell werden die zerstörbaren Elemente einfach nur verkleinert und dann vom Spielfeld genommen. An dieser Stelle fehlen noch die entsprechenden animierten Modelle.<br />

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen4.png" title="" class="shutterset_singlepic764" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=764&amp;width=150&amp;height=112&amp;mode=web20" alt="screen4.png" title="screen4.png" width="150" height="112" />
</a>
</p>
<p>Bild 4 zeigt die EGO-Perspektive:<br />
Tja ja kein 3D Spiel mehr ohne EGO Perspektive&#8230;.wieso also nicht auch ein Bomberman?<br />

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen5.png" title="" class="shutterset_singlepic765" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=765&amp;width=150&amp;height=112&amp;mode=web20" alt="screen5.png" title="screen5.png" width="150" height="112" />
</a>
</p>
<p>Bild 5&#8230;.kurz vor Spielende:<br />
Sollte nur noch 1 Spieler vorhanden sein, ist das Spiel erst vorbei wenn auch die letzte Bombe zerstört ist. Wird er es schaffen ihr auszuweichen?<br />

<a href="http://www.eternalpower.de/wp-content/gallery/xna-bomberman/screen6.png" title="" class="shutterset_singlepic766" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=766&amp;width=150&amp;height=112&amp;mode=web20" alt="screen6.png" title="screen6.png" width="150" height="112" />
</a>
</p>
<p>Bild 6: Er hat es geschaft <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Im Endbildschirm sieht man den rotierenden Spieler und seinen Namen. GUI Elemente werden natürlich ausgeblendet&#8230;</p>
<p>Aktuell fehlen noch Shadereffekte. Erst dann wird Schatten und andere Elemente wie Glow zu sehen sein.</p>
<p>Die Levels basieren auf XML Dateien und können so beliebig editiert werden. Da ich Axenbasierte BoundingBoxes nehme, können Elemente leider noch nicht beliebig rotiert werden, da sonst die BoundingBox dementsprechend zu groß ist bei bestimmten Winkeln. <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' /> </p>
<p>Aber irgendwas muss ich mir ja auch noch für v2.0 aufheben <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<p>Komentare (auch wenns nur einer ist&#8230;sind ausdrücklich erwünscht)</p>
<p>PS:<br />
die Wiese mit dem Bäumen ist natürlich nur ein Hintergrundbild&#8230;solche Grafik bekomme ich noch nicht in Echtzeit gerendert. <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>Upload neuer Bilder</title>
		<link>http://www.eternalpower.de/?p=23</link>
		<comments>http://www.eternalpower.de/?p=23#comments</comments>
		<pubDate>Mon, 14 May 2007 17:28:49 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=23</guid>
		<description><![CDATA[Hallo,
ich war an dem Wochenende vom 03.05 - 07.05 zu Besuch bei meiner Schwester und schaute mir dort Rhein in Flammen an.
Ein paar (111) Impressionen des Feuerwerks stehen nun in meiner Gallerie zum Anschauen bereit.

MfG
Marco
]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich war an dem Wochenende vom 03.05 - 07.05 zu Besuch bei meiner Schwester und schaute mir dort Rhein in Flammen an.</p>
<p>Ein paar (111) Impressionen des Feuerwerks stehen nun in meiner Gallerie zum Anschauen bereit.</p>
<p style="text-align: center;">
<a href="http://www.eternalpower.de/wp-content/gallery/rhein-in-flammen-2007/rhein_in_flammen_028.jpg" title="" class="shutterset_singlepic215" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=215&amp;width=200&amp;height=150&amp;mode=web20" alt="rhein_in_flammen_028.jpg" title="rhein_in_flammen_028.jpg" width="200" height="150" />
</a>

<a href="http://www.eternalpower.de/wp-content/gallery/rhein-in-flammen-2007/rhein_in_flammen_084.jpg" title="" class="shutterset_singlepic269" >
	<img class="ngg-singlepic ngg-center" src="http://www.eternalpower.de/wp-content/plugins/nextgen-gallery/nggshow.php?pid=269&amp;width=200&amp;height=150&amp;mode=web20" alt="rhein_in_flammen_084.jpg" title="rhein_in_flammen_084.jpg" width="200" height="150" />
</a>
</p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=23</wfw:commentRss>
		</item>
		<item>
		<title>First Video</title>
		<link>http://www.eternalpower.de/?p=22</link>
		<comments>http://www.eternalpower.de/?p=22#comments</comments>
		<pubDate>Mon, 14 May 2007 17:25:46 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Gatelock]]></category>

		<category><![CDATA[OLPC]]></category>

		<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=22</guid>
		<description><![CDATA[Hello,
after fixing several problems, i am proud to show you a video of a short game made by Sergej, where you can see a Framerate over 15 FPS. Before Optimization we got only 4 Frames and this whas imposible to play.

regards
Marco
]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>after fixing several problems, i am proud to show you a video of a short game made by Sergej, where you can see a Framerate over 15 FPS. Before Optimization we got only 4 Frames and this whas imposible to play.</p>
<p style="text-align: center;"><br /><img src="http://www.eternalpower.de/wp-content/uploads/olpc-vid01.jpg" alt="media" /><br />
[Bitte schauen Sie sich den vollständigen Beitrag an, um das Video zu sehen.]
<p>regards<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=22</wfw:commentRss>
		</item>
		<item>
		<title>OLPC for Diplomarbeit</title>
		<link>http://www.eternalpower.de/?p=21</link>
		<comments>http://www.eternalpower.de/?p=21#comments</comments>
		<pubDate>Thu, 15 Mar 2007 17:24:17 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Gatelock]]></category>

		<category><![CDATA[OLPC]]></category>

		<category><![CDATA[Projekte]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=21</guid>
		<description><![CDATA[Hello,
first of all, this Blog will be in English, because it will be an international topic.
I will make a game authoring tool for the OLPC, which is the topic of &#8220;my Diplomarbeit&#8221;.
I want to update this Blog recently to show my development process.
The used programming language is Squeak because it is one language which is [...]]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>first of all, this Blog will be in English, because it will be an international topic.</p>
<p>I will make a game authoring tool for the <a title="OLPC" href="http://www.laptop.org/" target="_blank">OLPC</a>, which is the topic of &#8220;my Diplomarbeit&#8221;.</p>
<p>I want to update this Blog recently to show my development process.</p>
<p>The used programming language is <a title="Squeak" href="http://www.squeak.org/" target="_blank">Squeak</a> because it is one language which is supported on OLPC and there is a game engine from <a title="Impara" href="http://www.impara.de/" target="_blank">Impara</a> which i can use.</p>
<p>regards<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=21</wfw:commentRss>
		</item>
		<item>
		<title>Erstellung eines XNA Spiels: XNA Bomberman</title>
		<link>http://www.eternalpower.de/?p=20</link>
		<comments>http://www.eternalpower.de/?p=20#comments</comments>
		<pubDate>Thu, 15 Mar 2007 17:20:55 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Projekte]]></category>

		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=20</guid>
		<description><![CDATA[Hallo,
ich habe mich entschlossen in den nächsten paar Wochen eine Bomberman Umsetzung mit Hilfe des XNA Frameworks zu entwickeln.
Ich werde natürlich auch Screenshots und den aktuellen Entwicklungsstand  posten.
Dieses Spiel wird die Grundlage für weitere vielleicht auch kommerzielle Titel für den Windows PC sein.
MFG
Marco
PS:
Namensvorschläge sind willkommen&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich habe mich entschlossen in den nächsten paar Wochen eine Bomberman Umsetzung mit Hilfe des XNA Frameworks zu entwickeln.</p>
<p>Ich werde natürlich auch Screenshots und den aktuellen Entwicklungsstand  posten.</p>
<p>Dieses Spiel wird die Grundlage für weitere vielleicht auch kommerzielle Titel für den Windows PC sein.</p>
<p>MFG<br />
Marco</p>
<p>PS:<br />
Namensvorschläge sind willkommen&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>Fahrt zur Cebit</title>
		<link>http://www.eternalpower.de/?p=19</link>
		<comments>http://www.eternalpower.de/?p=19#comments</comments>
		<pubDate>Thu, 15 Mar 2007 17:19:24 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.eternalpower.de/?p=19</guid>
		<description><![CDATA[Hallo,
ich habe heute noch eine Eintrittskarte zur Cebit 2007 ergattert und werde nun am Montag zu dieser tollen Veranstaltung fahren.
Meine Erlebnisse werde ich dann natürlich kurz beschreiben 
EDIT:
Es ist nicht so, das ich auf der Cebit nichts erlebt habe, aber leider fehlt mir die Zeit das erlebte niederzuschreiben  
MfG
Marco
]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich habe heute noch eine Eintrittskarte zur Cebit 2007 ergattert und werde nun am Montag zu dieser tollen Veranstaltung fahren.</p>
<p>Meine Erlebnisse werde ich dann natürlich kurz beschreiben <img src="../old/img/smilies/smile.png" alt=":)" /></p>
<p><strong>EDIT:<br />
</strong>Es ist nicht so, das ich auf der Cebit nichts erlebt habe, aber leider fehlt mir die Zeit das erlebte niederzuschreiben <img src='http://www.eternalpower.de/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>MfG<br />
Marco</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eternalpower.de/?feed=rss2&amp;p=19</wfw:commentRss>
		</item>
	</channel>
</rss>
