<?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>Galfar's Lair</title>
	<atom:link href="http://galfar.vevb.net/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://galfar.vevb.net/wp</link>
	<description>Oh hai!</description>
	<lastBuildDate>Fri, 01 Jan 2010 16:53:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Imaging in C++ Builder</title>
		<link>http://galfar.vevb.net/wp/2009/12/imaging-in-c-builder/</link>
		<comments>http://galfar.vevb.net/wp/2009/12/imaging-in-c-builder/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 19:42:41 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=675</guid>
		<description><![CDATA[I tried compiling Imaging in C++ Builder (it uses Delphi compiler to generate .obj file which C++ linker can link and also generates C++ header for Pascal unit) few years ago. It didn&#8217;t work &#8211; there was internal compiler error, I think right in ImagingTypes unit. 
Few days ago I tried C++ Builder 2010 and [...]]]></description>
			<content:encoded><![CDATA[<p>I tried compiling Imaging in C++ Builder (it uses Delphi compiler to generate .obj file which C++ linker can link and also generates C++ header for Pascal unit) few years ago. It didn&#8217;t work &#8211; there was internal compiler error, I think right in ImagingTypes unit. </p>
<p>Few days ago I tried C++ Builder 2010 and was pleasantly surprised. It worked! I tried just the library core for now (ImagingTypes, Imaging, ImagingFormats, Pascal only file handlers, etc.) and it works without problems. I&#8217;m not sure which C++ Builder version is required for successful compile though. Versions 6 and 2006 stopped with internal error, 2010 worked, and there are 2 other versions between.</p>
<p>Anyway, I&#8217;ll try to check out most of the library until the 2010 trial expires for me. Hmm, I&#8217;m wondering how many people use C++ Builder for C++ development &#8211; I&#8217;ve never did something serious in it, basically just to get object files usable by Delphi &#8211; so I have no idea if it&#8217;s ok. </p>
<p>PS: Another C++ Builder related news &#8211; patch for OpenJpeg library to get it compiling in BCB is <a href="http://groups.google.com/group/openjpeg/browse_thread/thread/5a34751c74e290d5" target="_blank">posted here</a>.  </p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/12/imaging-in-c-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PasJpeg2000 News</title>
		<link>http://galfar.vevb.net/wp/2009/12/pasjpeg2000-news/</link>
		<comments>http://galfar.vevb.net/wp/2009/12/pasjpeg2000-news/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 19:37:55 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[JPEG 2000 for Pascal]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=657</guid>
		<description><![CDATA[JPEG 2000 for Pascal project is based on OpenJpeg library. For a very long time there was a bug that caused alpha (fourth and subsequent image channels) channel to be saved with all the samples having the value of 0.5 (128 for 8bit channels). This buggy behavior also depended on compiler settings &#8211; optimization level [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://galfar.vevb.net/wp/projects/jpeg2000-for-pascal/" title="JPEG 2000 for Pascal">JPEG 2000 for Pascal</a> project is based on <a href="http://www.openjpeg.org" target="_blank">OpenJpeg</a> library. For a very long time there was a bug that caused alpha (fourth and subsequent image channels) channel to be saved with all the samples having the value of 0.5 (128 for 8bit channels). This buggy behavior also depended on compiler settings &#8211; optimization level in case of GCC. You could use at most O1 in Windows and Linux, and only O0 in Mac OS X. Bug was also present when compiling with C++ Builder (to get object files usable in Delphi) but only when irreversible DWT transformation was enabled in OpenJpeg during encoding (it wasn&#8217;t before, but working versions of both PasJpeg2000 and Imaging use it now when lossy compression is selected by user to get smaller files).<br />
You can read more about it in <a href="http://groups.google.com/group/openjpeg/browse_thread/thread/d9d96dd4ec3e7443" target="_blank">this news group post</a>. Basically it was all fixed by changing a condition in one <strong>if</strong> statement to prevent accessing the fourth element of a three element array.</p>
<p>So what can you expect in the next version of PasJpeg2000 library?<br />
Higher GCC optimization levels should make it a lot faster when using Free Pascal (particularly in Mac OS X where O0 was used). Irreversible DWT transformation produces smaller lossy files than current PasJpeg2000 version and with optional MCT (multicomponent transform &#8211; basically RGB&gt;YCbCr) you get even smaller ones. There&#8217;s now also a patch that enables OpenJpeg to get palettes from JP2 files so indexed JPEG 2000 images could be supported too. And finally, there are some bug fixes (wrong reconstruction of subsampled files, &#8230;).</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/12/pasjpeg2000-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shift Right: Delphi vs C</title>
		<link>http://galfar.vevb.net/wp/2009/11/shift-right-delphi-vs-c/</link>
		<comments>http://galfar.vevb.net/wp/2009/11/shift-right-delphi-vs-c/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 14:33:59 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=605</guid>
		<description><![CDATA[Few weeks ago I converted a little function from C language to Delphi. I kept getting completely wrong results all the time even though I was sure the C to Pascal conversion was right (it was really just few lines). After some desperate time, I just tried replacing SHR operator by normal DIV (as A [...]]]></description>
			<content:encoded><![CDATA[<p>Few weeks ago I converted a little function from C language to Delphi. I kept getting completely wrong results all the time even though I was sure the C to Pascal conversion was right (it was really just few lines). After some desperate time, I just tried replacing <strong>SHR</strong> operator by normal <strong>DIV</strong> (as A SHR 1 = A DIV 2 and so on). To my surprise, I immediately got the right results. Can Delphi&#8217;s (I didn&#8217;t test it in Free Pascal) <strong>SHR</strong> operator behave differently than C&#8217;s <strong>&gt;&gt;</strong> operator?</p>
<p>It does in fact. SHR treats its first operand as unsigned value even though it is a variable of signed type whereas &gt;&gt; takes the sign bit into account. In the function I converted the operand for right shift was often negative and Delphi&#8217;s SHR just ignored the value of the sign bit.</p>
<h3>A Bit of Code</h3>
<pre class="brush: cpp;">
int a, b1, b2;
a = -512;
b1 = a &gt;&gt; 1;
b2 = a / 2;
</pre>
<p>After running this C code both <strong>b1</strong> and <strong>b2</strong> have a value of -256.</p>
<pre class="brush: delphi;">
var A, B1, B2: Integer;
A := -512;
B1 := A shr 1;
B2 := A div 2;
</pre>
<p>This Delphi code however yields different result: <strong>B2</strong> is -256 as expected but <strong>B1</strong> has a value of 2147483392.</p>
<h3>A Bit of Assembler</h3>
<p>Assembler output of C code:</p>
<pre class="brush: plain;">
Unit1.cpp.22: b1 = a &gt;&gt; 1;
mov eax,[ebp-$0c]
sar eax,1
mov [ebp-$10],eax
Unit1.cpp.23: b2 = a / 2;
mov edx,[ebp-$0c]
sar edx,1
jns $00401bb9
adc edx,$00
mov [ebp-$14],edx
</pre>
<p>Assembler output of Delphi code:</p>
<pre class="brush: plain;">
Unit1.pas.371: B1 := A shr 1;
mov eax,[ebp-$0c]
shr eax,1
mov [ebp-$1c],eax
Unit1.pas.373: B2 := A div 2;
mov eax,[ebp-$0c]
sar eax,1
jns $00565315
adc eax,$00
mov [ebp-$20],eax
</pre>
<p>As you can see, asm output of C and Delphi divisions is identical. What differs is asm for shift right operator. Delphi uses <strong>shr</strong> instruction whereas C uses <strong>sar</strong> instruction. The difference: shr does logical shift and sar does arithmetic one.</p>
<blockquote><p>The SHR instruction clears the most significant bit (see Figure 6-7 in the Intel Architecture Software Developer&#8217;s Manual, Volume 1); the SAR instruction sets or clears the most significant bit to correspond to the sign (most significant bit) of the original value in the destination operand.</p></blockquote>
<p>Quoted from: <a href="http://faydoc.tripod.com/cpu/shr.htm">http://faydoc.tripod.com/cpu/shr.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/11/shift-right-delphi-vs-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.26.4 Released</title>
		<link>http://galfar.vevb.net/wp/2009/10/imaging-0-26-4-released/</link>
		<comments>http://galfar.vevb.net/wp/2009/10/imaging-0-26-4-released/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 12:28:32 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=598</guid>
		<description><![CDATA[Vampyre Imaging Library project was updated to version 0.26.4 few hours ago. This was supposed to be fix/patch/update release only but new features got in nevertheless (most notably APNG support I wrote about earlier and arbitrary angle image rotations).
More info and downloads at Imaging&#8217;s homepage.
]]></description>
			<content:encoded><![CDATA[<p><strong>Vampyre Imaging Library</strong> project was updated to version 0.26.4 few hours ago. This was supposed to be fix/patch/update release only but new features got in nevertheless (most notably APNG support I wrote about earlier and arbitrary angle image rotations).</p>
<p>More info and downloads at <a href="http://imaginglib.sourceforge.net">Imaging&#8217;s homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/10/imaging-0-26-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DirectX 11: GPUs and headers</title>
		<link>http://galfar.vevb.net/wp/2009/09/directx-11/</link>
		<comments>http://galfar.vevb.net/wp/2009/09/directx-11/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 22:10:32 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=592</guid>
		<description><![CDATA[Few days ago I was wondering how long it will take to see DirectX 11 headers translated to Delphi/Pascal. I knew that translations of new DX components Direct2D and DirectWrite are part of Delphi 2010, but what about Direct3D and DirectCompute?
I checked out Clootie graphics pages but no luck there. Unfortunately, it&#8217;s not so active [...]]]></description>
			<content:encoded><![CDATA[<p>Few days ago I was wondering how long it will take to see DirectX 11 headers translated to Delphi/Pascal. I knew that translations of new DX components Direct2D and DirectWrite are part of Delphi 2010, but what about Direct3D and DirectCompute?</p>
<p>I checked out <a title="Clootie graphics pages" href="http://clootie.ru" target="_blank">Clootie graphics pages</a> but no luck there. Unfortunately, it&#8217;s not so active anymore. After that I thought DX11 for Pascal wouldn&#8217;t appear in like several months at least. Surprise, I found it about 5 minutes later. John Bladen published his DX11 translation on <a href="http://directxfordelphi.blogspot.com/" target="_blank">DirectX for Delphi</a> blog. Thanks John!</p>
<p>Now all that remains is buying a DX11 GPU. New Radeons should be released sometime during this week and I&#8217;m thinking of getting 5850 model in a few months. Rumours are that NVidia&#8217;s DX11 cards won&#8217;t be out before 2010, so probably no big price drops for 5800 Radeons are to be expected until then.</p>
<p>My pile of old graphic cards will get bigger once again. I don&#8217;t buy new CPU/motherboard/RAM too often (now it&#8217;s Core2 from 2007 and before that AthlonXP in 2002) and I usually manage to sell the old ones or put them on server duty somewhere. However, since GPU performance as well as requirements on it rise much more faster than that of CPU, I ended up with like 5 cards in last 8 years. I managed to sell Radeon 9000 and GeForce 6600 but I still have Riva TNT2 and Radeon X1950 in my closet somewhere (and S3 Trio!). Hopefully, I&#8217;ll find a buyer for my 1GB 4850 soon.</p>
<p>Lately, I&#8217;ve had bad luck buying some new stuff just before major price drop. Hopefully, this won&#8217;t happen with 5850. Not that I want it to remain expensive &#8211; just want to buy it after the drop, not  a little while before it.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/09/directx-11/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Block Compression, DXTC, And Imaging</title>
		<link>http://galfar.vevb.net/wp/2009/08/block-compression-dxtc-and-imaging/</link>
		<comments>http://galfar.vevb.net/wp/2009/08/block-compression-dxtc-and-imaging/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 01:12:55 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Image Formats]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=564</guid>
		<description><![CDATA[Imaging supported DXT image/texture compression since one of the earliest releases. Quality of compressed images isn&#8217;t very high though (at least the compression isn&#8217;t too slow). For future Imaging versions I plan to ditch the current compression code and add a new one. To be precise, two new ones &#8211; fast and lower quality (still [...]]]></description>
			<content:encoded><![CDATA[<p>Imaging supported DXT image/texture compression since one of the earliest releases. Quality of compressed images isn&#8217;t very high though (at least the compression isn&#8217;t too slow). For future Imaging versions I plan to ditch the current compression code and add a new one. To be precise, two new ones &#8211; fast and lower quality (still probably better than current Imaging&#8217;s compression), and slow and higher quality mode. Fast one will be based on <a href="http://cache-www.intel.com/cd/00/00/32/43/324337_324337.pdf" target="_blank">Real-Time DXT Compression</a> by Id Soft. I&#8217;m not decided on high quality one yet, but probably something like cluster fit algorithm from <a href="http://code.google.com/p/libsquish/" target="_blank">Squish library</a>.</p>
<p>Mainly for testing purposes during implementation of these new methods, I want to create extension for Imaging that compares two images (original and one reconstructed from compressed original) and measures PSNR and some other quality metrics.</p>
<p>I&#8217;m also thinking of implementing DXT5 based format using YCoCg colorspace and PVRTC (texture compression currently used in iPhone).</p>
<p>Few links if you&#8217;re interested:</p>
<ul>
<li>Brief DXTC overview: <a href="http://en.wikipedia.org/wiki/S3_Texture_Compression" target="_blank">http://en.wikipedia.org/wiki/S3_Texture_Compression</a></li>
<li>More technical details: <a href="http://www.opengl.org/registry/specs/EXT/texture_compression_s3tc.txt" target="_blank">http://www.opengl.org/registry/specs/EXT/texture_compression_s3tc.txt</a></li>
<li>YCoCg-DXT related: <a href="http://developer.nvidia.com/object/real-time-ycocg-dxt-compression.html" target="_blank">http://developer.nvidia.com/object/real-time-ycocg-dxt-compression.html</a></li>
</ul>
<p>Here&#8217;s some quick comparison of DXT compressors (click the image to see full size). Value in brackets is MSE (mean square error) &#8211; lesser number means compressed image is more similar to original.</p>
<p style="text-align: center;"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/08/dxtcompare.png" rel="lightbox[564]"><img class="size-medium wp-image-567 aligncenter" title="DXT compressors comparison" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/08/dxtcompare-266x400.png" alt="DXT compressors comparison" width="266" height="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/08/block-compression-dxtc-and-imaging/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Daggerfall for Free!</title>
		<link>http://galfar.vevb.net/wp/2009/07/daggerfall-for-free/</link>
		<comments>http://galfar.vevb.net/wp/2009/07/daggerfall-for-free/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 13:27:14 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=554</guid>
		<description><![CDATA[One of my all time favorite games was released as free download few weeks ago as a celebration of 15th anniversary of Elder Scrolls series. It’s 1996 title The Elder Scrolls: Daggerfall by Bethesda. You can get 150MiB zip archive with install at BethSoft&#8217;s site. Getting it working on modern OS is not easy but [...]]]></description>
			<content:encoded><![CDATA[<p>One of my all time favorite games was released as free download few weeks ago as a celebration of 15th anniversary of Elder Scrolls series. It’s 1996 title <a title="Elder Scrolls: Daggerfall" href="http://en.wikipedia.org/wiki/Daggerfall" target="_blank">The Elder Scrolls: Daggerfall</a> by Bethesda. You can get 150MiB zip archive with install at <a href="http://bethblog.com/index.php/2009/07/09/daggerfall-now-available-for-free/" target="_blank">BethSoft&#8217;s site</a>. Getting it working on modern OS is not easy but DosBox should help here.</p>
<p>There were a lot of attempts at remakes of Daggerfall but all failed so far. However, a new promising one appeared recently and it’s progressing at warp speed since then (one month from wrongly textured entrance of Privateer’s Hold dungeon to rendering city blocks). Check out development blog and downloads at the homepage of <a href="http://daggerxl.wordpress.com/" target="_blank">DaggerXL</a>. You need original Daggerfall data files to run the demo – no problem now when you can get it free.</p>
<p><a href="http://www.dfworkshop.net/" target="_blank">Daggerfall Workshop</a> was recently reopened as well. It’s a home of tools that let you explore Daggerfall’s game assets (textures, models, maps, music, etc.). There’s also a new exploring tool in development that looks really good, with very interesting blog posts about various Dagger’s file formats, rendering techniques, and so on.</p>
<p>I did my small share of dabbling in Daggerfall’s file formats too. Image and texture loaders in Object Pascal are part of ElderImagery extension of Imaging library and I’ve got BSA archive handler somewhere too. I’m now thinking of adding SKY format (backdrop images used in game for skies and far away mountains) loader, just for fun I guess.</p>
<p>When writing about Daggerfall, one cannot forget mentioning its music which was really excellent. Much more atmospheric and fitting than the music in recent Elder Scrolls games (there was also a lot more tracks). Check out <a href="http://www.rhmusic.net/dfmusicproject/music.html" target="_blank">Robert Hood’s arrangements</a> of Eric Heberling&#8217;s original music tracks.</p>
<p style="text-align: center;"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag01.png" rel="lightbox[554]"><img class="alignnone size-thumbnail wp-image-555" title="Castle Wayrest" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag01-192x128.png" alt="Castle Wayrest" width="192" height="128" /></a><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag02.png" rel="lightbox[554]"><img class="alignnone size-thumbnail wp-image-556" title="Wildreness at night" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag02-192x128.png" alt="Wildreness at night" width="192" height="128" /></a></p>
<p style="text-align: center;"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag03.png" rel="lightbox[554]"><img class="alignnone size-thumbnail wp-image-557" title="Wilderness" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag03-192x128.png" alt="Wilderness" width="192" height="128" /></a><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag04.png" rel="lightbox[554]"><img class="alignnone size-thumbnail wp-image-558" title="My character" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag04-192x128.png" alt="My character" width="192" height="128" /></a></p>
<p style="text-align: center;"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag05.png" rel="lightbox[554]"><img class="size-thumbnail wp-image-559 aligncenter" title="My other character" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/07/dag05-192x128.png" alt="My other character" width="192" height="128" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/07/daggerfall-for-free/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>First JPEG 2000 for Pascal Release</title>
		<link>http://galfar.vevb.net/wp/2009/07/first-jpeg-2000-for-pascal-release/</link>
		<comments>http://galfar.vevb.net/wp/2009/07/first-jpeg-2000-for-pascal-release/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 13:18:39 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Image Formats]]></category>
		<category><![CDATA[JPEG 2000 for Pascal]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/07/first-jpeg-2000-for-pascal-release/</guid>
		<description><![CDATA[I finally released first version of JPEG 2000 for Pascal library. It’s based on translated header and precompiled OpenJpeg library that was part of Imaging for a long time – now released separately.
There’s header translation working with both Delphi and FPC and original C library precompiled to object files (Delphi) and static libraries (FPC for [...]]]></description>
			<content:encoded><![CDATA[<p>I finally released first version of JPEG 2000 for Pascal library. It’s based on translated header and precompiled <a href="http://www.openjpeg.org" target="_blank">OpenJpeg</a> library that was part of Imaging for a long time – now released separately.</p>
<p>There’s header translation working with both Delphi and FPC and original C library precompiled to object files (Delphi) and static libraries (FPC for Win32, Linux x86/x64, and Mac OS X).</p>
<p>I’ve written simple TBitmap descendant that loads and saves JPEG 2000 images. It’s only for Delphi now – can’t do LCL version with just few IFDEFS, there are lot more changes between VCL and LCL TBitmaps. I plan to write separate LCL version for one of upcoming releases (using TFPCustomImageWriter and TFPCustomImageReader classes).</p>
<p>You can get JPEG 2000 for Pascal library at it’s <a href="http://galfar.vevb.net/pasjpeg2000">project page</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/07/first-jpeg-2000-for-pascal-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APNG Update</title>
		<link>http://galfar.vevb.net/wp/2009/06/apng-update/</link>
		<comments>http://galfar.vevb.net/wp/2009/06/apng-update/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 02:45:17 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Image Formats]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/06/apng-update/</guid>
		<description><![CDATA[APNG loading and animating implementation for Imaging wasn&#8217;t very hard work. However, there are not that many test images to be found on the Internet and most of the available ones are very simple. They&#8217;re usually not using disposal methods and are basically just collection of independent images. Big difference compared to GIF files &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>APNG loading and animating implementation for Imaging wasn&#8217;t very hard work. However, there are not that many test images to be found on the Internet and most of the available ones are very simple. They&#8217;re usually not using disposal methods and are basically just collection of independent images. Big difference compared to GIF files &#8211; some of them were quite difficult to animate right. I even got most of nontrivial APNG test files by converting some more complex animated GIF files. Tools for creating APNG images are not yet as sophisticated as some GIF animation tools &#8211; there&#8217;s <a href="http://sourceforge.net/projects/giftoapngconver" target="_blank">GIF to APNG converter</a>, <a href="http://sites.google.com/site/cphktool/apng-anime-maker" target="_blank">APNG Anime Maker</a>, and some web based tools that assemble simple APNG file from bunch of uploaded single PNG frames.</p>
<p>Now I&#8217;m gonna extend PNG saver to allow saving multi images to simple APNG files, much like MNG saving works now. There&#8217;s really not a good unified way how to pass some more information to image file savers in current library design &#8211; that&#8217;s one of TODOs for new Imaging architecture.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/06/apng-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APNG Support for Imaging</title>
		<link>http://galfar.vevb.net/wp/2009/05/apng-support-for-imaging/</link>
		<comments>http://galfar.vevb.net/wp/2009/05/apng-support-for-imaging/#comments</comments>
		<pubDate>Tue, 19 May 2009 20:32:30 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Image Formats]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/05/apng-support-for-imaging/</guid>
		<description><![CDATA[I started working on support for APNG format for Imaging library. APNG is unofficial extension of PNG image file format created by two guys from Mozilla Corporation. The point of APNG is to allow storing simple animations in PNG files (hence the &#8220;A&#8221; for &#8220;Animated&#8221;).
There is already PNG-like chunk based format for animations called MNG [...]]]></description>
			<content:encoded><![CDATA[<p>I started working on support for <strong>APNG</strong> format for Imaging library. APNG is unofficial extension of PNG image file format created by two guys from Mozilla Corporation. The point of APNG is to allow storing simple animations in PNG files (hence the &#8220;A&#8221; for &#8220;Animated&#8221;).</p>
<p>There is already PNG-like chunk based format for animations called <strong>MNG </strong>(already supported by Imaging &#8211; at least the basic features). However, MNG is quite complex format and its support among browsers and image viewers/editors is lacking. Code library supporting all MNG features is huge.</p>
<p>APNG on the other hand is just an extension of PNG and its implementation is not so complex. I&#8217;m going to load only the raw frames from files at first and see what will have to be done to support animating the frames next. Canvas class will have to be used here for alpha blending subsequent frames to previous ones. I&#8217;ll add option to turn the animating on/off just like it is available for animated GIF files.</p>
<p>More info about APNG: <a title="http://www.animatedpng.com" href="http://www.animatedpng.com">http://www.animatedpng.com</a> and <a title="https://wiki.mozilla.org/APNG_Specification" href="https://wiki.mozilla.org/APNG_Specification">https://wiki.mozilla.org/APNG_Specification</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/05/apng-support-for-imaging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Homepage Ready</title>
		<link>http://galfar.vevb.net/wp/2009/05/new-homepage-ready/</link>
		<comments>http://galfar.vevb.net/wp/2009/05/new-homepage-ready/#comments</comments>
		<pubDate>Sat, 02 May 2009 11:52:03 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/05/new-homepage-ready/</guid>
		<description><![CDATA[I created new web site based on Wordpress at http://galfar.vevb.net/wp/ few months and I’ve been slowly transferring content there since then. It’s ready now so I’ll redirect http://galfar.vevb.net/ to the new site in a moment. Old one will still be available at http://galfar.vevb.net/cms/ but all the old content should be available here too.
Current theme is [...]]]></description>
			<content:encoded><![CDATA[<p>I created new web site based on Wordpress at <a title="http://galfar.vevb.net/wp/" href="http://galfar.vevb.net/wp/">http://galfar.vevb.net/wp/</a> few months and I’ve been slowly transferring content there since then. It’s ready now so I’ll redirect <a title="http://galfar.vevb.net/wp/" href="http://galfar.vevb.net/wp/">http://galfar.vevb.net/</a> to the new site in a moment. Old one will still be available at <a title="http://galfar.vevb.net/wp/" href="http://galfar.vevb.net/cms/">http://galfar.vevb.net/cms/</a> but all the old content should be available here too.</p>
<p>Current theme is just temporary, I’ll look for something more to my liking later (going away for a week in few hours) and probably do some modifications. I’ve tried quite a few themes already but there was always some glitch (no header margins, wrong image alignment, etc.).</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/05/new-homepage-ready/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working in MODULA-2</title>
		<link>http://galfar.vevb.net/wp/2009/04/working-in-modula-2/</link>
		<comments>http://galfar.vevb.net/wp/2009/04/working-in-modula-2/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 10:36:37 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/04/working-in-modula-2/</guid>
		<description><![CDATA[I’ve been working in Modula-2 for last few weeks. It’s a considered a dead language now, one of Pascal’s descendants designed by Niclaus Wirth. I’ve been doing some updates to quite an old project, embedded system for military usage.&#160; I had to run Mac OS 7.5 emulator to get original 1989 compiler running. Modula-2 dialect [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been working in Modula-2 for last few weeks. It’s a considered a dead language now, one of Pascal’s descendants designed by Niclaus Wirth. I’ve been doing some updates to quite an old project, embedded system for military usage.&#160; I had to run Mac OS 7.5 emulator to get original 1989 compiler running. Modula-2 dialect understood by this compiler is quite strict – you cannot even mix cardinal and integer numbers without explicitly converting one of them. </p>
<p>First difference you may notice (compared to Pascal) is case sensitiveness of Modula-2, for instance all reserved words are upper cased. You don’t have to write so many begin-end statements though. Another C-like trait is importance of header files (definition modules) order during compiling – just change it a little bit in a large project and whole thing breaks down. </p>
<p align="left">More info about Modula-2 if you’re interested: <a href="http://www.modula2.org/">http://www.modula2.org/</a>.</p>
<p align="left"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Modula-2" border="0" alt="Modula-2" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/04/modula2.png" width="448" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/04/working-in-modula-2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Imaging in Mac OS X</title>
		<link>http://galfar.vevb.net/wp/2009/02/imaging-in-mac-os-x/</link>
		<comments>http://galfar.vevb.net/wp/2009/02/imaging-in-mac-os-x/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 13:11:00 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/2009/02/imaging-in-mac-os-x/</guid>
		<description><![CDATA[I wasn’t sure if Vampyre Imaging Library works right in Mac OS X until few weeks ago. One poster in Imaging’s forum wrote a post about scrambled images produced by the library on Mac OS X. Fortunately, the problem was related only to Lazarus LCL support – all other functionality worked fine.
After not so straightforward [...]]]></description>
			<content:encoded><![CDATA[<p>I wasn’t sure if <strong>Vampyre Imaging Library</strong> works right in <strong>Mac OS X</strong> until few weeks ago. One poster in Imaging’s forum wrote a <a href="http://galfar.vevb.net/imaging/smf/index.php/topic,91.0.html">post</a> about scrambled images produced by the library on Mac OS X. Fortunately, the problem was related only to Lazarus LCL support – all other functionality worked fine.</p>
<p>After not so straightforward installation of Mac OS X in VMWare I fixed the issue just by changing number “24” to “32” in the code (TRawImage.Description.Depth field, LCL raw image to TBitmap conversion). Apparently, Carbon created bitmap with 6 bits per color channel. Now I just need to check if 24-&gt;32 change doesn’t break anything when using other LCL widget sets (I’m sure there was a reason for 24bits since I vaguely remember 32bits were there few years ago) – so maybe conditional compilation will be needed here.</p>
<p>Another issue I noticed is that <strong>LCL Imager</strong> demo couldn’t load default image (Tigers.jpg) that is displayed when it is started without parameters. Demo uses relative path to the image but (from Demos/Bin to Demos/Data directory). Mac OS X application LCLImager.app is placed in Demos/Bin directory by Lazarus but it is not a simple single file. It’s a directory itself and actual demo executable is located somewhere inside. I’ve not really decided on solution yet. Maybe embed the image in the executable as resource?</p>
<p style="text-align: center;"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2009/02/tigers-1-and-tigers-2.jpg" rel="lightbox[226]"><img class="size-medium wp-image-236 aligncenter" title="Tigers1 and Tigers2, see the difference?" src="http://galfar.vevb.net/wp/wp-content/uploads/2009/02/tigers-1-and-tigers-2-512x188.jpg" alt="See the difference?" width="512" height="188" /></a></p>
<p style="text-align: center;">See the difference?</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/02/imaging-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.26.2 released!</title>
		<link>http://galfar.vevb.net/wp/2009/01/imaging-0262-released/</link>
		<comments>http://galfar.vevb.net/wp/2009/01/imaging-0262-released/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 02:14:47 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/wp/?p=134</guid>
		<description><![CDATA[My Vampyre Imaging Library was updated to version 0.26.2 few days ago. This was mostly fix/patch/update release with no significant new features.
I decided to remove Kylix support (CLX graphic classes, project files, build scripts, core library still compiles). It&#8217;s not working properly on many (all?) current Linux distros (so I can&#8217;t test) and it was [...]]]></description>
			<content:encoded><![CDATA[<p>My <strong>Vampyre Imaging Library</strong> was updated to version 0.26.2 few days ago. This was mostly fix/patch/update release with no significant new features.</p>
<p>I decided to remove Kylix support (CLX graphic classes, project files, build scripts, core library still compiles). It&#8217;s not working properly on many (all?) current Linux distros (so I can&#8217;t test) and it was abandoned by Borland/Codegear quite some time ago. It was nice to have DCC compiler in Linux and it also made Borland to make Delphi RTL crossplatform. There are rumors about crosscompiling features in upcoming Delphi releases (in 2010?)&#160; so maybe we&#8217;ll see DCC in Linux again.</p>
<p>Instead of Kylix project files there are new ones for Delphi 2009. Imaging itself didn&#8217;t require many fixes to compile and work with Delphi 2009,&#160; most of them were related to text-based file format loaders (XMP, PNM) and external libraries (JpegLib, ZLib).</p>
<p>More info and downloads at <a href="http://imaginglib.sourceforge.net">Imaging&#8217;s homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2009/01/imaging-0262-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some News</title>
		<link>http://galfar.vevb.net/wp/2008/09/some-news/</link>
		<comments>http://galfar.vevb.net/wp/2008/09/some-news/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 11:21:48 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/26-guid.html</guid>
		<description><![CDATA[Vampyre Imaging Library 0.26.0 was finally released few days ago. There are many canvas enhancements and support for 3Dc compressed formats. More info and downloads at project&#8217;s homepage: http://imaginglib.sourceforge.net.
I&#8217;m planning revamping this whole site. Maybe creating some sort of simple CMS myself or just some better way to handle the projects. I don&#8217;t enjoy coding [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Vampyre Imaging Library 0.26.0</strong> was finally released few days ago. There are many canvas enhancements and support for 3Dc compressed formats. More info and downloads at project&#8217;s homepage: <a href="http://imaginglib.sourceforge.net">http://imaginglib.sourceforge.net</a>.</p>
<p>I&#8217;m planning revamping this whole site. Maybe creating some sort of simple CMS myself or just some better way to handle the projects. I don&#8217;t enjoy coding in PHP but there&#8217;s not much choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2008/09/some-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.24.2 Released</title>
		<link>http://galfar.vevb.net/wp/2007/12/imaging-0242-released/</link>
		<comments>http://galfar.vevb.net/wp/2007/12/imaging-0242-released/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 12:13:19 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/25-guid.html</guid>
		<description><![CDATA[New version of my Imaging library was released today. Check out the project homepage: http://imaginglib.sf.net
]]></description>
			<content:encoded><![CDATA[<p>New version of my Imaging library was released today. Check out the project homepage: <a href="http://imaginglib.sf.net">http://imaginglib.sf.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/12/imaging-0242-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Update</title>
		<link>http://galfar.vevb.net/wp/2007/11/an-update/</link>
		<comments>http://galfar.vevb.net/wp/2007/11/an-update/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 11:49:26 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/24-guid.html</guid>
		<description><![CDATA[There has been no news for quite some time. This will change! Or maybe not.
Imaging 0.24.2 patch will hopefully be released soon (waiting for Lazarus 0.9.24 since there is LCL change that breaks Imaging&#8217;s LCL support for older Lazaruses). More about new Imaging can be found at its homepage. I also plan to release OpenJPEG [...]]]></description>
			<content:encoded><![CDATA[<p>There has been no news for quite some time. This will change! Or maybe not.</p>
<p>Imaging 0.24.2 patch will hopefully be released soon (waiting for Lazarus 0.9.24 since there is LCL change that breaks Imaging&#8217;s LCL support for older Lazaruses). More about new Imaging can be found at its <a href="http://imaginglib.sf.net">homepage</a>. I also plan to release OpenJPEG (JPEG 2000 library) for Pascal independent on Imaging for those who just want JPEG 2000 for their programs.</p>
<p>I will (have to) start working on my Master&#8217;s thesis in very near future so you may expect some demos soon (terrain rendering stuff again).</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/11/an-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.24.0 Released!</title>
		<link>http://galfar.vevb.net/wp/2007/06/imaging-0240-released/</link>
		<comments>http://galfar.vevb.net/wp/2007/06/imaging-0240-released/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 13:41:33 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/23-guid.html</guid>
		<description><![CDATA[Version 0.24.0 of Imaging has been released!    Main news/changes in 0.24.0:

New image file format support: GIF (native), TIFF (libtiff), PSD (native). 
New image data format: BTC (block truncation coding). 
File format compatibility fixes (for BMP, JPEG, and DDS)     and platform/compiler support fixes (Win64, UNIX, FPC, &#8230;). 
Bug fixes [...]]]></description>
			<content:encoded><![CDATA[<p>Version <strong>0.24.0</strong> of <strong>Imaging</strong> has been released!    <br />Main news/changes in 0.24.0:</p>
<ul>
<li>New image file format support: <strong>GIF</strong> (native), <strong>TIFF</strong> (libtiff), <strong>PSD</strong> (native). </li>
<li>New image data format: <strong>BTC</strong> (block truncation coding). </li>
<li>File format compatibility fixes (for BMP, JPEG, and DDS)     <br />and platform/compiler support fixes (<strong>Win64</strong>, UNIX, FPC, &#8230;). </li>
<li>Bug fixes and some enhancements (buffered file IO, &#8230;). </li>
</ul>
<p>Visit <a href="http://imaginglib.sourceforge.net">Vampyre Imaging Library Homepage</a> for more news and downloads or <a href="http://galfar.vevb.net/imaging/smf">Imaging Forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/06/imaging-0240-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Earth Under Fire Slighty Updated</title>
		<link>http://galfar.vevb.net/wp/2007/06/earth-under-fire-slighty-updated/</link>
		<comments>http://galfar.vevb.net/wp/2007/06/earth-under-fire-slighty-updated/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 16:56:56 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Earth Under Fire]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/22-guid.html</guid>
		<description><![CDATA[There is a new beta of Earth Under Fire. Several bugs were fixed, libraries used by the game were updated to current versions, and the game now supports multisample antialiasing.
Find more at Earth Under Fire page.
]]></description>
			<content:encoded><![CDATA[<p>There is a new beta of Earth Under Fire. Several bugs were fixed, libraries used by the game were updated to current versions, and the game now supports multisample antialiasing.</p>
<p>Find more at <a href="http://galfar.vevb.net/euf">Earth Under Fire page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/06/earth-under-fire-slighty-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chaos Unleashed</title>
		<link>http://galfar.vevb.net/wp/2007/06/chaos-unleashed/</link>
		<comments>http://galfar.vevb.net/wp/2007/06/chaos-unleashed/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 12:05:59 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Chaos]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/21-guid.html</guid>
		<description><![CDATA[I&#8217;ve just created a new page in Projects section about my entry for PGD 2007 Compo named Domains Of Chaos.
Check it out here:
Domains Of Chaos Page

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just created a new page in <strong>Projects</strong> section about my entry for <a href="http://pascalgamedevelopment.com">PGD 2007 Compo</a> named <strong>Domains Of Chaos</strong>.</p>
<p>Check it out here:<br />
<a href="http://galfar.vevb.net/chaos">Domains Of Chaos Page</a></p>
<p><a href="http://galfar.vevb.net/wp/wp-content/uploads/2007/06/chaos01.png" rel="lightbox[82]"><img class="aligncenter size-thumbnail wp-image-116" title="Domains of Chaos" src="http://galfar.vevb.net/wp/wp-content/uploads/2007/06/chaos01-256x192.png" alt="Domains of Chaos" width="256" height="192" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/06/chaos-unleashed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UFO: Extraterrestrials Released</title>
		<link>http://galfar.vevb.net/wp/2007/05/ufo-extraterrestrials-released/</link>
		<comments>http://galfar.vevb.net/wp/2007/05/ufo-extraterrestrials-released/#comments</comments>
		<pubDate>Tue, 08 May 2007 00:08:10 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/18-guid.html</guid>
		<description><![CDATA[The game I have been working on for Chaos Concept was finally released. If you liked old XCOM games you may like this one as well. It has geoscape mode with base building, research, UFO interceptions, etc. and turn based tactical missions just like in XCOM.
UFO: Extraterrestrials homepage:   http://www.ufo-extraterrestrials.com.    UFO [...]]]></description>
			<content:encoded><![CDATA[<p>The game I have been working on for Chaos Concept was finally released. If you liked old XCOM games you may like this one as well. It has geoscape mode with base building, research, UFO interceptions, etc. and turn based tactical missions just like in XCOM.</p>
<p>UFO: Extraterrestrials homepage:   <br /><a href="http://www.ufo-extraterrestrials.com/">http://www.ufo-extraterrestrials.com</a>.    <br />UFO at Gamers Gate (digital download for EU and rest of the globe except North America): <a href="http://www.gamersgate.com/index.php?page=product&amp;what=view&amp;sku=DD-UFOET">Gamers Gate UFO page</a>.    <br />UFO at Matrix Games (digital download for North America): <a href="http://matrixgames.com/games/game.asp?gid=342">Matrix Games UFO page</a>.</p>
<p>Boxed version will be available in few weeks.   <br />Now working on first patch&#8230;    <br /><a href="http://galfar.vevb.net/wp/wp-content/uploads/2007/05/ufoet-3dbox-170x220.gif" rel="lightbox[81]"><img class="aligncenter size-full wp-image-114" title="UFO: ET" height="220" alt="UFO: ET" src="http://galfar.vevb.net/wp/wp-content/uploads/2007/05/ufoet-3dbox-170x220.gif" width="170" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/05/ufo-extraterrestrials-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.22.0 Released</title>
		<link>http://galfar.vevb.net/wp/2007/01/imaging-0220-released/</link>
		<comments>http://galfar.vevb.net/wp/2007/01/imaging-0220-released/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 22:14:48 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/16-guid.html</guid>
		<description><![CDATA[End of January is here and as I wrote in the last post &#8211; Imaging 0.22 is ready. I wrote about new stuff earlier so I just put some links here:
Vampyre Imaging Library Homepage with news and downloads.
Imaging Forum with more news.
]]></description>
			<content:encoded><![CDATA[<p>End of January is here and as I wrote in the last post &#8211; <strong>Imaging 0.22 is ready</strong>. I wrote about new stuff earlier so I just put some links here:</p>
<p><a href="http://imaginglib.sourceforge.net">Vampyre Imaging Library Homepage</a> with news and downloads.<br />
<a href="http://galfar.vevb.net/imaging/smf">Imaging Forum</a> with more news.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/01/imaging-0220-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 0 0 7</title>
		<link>http://galfar.vevb.net/wp/2007/01/2-0-0-7/</link>
		<comments>http://galfar.vevb.net/wp/2007/01/2-0-0-7/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 22:52:30 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[General News]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/15-guid.html</guid>
		<description><![CDATA[Again, the Year variable has incremented. Current value is 2007.
I&#8217;m going to release Imaging 0.22 with Extras package in late January or early February. There are only few finishing touches needed but I don&#8217;t have much time now (many exams at uni). Later I plan to devote some time to update Earth Under Fire, maybe [...]]]></description>
			<content:encoded><![CDATA[<p>Again, the Year variable has incremented. Current value is 2007.</p>
<p>I&#8217;m going to release <a href="http://imaginglib.sourceforge.net">Imaging</a> 0.22 with Extras package in late January or early February. There are only few finishing touches needed but I don&#8217;t have much time now (many exams at uni). Later I plan to devote some time to update <a href="http://galfar.vevb.net/euf">Earth Under Fire</a>, maybe even create 1.0 version and close it. Next I want to brush up on Python (but with my Delphi module containing Imaging and other stuff) and create simple <a href="http://en.wikipedia.org/wiki/Chaos_(video_game)">Chaos</a> remake with multiplayer over the Internet. More info on this later.</p>
<p>There is also a commercial app in Delphi we are starting with a friend. And <a href="www.ufo-extraterrestrials.com/">UFO: Extraterrestrials</a> game is about to be released soon (I hope) so I expect subsequent patches, patches, and maybe even some patches. And I should pick up some theme for my Master&#8217;s thesis soon and do some stuff for it. Well, looks like a busy year, [sigh].</p>
<p>And now for something completely different:</p>
<p style="text-align: center"><a href="http://galfar.vevb.net/wp/wp-content/uploads/2007/01/ostrich01.jpg" rel="lightbox[78]"><img class="size-thumbnail wp-image-105 alignnone" title="Ostrich 1" src="http://galfar.vevb.net/wp/wp-content/uploads/2007/01/ostrich01-208x256.jpg" alt="" width="208" height="256" /></a> <a href="http://galfar.vevb.net/wp/wp-content/uploads/2007/01/ostrich02.jpg" rel="lightbox[78]"><img class="size-thumbnail wp-image-106 alignnone" title="Ostrich 2" src="http://galfar.vevb.net/wp/wp-content/uploads/2007/01/ostrich02-118x256.jpg" alt="" width="118" height="256" /></a></p>
<p>This is something you don&#8217;t see every day. I met this herd of polar ostriches few days ago. Scary bunch.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2007/01/2-0-0-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging Extras Package &#8211; Work In Progress</title>
		<link>http://galfar.vevb.net/wp/2006/12/imaging-extras-package-work-in-progress/</link>
		<comments>http://galfar.vevb.net/wp/2006/12/imaging-extras-package-work-in-progress/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 04:09:00 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/14-guid.html</guid>
		<description><![CDATA[I am working on package with extra content for Vampyre Imaging Library. That means additional image file formats, new extensions, demos, and other stuff.
File formats in extras will also include JPEG2000. Reason why it won&#8217;t be in the core library is this: there is no native Pascal library for loading/saving JPEG2000 images (at least I [...]]]></description>
			<content:encoded><![CDATA[<p>I am working on package with extra content for <strong>Vampyre Imaging Library</strong>. That means additional image file formats, new extensions, demos, and other stuff.</p>
<p>File formats in extras will also include <strong>JPEG2000</strong>. Reason why it won&#8217;t be in the core library is this: there is no native Pascal library for loading/saving JPEG2000 images (at least I haven&#8217;t found one) so Imaging will link to C library compiled to object files (OpenJPEG most probably). Therefore it won&#8217;t work on all platforms supported by Imaging (and thus cannot be included in core library).</p>
<p>There is also <strong>PCX</strong> loader, there will be PNM (for <strong>PBM</strong>, <strong>PGM</strong>, <strong>PPM</strong>, and <strong>PAM</strong>) loader/saver, and maybe even <strong>GIF</strong> support (if there will be enough time to implement it). I have converted my old <strong>Daggerfall</strong> image/texture loaders to Imaging too and added Redguard and BattleSpire support.</p>
<p>First version of extras package will be released around the end of 2006. New Imaging release will be made too because stuff in extras depends on some changes made in core library since 0.20 release. Current working version of Imaging and extras package is in project&#8217;s <strong>SubVersion</strong> repository.</p>
<p>Visit <a href="http://imaginglib.sourceforge.net/">Vampyre Imaging Library homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2006/12/imaging-extras-package-work-in-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imaging 0.20.0 Released</title>
		<link>http://galfar.vevb.net/wp/2006/11/imaging-0200-released/</link>
		<comments>http://galfar.vevb.net/wp/2006/11/imaging-0200-released/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 13:15:51 +0000</pubDate>
		<dc:creator>Marek Mauder</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Vampyre Imaging Library]]></category>

		<guid isPermaLink="false">http://galfar.vevb.net/cms/archives/13-guid.html</guid>
		<description><![CDATA[New version of my Vampyre Imaging Library is out.
New features are in and many bugs found in v0.18 has been fixed. There is also new Imaging Forum available.
Main news/changes in 0.20.0:

New TImagingCanvas class with methods for drawing objects and applying effects was added (although there is not much functionality yet).
New image data formats based on [...]]]></description>
			<content:encoded><![CDATA[<p>New version of my <strong>Vampyre Imaging Library</strong> is out.<br />
New features are in and many bugs found in v0.18 has been fixed. There is also new <a href="http://galfar.vevb.net/imaging/smf">Imaging Forum</a> available.</p>
<p>Main news/changes in 0.20.0:</p>
<ul>
<li>New <strong>TImagingCanvas</strong> class with methods for drawing objects and applying effects was added (although there is not much functionality yet).</li>
<li>New image data formats based on 16bit <strong>half-float</strong> (FP16) type has been added and <strong>OpenGL</strong> and<strong> Direct3D</strong> extensions can now create textures in these formats too.</li>
<li>Imaging now compiles and works on <strong>64bit CPU</strong>s (Linux on AMD64).</li>
<li>High level interface classes were extended and updated as well as <strong>VCL/CLX/LCL</strong> support and low level interface.</li>
<li>Some old demos were removed, new added, and rest was updated.</li>
</ul>
<p>You can learn more about Imaging at its <a href="http://imaginglib.sourceforge.net">homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://galfar.vevb.net/wp/2006/11/imaging-0200-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
