<?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>Elite | Learn C Games Programming Blog</title>
	<atom:link href="https://learncgames.com/tag/elite/feed/" rel="self" type="application/rss+xml" />
	<link>https://learncgames.com</link>
	<description>A blog about C, programming games and my ebook(s).</description>
	<lastBuildDate>Mon, 28 Sep 2020 08:13:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://learncgames.com/wp-content/uploads/2020/03/cropped-favicon-32x32.png</url>
	<title>Elite | Learn C Games Programming Blog</title>
	<link>https://learncgames.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">181446779</site>	<item>
		<title>Fascinating look at the BBC Micro game Elite</title>
		<link>https://learncgames.com/fascinating-look-at-the-bbc-micro-game-elite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fascinating-look-at-the-bbc-micro-game-elite</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Fri, 02 Oct 2020 23:00:24 +0000</pubDate>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[Source code]]></category>
		<category><![CDATA[BBC Micro]]></category>
		<category><![CDATA[Elite]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=1520</guid>

					<description><![CDATA[<p>This is somewhat off-topic and a little bit of self-indulgence because (a) it&#8217;s about a computer that existed over 36 years ago and (b) a game that was programmed in 6502 assembler. It&#8217;s also a game I played a lot back in 1984. The reason for including it here is because a British Web Developer [&#8230;]</p>
The post <a href="https://learncgames.com/fascinating-look-at-the-bbc-micro-game-elite/">Fascinating look at the BBC Micro game Elite</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:486,&quot;href&quot;:&quot;https:\/\/www.bbcelite.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260206152855\/https:\/\/www.bbcelite.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-13 20:13:17&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-20 06:41:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-08 19:06:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-28 13:23:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-03 01:22:21&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-03 01:22:21&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<p><img fetchpriority="high" decoding="async" class="alignleft size-medium wp-image-1521" src="https://learncgames.com/wp-content/uploads/2020/09/elite-300x240.png" alt="BBC Micro Edite" width="300" height="240" srcset="https://learncgames.com/wp-content/uploads/2020/09/elite-300x240.png 300w, https://learncgames.com/wp-content/uploads/2020/09/elite.png 643w" sizes="(max-width: 300px) 100vw, 300px" />This is somewhat off-topic and a little bit of self-indulgence because (a) it&#8217;s about a computer that existed over 36 years ago and (b) a game that was programmed in 6502 assembler. It&#8217;s also a game I played a lot back in 1984.</p>
<p>The reason for including it here is because a British Web Developer called Mark Moxon has created an <a title="Link to BBCElite.com" href="https://www.bbcelite.com/" target="_blank" rel="noopener noreferrer">excellent website about the game</a>, looking at the algorithms, source code etc. of the BBC Micro version of Elite. Everything you wanted to know about how it works.</p>
<p>I&#8217;d sum up this website as the &#8220;Cliff&#8217;s Notes&#8221; to the BBC Micro version of Elite. Be sure to click the three bars at the top left as the Navigation Bar gives an idea of just how much there is in this website. There&#8217;s bit by bit breakdowns of variables for example, in generating System Data.</p>
<pre class="codeBlock deepDive"><span class="articleSubheader">Government
</span>  <span class="articleSubheader">----------
</span>  The government is given by a 3-bit value, taken from bits 3-5 of w1_lo. This
  value determine the type of government as follows:
  
  <span class="articleIndented">  0 = Anarchy
</span>  <span class="articleIndented">  1 = Feudal
</span>  <span class="articleIndented">  2 = Multi-government
</span>  <span class="articleIndented">  3 = Dictatorship
</span>  <span class="articleIndented">  4 = Communist
</span>  <span class="articleIndented">  5 = Confederacy
</span>  <span class="articleIndented">  6 = Democracy
</span>  <span class="articleIndented">  7 = Corporate State
</span></pre>
<p>This is a remarkable piece of work, I can&#8217;t imagine how many hours Mark has put into it. Possibly as many as it took to develop the game originally!</p>The post <a href="https://learncgames.com/fascinating-look-at-the-bbc-micro-game-elite/">Fascinating look at the BBC Micro game Elite</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1520</post-id>	</item>
	</channel>
</rss>
