<?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>Zovirl Industries &#187; pygame</title>
	<atom:link href="http://zovirl.com/tags/pygame/feed/" rel="self" type="application/rss+xml" />
	<link>http://zovirl.com</link>
	<description>Mark Ivey&#039;s Blog</description>
	<lastBuildDate>Tue, 13 Oct 2009 04:47:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Drive: a simple scrolling demo in pygame</title>
		<link>http://zovirl.com/2007/03/17/drive-a-simple-scrolling-demo-in-pygame/</link>
		<comments>http://zovirl.com/2007/03/17/drive-a-simple-scrolling-demo-in-pygame/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 23:09:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[pygame]]></category>

		<guid isPermaLink="false">http://zovirl.com/2007/03/17/drive-a-simple-scrolling-demo-in-pygame/</guid>
		<description><![CDATA[
A couple weekends ago I wanted to play around with some game ideas, to see if they were super-awesome or boring.  I needed a simple framework to prototype them on, so I whipped one out using pygame.  Then I sketched up some art.  And made an installer.
And totally forgot to play around [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://zovirl.com/2007/03/car.jpg"/><br />
A couple weekends ago I wanted to play around with some game ideas, to see if they were super-awesome or boring.  I needed a simple framework to prototype them on, so I whipped one out using pygame.  Then I sketched up some art.  And made an installer.</p>
<p>And totally forgot to play around my original game ideas.</p>
<p>Damn.  Maybe next time.</p>
<p>Anyway, here it is: a simple scrolling demo made with python and pygame.  It has no real purpose (unless you want to do scrolling in pygame).</p>
<p><a href="http://zovirl.com/2007/03/Drive-1.0.dmg">OSX</a><br />
<a href="http://zovirl.com/2007/03/Drive-1.0.zip">Windows</a><br />
<a href="http://zovirl.com/2007/03/Drive-1.0.tar.gz">Source (Linux)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zovirl.com/2007/03/17/drive-a-simple-scrolling-demo-in-pygame/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>steal the mouse back from SDL</title>
		<link>http://zovirl.com/2006/08/21/steal-the-mouse-back-from-sdl/</link>
		<comments>http://zovirl.com/2006/08/21/steal-the-mouse-back-from-sdl/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 02:05:18 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[pygame]]></category>

		<guid isPermaLink="false">http://zovirl.com/2006/08/21/steal-the-mouse-back-from-sdl/</guid>
		<description><![CDATA[I hate it when a poorly-behaved SDL app (usually mine) grabs the mouse, crashes, and doesn&#8217;t give the mouse back.  Great, now I&#8217;m stuck in X with no mouse.  Here&#8217;s a handy python script to get it back:
#!/usr/bin/env python
# get the mouse back after an SDL app crashes
import pygame
pygame.init()
pygame.mouse.set_visible(False)
pygame.event.set_grab(True)
pygame.quit()

]]></description>
			<content:encoded><![CDATA[<p>I hate it when a poorly-behaved SDL app (usually mine) grabs the mouse, crashes, and doesn&#8217;t give the mouse back.  Great, now I&#8217;m stuck in X with no mouse.  Here&#8217;s a handy python script to get it back:</p>
<div class="code">#!/usr/bin/env python<br />
# get the mouse back after an SDL app crashes</p>
<p>import pygame<br />
pygame.init()<br />
pygame.mouse.set_visible(False)<br />
pygame.event.set_grab(True)<br />
pygame.quit()
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://zovirl.com/2006/08/21/steal-the-mouse-back-from-sdl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
