<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Schlachtfeld &#187; Development</title>
	<atom:link href="http://blog.warzone2100.de/category/english/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.warzone2100.de</link>
	<description>Der Stafflerblog von Warzone2100.de</description>
	<lastBuildDate>Mon, 24 Jan 2011 15:37:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Special interview #2: New widget system (betawidget)</title>
		<link>http://blog.warzone2100.de/2008/12/06/special-interview-2-new-widget-system-betawidget/</link>
		<comments>http://blog.warzone2100.de/2008/12/06/special-interview-2-new-widget-system-betawidget/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 12:12:01 +0000</pubDate>
		<dc:creator>Kreuvf</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.warzone2100.de/?p=135</guid>
		<description><![CDATA[Some time ago I had a special interview on 2.1 with devurandom. 2.1 is almost final, so it is time for another special interview. This time I talked to EvilGuru and Elio about the new widget system. Kreuvf: First of all: What is a widget and what does a widget system do? EvilGuru: A widget [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I had a <a href="http://blog.warzone2100.de/2007/10/08/special-interview-1-warzone-2100-21/" title="Special interview #1: Warzone 2100 2.1" hreflang="en">special interview on 2.1 with devurandom</a>. 2.1 is almost final, so it is time for another special interview. This time I talked to <a href="http://blog.warzone2100.de/2007/12/28/developer-interview-2-freddie-witherden/" title="Developer interview #2 - Freddie Witherden" hreflang="en">EvilGuru</a> and Elio about the new widget system.</p>
<p><strong>Kreuvf:</strong> First of all: What is a widget and what does a widget system do?<br />
<strong>EvilGuru:</strong> A widget is something which the player interacts with. This could be <em>a button, slider, colour picker or text box</em>. A widget system is responsible for displaying these widgets on screen and managing them.</p>
<p><strong>Kreuvf:</strong> What are the major advantages of the new widget system, betawidget?<br />
<strong>EvilGuru:</strong> Betawidget has many advantages over the current widget system, both for developers and users.</p>
<p>For users it will</p>
<ul>
<li>allow for a more attractive and lucid interface;</li>
<li>be able to adapt itself to the user&#8217;s screen resolution, making Warzone easier to play at higher resolutions, including those that are widescreen;</li>
<li>be significantly more customisable than the current system.</li>
</ul>
<p>However, the primary motivation behind the development of betawidget was to make it easier for us (the developers) to add/change/modify the user interface. This is especially difficult using the <em>current widget system</em>, with even something as simple as <em>adding a button taking a large amount of code</em>.</p>
<p>For developers and modders it will</p>
<ul>
<li>be significantly easier to work with;</li>
<li>allow the user-interface (UI) to be, firstly, <em>scriptable and secondly modifiable using scripts</em>;</li>
<li>require less code than the current widget system in order to complete the same task, resulting in fewer bugs.</li>
</ul>
<p><strong>Kreuvf:</strong> Will the new widget system be limited to Warzone 2100 only or do you plan to provide it for other applications as well?<br />
<strong>Elio:</strong> Betawidget is intended to have a Qt-backend allowing the use in Qt-applications, such as <em>Warzone Studio</em>. An all-in-one solution covering every aspect of modding:</p>
<ul>
<li>scripting</li>
<li>editing the tech tree</li>
<li>map making</li>
<li>editing the interface</li>
</ul>
<p><strong>EvilGuru:</strong> In fact, most of the development happens in an external simulator. Other Warzone-related applications such as map editors and mod editors may make use of it for parts of their interfaces. Of course, these applications are still very much <em>on the drawing board</em>, but it is nice to keep all avenues open.</p>
<p>Since betawidget is — like Warzone — open source there is nothing to stop others from taking it and integrating it into their own applications. However, it is important to stress that, as flexible as betawidget may be, it has been designed as a replacement for Warzone&#8217;s current widget system and not as a general-purpose toolkit.</p>
<p><strong>Kreuvf:</strong> How can the <acronym title="Graphical User Interface">UI</acronym> be changed with the new widget system?<br />
<strong>Elio:</strong> The whole <acronym title="Graphical User Interface">UI</acronym> is created from Lua scripts. This enables modders to include a <acronym title="Graphical User Interface">UI</acronym> without touching the source. Its class-like architecture is easy to understand and the <acronym title="Application Programming Interface">API</acronym> supports animations, too. So the new <acronym title="Graphical User Interface">UI</acronym> will be more dynamic and user-friendly.<br />
<strong>EvilGuru:</strong> It will be possible to <em>modify the <acronym title="User Interface">UI</acronym> in one of two ways</em>. Firstly by using a Lua script to change an existing interface on-the-fly. So a mod developer might use a script to change the image/logo shown on the main title menu. This might look something like this:<br />
widgetGetById(&#8220;warzoneLogo&#8221;):setImage(&#8220;myOwnLogo.svg&#8221;).</p>
<p>Although a trivial example (a modder could just override the current logo by placing a file with the same name in their mod) it does illustrate what is possible.</p>
<p>Secondly, since a large amount of the <acronym title="User Interface">UI</acronym> is planned to be implemented in Lua — as opposed to compiled C code — it will be possible for modders to <em>simply open up and modify the script files</em> (in the same way they would for unit/structure stats). By placing the modified script file in their mod they have the capability to customise the <acronym title="User Interface">UI</acronym> at a more fundamental level. Thus changing the interface will be only slightly more difficult than changing stats.</p>
<p>It is not just the modding community who benefit from having large portions of the <acronym title="User Interface">UI</acronym> written in Lua — developers do as well. This is because it is significantly easier to write and debug high-level Lua code as opposed to low-level C code.</p>
<p><strong>Kreuvf:</strong> What are the advantages of having scalable vector graphics (<acronym title="Scalable Vector Graphics">SVG</acronym>) and are there any pictures of a possible new <acronym title="Graphical User Interface">UI</acronym>?<br />
<strong>Elio:</strong> There are <em>some pictures of the new <acronym title="Graphical User Interface">UI</acronym></em>.<a href="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-1.png"><img src="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-1-thumb.png" width="200" height="133" title="New GUI: Tank orders" alt="New GUI and Twin Gauss Fortress" class="floatl" /></a></p>
<p>As you can see the base colour of the new <acronym title="Graphical User Interface">UI</acronym> is more <em>blue-grayish</em>, this gives it a modest and elegant appearance and brings gameplay into focus. There are also <a href="http://forums.wz2100.net/viewtopic.php?f=10&#038;t=2255" title="interface ideas from beach" hreflang="en">further sketches of possible new <acronym title="Graphical User Interface">UI</acronym> elements</a>.<a href="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-2.png"><img src="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-2-thumb.png" width="150" height="200" title="New GUI: Commander interface" alt="New GUI and Commander interface" class="floatr" /></a></p>
<p>Additionally it <em>looks sharp and nice on every screen resolution</em>, because the <acronym title="Graphical User Interface">UI</acronym> adapts to it. So you can expect a wonderful, sexy <acronym title="Graphical User Interface">UI</acronym> no matter if it&#8217;s 640&#215;480 (4:3) or 1280&#215;720 (16:9). We can&#8217;t do this with the old raster graphics, which is why we need to get <em>scalable vector graphics (<acronym title="Scalable Vector Graphics">SVG</acronym>)</em>. In order to get those we need to &#8216;convert&#8217; the existing raster graphics into scalable vector graphics <em>by hand</em> and I have done most of this work already.<a href="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-3.png"><img src="http://blog.warzone2100.de/wp-content/uploads/2008/12/interview-betawidget-bild-3-thumb.png" width="200" height="150" title="New GUI: Unit design and comparison" alt="New GUI and Unit design and comparison of two units" class="floatl" /></a><br />
<strong>EvilGuru:</strong> Currently support for <acronym title="Scalable Vector Graphics">SVG</acronym>s is done by way of the Cairo vector graphics library, which is also used by Firefox 3. Thanks, primarily to Elio, many of the games icons have been converted to <acronym title="Scalable Vector Graphics">SVG</acronym>s. <acronym title="Scalable Vector Graphics">SVG</acronym> is a vector graphics format which has good support by both Cairo and other 3rd party applications. (Inkscape and Adobe Illustrator are probably the most famous.) This will again aid customisability — as anyone can open up the icons and modify them in a way just not possible with bitmaps. This could allow for modders to create <em>high-quality icon packs</em> without having to start from scratch or pixel-edit pre-existing icons.</p>
<p><a href="http://blog.warzone2100.de/2008/12/06/spezialinterview-2-neues-widget-system-betawidget/" title="Spezialinterview #2: Neues Widget-System (betawidget)" hreflang="de">German translation</a> available.</p>
<p><a href="http://board.warzone2100.de/11rc3/index.php?topic=1683.0">Comment on this</a> (requires board account)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.warzone2100.de/2008/12/06/special-interview-2-new-widget-system-betawidget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special interview #1: Warzone 2100 2.1</title>
		<link>http://blog.warzone2100.de/2007/10/08/special-interview-1-warzone-2100-21/</link>
		<comments>http://blog.warzone2100.de/2007/10/08/special-interview-1-warzone-2100-21/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 14:10:09 +0000</pubDate>
		<dc:creator>Kreuvf</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.warzone2100.de/2007/10/08/special-interview-1-warzone-2100-21/</guid>
		<description><![CDATA[As announced in the board I had an interview with DevUrandom about the upcoming version 2.1 of Warzone 2100. First some facts about DevUrandom, then the interview: Currently he is studying mathematics and computer science in Germany. In his freetime he does sports and is interested in the middle ages. His first contact with WZ [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://board.warzone2100.de/11rc3/index.php?topic=1469.0" title="Fragensammlung für Interview zu 2.1" lang="de">announced in the board</a> I had an <em>interview with DevUrandom</em> about the upcoming version 2.1 of Warzone 2100. First some facts about DevUrandom, then the interview:<br />
Currently he is studying <em>mathematics and computer science</em> in Germany. In his freetime he does sports and is interested in the middle ages.</p>
<p>His <em>first contact with WZ</em> was on the 8th of July, 2005, which also was <a href="http://developer.berlios.de/bugs/?func=detailbug&#038;bug_id=4477&#038;group_id=2909" title="[ Bug #4477 ] Strange/exotic bug when building+scrolling" lang="en">the day he touched the source-code for the first time</a>. Back then the name was <em>Warzone ReDev</em> and the source-code was hosted at BerliOS. Version 0.1 had been announced on <a href="http://www.linuxgames.com/news/feedback.php?identiferID=7573&#038;action=flatview" title="Warzone 2100 0.1" lang="en">LinuxGames.com</a> and <a href="http://www.linux-gamers.net/modules/news/article.php?storyid=849" title="Warzone 2100 v0.1" lang="en">Linux-Gamers.net</a> two weeks prior to DevUrandom immerging into the world of Warzone. He was immediately fascinated by it (it was the only realtime strategy game for Linux he knew of at that time) and the way to design own vehicles by assembling parts reminded him of his all-time-favorite turn-based strategy game <a href="http://www.firaxis.com/smac/" title="Sid Meier's Alpha Centauri" lang="en">Sid Meier&#8217;s Alpha Centauri</a>.<br />
Some days later his commitment to Warzone started with a <a href="http://developer.berlios.de/feature/index.php?func=detailfeature&#038;feature_id=1100&#038;group_id=2909" title="[ Feature Request #1100 ] UI improvements + some big changes" lang="en">huge wishlist</a> and a few weeks afterwards he was involved with the project.</p>
<p>Since then he worked on many parts of Warzone. Currently he is <em>responsible for creating releases</em> (compiling installers, source-code <a href="http://en.wikipedia.org/wiki/Tar_(file_format)" title="Tar (file format)" lang="en" rel="nofollow">tarballs</a>, announcing on various game sites and notifying Linux distributions). </p>
<p>Some people confuse him with a project leader, which he is not. The core team works fully democratic and those who are considered &#8220;experts&#8221; in the area in question are usually getting paid the most attention, with a slight focus on the &#8220;older&#8221; members. However, the final decision goes to the person actually doing the work.</p>
<p><strong>Kreuvf:</strong> Good day, DevUrandom, nice to have you here today. As you already know I am about to ask you certain questions regarding the upcoming version 2.1 of Warzone 2100.<br />
<strong>DevUrandom:</strong> Sure, go on.</p>
<p><strong>Kreuvf:</strong> The version is <a href="http://wiki.wz2100.net/doku.php?id=roadmap:2.1&#038;rev=1186308993" title="roadmap:2.1 - Warzone2100 Wiki" lang="en">scheduled for x-mas 2007</a> and it was announced as a network-release. Could you explain what that means in detail?<br />
<strong>DevUrandom:</strong> We want to get <em>2.1 out roughly at the end of the year</em>. We don&#8217;t guarantee that it will be ready to lie under your christmas tree (or however you celebrate christmas, if at all), but that is the target we aim at. The <em>main &#8220;feature&#8221;</em> is to get the <em>networking stable</em> on and between all systems, hence the name.</p>
<p>Therefore we will replace the underlying network code with something that is not so prone to differences which may arrise from using different operating systems and 32bit/64bit systems. That system (the author calls it &#8220;netprimitives&#8221;) is to <em>large parts written by Freddie Witherden (EvilGuru)</em> and currently being merged into Warzone.</p>
<p><strong>Kreuvf:</strong> So you will actually be able to have a match vs. someone who uses Linux, someone who uses Mac OS X and someone who uses Windows without any problems?<br />
<strong>DevUrandom:</strong> That is the goal, yes. As we follow a development model which makes the game <em>more and more stable as the patch version increases</em>, it may not be optimal at 2.1.0, but we always do our best to deliver the best possible gaming experience.</p>
<p>Sidenote on Warzone versioning: 2.1.0&nbsp;->&nbsp;major version&nbsp;=&nbsp;2, minor version&nbsp;=&nbsp;1, patch version&nbsp;=&nbsp;0. Major version increases happen only very very seldomly when something really groundbreaking is changed. Minor version may also be called feature version: We include new features into those. Patch version, aka bugfix versions are only intended to fix bugs.</p>
<p><strong>Kreuvf:</strong> Besides the changes on the net-code, what <em>other changes</em> are scheduled for 2.1? And how will those changes affect the <em>minimum requirements</em> for Warzone 2100?<br />
<strong>DevUrandom:</strong> What is already done:</p>
<ul>
<li>AIVolution by Troman: An <em>enhanced AI</em> with learning capabilites.</li>
<li>Multiturrets by Watermelon: Droids (which is how Warzone calls the units) can have <em>multiple turrets</em> instead of just one. Think of it like a tank: It has a cannon for long distance shooting on armored vehicles and an MG for close range defense against soft targets.</li>
<li>Improved AI target selection (<acronym title="as far as I know">afaik</acronym> Troman+Watermelon): <em>Droids should select the targets they attack more intelligently</em>.</li>
<li>Collision-based hit-system by Watermelon: If a target is hit by a projectile or not is no longer predicted by a dice system. Instead the <em>projectiles really damage only the target which they hit</em>. If the unit that was fired at moves away while the projectile is in flight, it won&#8217;t be damaged anymore as it is not hit.</li>
<li>The <em>scripting language was enhanced</em> by Troman. It now supports strings, functions with local variables and and and&#8230;</li>
<li>A system which provides the <em>ability to assign armor to each side of a droid</em> (as opposed to the droid as a whole) was written by Watermelon. This means that you could have tanks which are weakly armored on the top and behind, but very strong on the front. This should support mods with higher focus on tactics. (It is not yet used in Warzone itself.)</li>
</ul>
<p>Besides the netcode, I am <em>currently working/testing</em> different things with graphics, of which one is a <em>rewritten terrain renderer</em> and another is <a href="http://en.wikipedia.org/wiki/TrueType" title="TrueType" lang="en" rel="nofollow">TrueType fonts</a>. The <a href="http://en.wikipedia.org/wiki/Renderer" title="Rendering (computer graphics)" lang="en" rel="nofollow">renderer</a> is a lot in flux currently and techniques of rendering are tried and thrown away a lot, so it may not be ready for the freeze (testing period before the release) and thus not 2.1, even though I try my best.<br />
As the TrueType fonts may be very useful for translations (you can theoretically support every language), I am focussing on that now. (And it is a little bit easier to implement as well, since there are not 1001 ways of doing it.) (Editor&#8217;s note: interview was held on 23rd Sep. 2007 and TrueType has by date of publication been implemented by Giel using QuesoGLC) Which brings me to another major change not mentioned yet: <em>NLS (Native Language Support)</em></p>
<p>If you have tried the current snapshots (or been watching the mailinglist or svn/trunk), you may already have noticed the <em>option &#8220;NLS&#8221; in the component selection</em>. It means that <em>now it is [should be] possible to translate Warzone to virtually every language</em> and have users select which language they want while Warzone runs. Before <em>every piece of text in the menus was hardcoded</em> in the executable and things like unit descriptions, mission briefings came in <em>lots of textfiles</em>. Now the <em>strings are all in one location</em> and can be translated more easily. You don&#8217;t have to reinstall Warzone to change the language.</p>
<p>Requirements: The <em>new hitsystem</em> may be <em>slightly more demanding on the CPU</em>, but I doubt you will notice that. The rendering techniques for the terrain renderer are too much changing at the moment as that I could give any estimate on that.</p>
<p>Generally we <em>try to support as many people as possible and reasonable</em>. So there won&#8217;t be a return of the software renderer and if you have something on par with a <em>Radeon or GeForce card</em> you should be on the safe side. If the renderer makes it in time, Vertex Arrays (VA) will definitely be required, but even TNT grade cards support that as far as I know.</p>
<p><strong>Kreuvf:</strong> Wow, that&#8217;s overwhelming. That enhanced AI by Troman: In what way will it be &#8220;enhanced&#8221;? Will it make better tactic-decisions and how does the learning take place?<br />
<strong>DevUrandom:</strong> You better ask Troman himself about this. I can tell you that it was <em>rewritten from ground up</em> and that it can <em>remember where you attack</em> it usually and with which weapons, so that it can build better defenses against you the next time.</p>
<p><strong>Kreuvf:</strong> So the learning does not imply inter-game-learning, it&#8217;s more like match-restricted learning &#8211; the AI learns for one match and doesn&#8217;t save anything?<br />
<strong>DevUrandom:</strong> No, I think it saves per-map data so it can gain <em>advantage from earlier games</em> and improve its tactics over multiple sessions. What I definitely know is that <em>messing with it is a tough task</em>, even for more experienced players.</p>
<p><strong>Kreuvf:</strong> Sounds like a tougher AI &#8211; something people have looked for since Warzone&#8217;s initial release in 1999.</p>
<p>I want to come to my last topic for today: Balancing. As you most probably know I am a balance-fanatic and all those changes seem, to me, to affect the overall-balancing alot. The question now is: How noticeable regarding the balancing are those changes, e.g. are some weapons that were weak before strong now?<br />
<strong>DevUrandom:</strong> Especially the hitsystem affects balancing a lot. Long range attacks or shooting on fast moving targets <em>can be quite inaccurate</em> now. The latter applies e.g. to VTOLs, which became quite hard to hit. This was compensated by <em>bigger hitboxes</em> (you may know that from games like Counter-Strike), to make the effect less visible. Long range artillery may also have some problems now. We will try to compensate for that till the release and tune balancing during the 2.1 release cycle and for 2.2 (which is targeted summer next year). But long range shots and shots on fast targets will definitely be harder than before. This should bring in more tactics and <em>help smaller but faster units</em>, like Cyborgs.</p>
<p>Note: I am not too much involved with balancing or playing and neither do I play since the beginning, so <em>take my answer with caution</em>.</p>
<p><strong>Kreuvf:</strong> Okay, DevUrandom. Thank you very much for this interview and for exhaustingly answering all the questions.<br />
<strong>DevUrandom:</strong> You are welcome.</p>
<p><a href="http://board.warzone2100.de/11rc3/index.php?topic=1483.0">Comment on this article</a> (requires board-account)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.warzone2100.de/2007/10/08/special-interview-1-warzone-2100-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New design for old stuff (1)</title>
		<link>http://blog.warzone2100.de/2006/11/27/new-design-for-old-stuff-1/</link>
		<comments>http://blog.warzone2100.de/2006/11/27/new-design-for-old-stuff-1/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 20:16:52 +0000</pubDate>
		<dc:creator>Kreuvf</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.warzone2100.de/2006/11/27/new-design-for-old-stuff-1/</guid>
		<description><![CDATA[Today I thought about how warzone looks like for someone who never played it before. With the &#8216;look&#8217; I mean the design and presentation of data in-game. So I think you all know the construction menu. On the right is a full animation of all eight tabs you can/must click through to find a specific [...]]]></description>
			<content:encoded><![CDATA[<p>Today I thought about how <em>warzone</em> looks like <em>for someone who never played it before</em>. With the &#8216;look&#8217; I mean the design and presentation of data in-game.</p>
<p><img src="http://blog.warzone2100.de/wp-content/uploads/2006/11/buildmenutabs.gif" alt="Animation of a full 1.10 building list" class="floatr"/>So I think you all know the <em>construction menu</em>. On the right is a full animation of all eight tabs you can/must click through to find a specific building. For those who played warzone a hundred times already there&#8217;s nothing new to this and you know that the fortresses can be found on the last tab or last two tabs. But how does this look like for a newbie? For someone who never played warzone before? For someone who is used to comfortably arranged and sorted construction menus? In one word: <em>confusing</em>.</p>
<p>As I think that it&#8217;s one of the <em>aims of the future development</em> of warzone to make the game <em>more newbie-friendly</em> one of the main problems is the construction menu. And I have an idea for a solution to this problem.</p>
<p>The game internally distinguishes between different structure types and the idea is to <em>make this distinction visible</em> in-game. </p>
<h4>Explanation</h4>
<p>On the top you don&#8217;t have the tabs anymore, at least not as the <em>first &#8216;level&#8217;</em>. Instead there are buttons indicating the <em>structure-category</em>. Clicking one of these buttons may lead to a <em>second level of buttons</em>. Perhaps the category-tree then looks like this:</p>
<ul>
<li>Base Structures
<ul>
<li>Energy Management
<ul>
<li>Power Generator</li>
<li>Power Generator Module</li>
<li>Oil Derrick</li>
</ul>
</li>
<li>General Base Structures
<ul>
<li>Command Center</li>
<li>Commando Relais</li>
<li>Research Center</li>
<li>Research Center Module</li>
</ul>
</li>
<li>Production and Repair
<ul>
<li>Factory</li>
<li>VTOL Factory</li>
<li>Factory Module</li>
<li>Cyborg Factory</li>
<li>Repair Facility</li>
<li>VTOL Rearming Pad</li>
</ul>
</li>
</ul>
</li>
<li>Defense Structures
<ul>
<li>Intelligence
<ul>
<li>Hardened Sensor Tower</li>
<li>CB Tower</li>
<li>VTOL Strike Tower</li>
<li>VTOL CB Tower</li>
<li>Wide Spectrum Tower</li>
<li>Satellite Uplink Center</li>
</ul>
</li>
<li>Artillery
<ul>
<li>Bombard Pit</li>
<li>Pepperpot Pit</li>
<li>Incenediary Mortar Pit</li>
<li>EMP Mortar Pit</li>
<li>Ground Shaker Emplacement</li>
<li>Hellstorm Emplacement</li>
<li>Incenediary Howitzer Emplacement</li>
<li>Angel Missile Emplacement</li>
<li>Archangel Missile Emplacement</li>
</ul>
</li>
<li>Bunkers and Emplacements
<ul>
<li>Rotary MG Bunker</li>
<li>Lancer Bunker</li>
<li>Tank Killer Emplacement</li>
<li>Inferno Emplacement</li>
<li>Plasmite Flamer Emplacement</li>
<li>HPV Cannon Emplacement</li>
<li>Twin Assault Cannon Emplacement</li>
<li>Railgun Emplacement</li>
<li>Gauss Cannon Emplacement</li>
<li>Flashlight Emplacement</li>
<li>Pulse Laser Emplacement</li>
<li>Heavy Laser Emplacement</li>
<li>Plasma Cannon Emplacement</li>
</ul>
</li>
<li>AA Structures
<ul>
<li>Cyclone AA Site</li>
<li>Whirlwind AA Site</li>
<li>Vindicator SAM Site</li>
<li>Stormbringer AA Laser Site</li>
<li>Assault Gun Hardpoint</li>
<li>Twin Assault Gun Hardpoint</li>
<li>Cyclone Hardpoint</li>
<li>Whirlwind Hardpoint</li>
<li>Avenger Hardpoint</li>
<li>Vindicator Hardpoint</li>
<li>Heavy Rocket Bastion</li>
</ul>
</li>
<li>Hardpoints and Towers
<ul>
<li>Assault Gun Hardpoint</li>
<li>Twin Assault Gun Hardpoint</li>
<li>Tank Killer Hardpoint</li>
<li>Scourge Missile Hardpoint</li>
<li>Assault Cannon Hardpoint</li>
<li>HPV Cannon Hardpoint</li>
<li>Heavy Cannon Hardpoint</li>
<li>Railgun Hardpoint</li>
<li>Gauss Cannon Hardpoint</li>
<li>Flashlight Hardpoint</li>
<li>EMP Cannon Hardpoint</li>
<li>Mini-pod Rocket Guard Tower</li>
<li>Scourge Missile Tower</li>
<li>Needle Gun Tower</li>
</ul>
</li>
<li>Special Defense Structures
<ul>
<li>Nexus-Link Tower</li>
<li>Laser Satellite Command Post</li>
<li>Cannon Fortress</li>
<li>Mass Driver Fortress</li>
<li>Missile Fortress</li>
<li>Heavy Rocket Bastion</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>The &#8216;demolish structure&#8217; (which is an own structure internally) is shown on every page. &#8216;Wall&#8217; and &#8216;Tank Trap&#8217; are shown on every page of the Defense Structures. As you may notice some structures are in more than one category.</p>
<p>My hope is that these categories will make it into the game at some point in the future. To preserve the feeling of the original warzone this should be an <em>on- and off-turnable feature</em>.</p>
<p><a href="http://board.warzone2100.de/11rc3/index.php?topic=1287.0">Comment on this</a> (board-account neccessary)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.warzone2100.de/2006/11/27/new-design-for-old-stuff-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

