
This is the first article of a series I am writing about a home project I started in late 2019 : implementing an Atari ST on a FPGA board.
Edit: The following articles on this project are on the project's website.
This is the first article of a series I am writing about a home project I started in late 2019 : implementing an Atari ST on a FPGA board.
Edit: The following articles on this project are on the project's website.
Last weekend I was at Silly Venture 2k18 in Gdansk, Poland. I presented a new 4kB Atari ST intro, titled "We accidentally your Oculus".
It's been a long time since I haven't released an update of my Multi Palette Picture (MPP) image conversion code for Atari ST compatible computers. It's mostly a bug fix release, which improves image stability quite much on some hardware.
An extra feature was added in the encoder, which consists in an exact solver which finds optimal palettes at the price of a lot of computing time. It is mostly for curiosity purposes, since the highest heuristic optimization levels provide similar quality conversions, at much higher speed.
As usual, the conversion code is released as both binary formats for Windows and Atari TOS, and source code under the WTFPL licence.
Have fun with this release ! :)
I was at Sillyventure 2012, a demoparty in Gdansk, Poland, where Chuck and I finished debugging UFO demo, which competed at the oldskool demo compo in Numerica Altparty #2 in Montbéliard, France in 2009, and even won the first prize!
Since then, we released Antiques, among other things, and never found the time to fix annoying bugs in UFO to release a proper version. We took profit from the time we had at the party to finish fixing it, so now it is available to the public!
It works on Atari STe and Falcon, with at least two megabytes of memory.
Graphics are from Mic, music is by Dma-Sc, code by Chuck, Frost, ST Ghost and me.
Hoping you'll like it! And remember, the truth is out there.
Too much time since I haven't written to this blog!
From last time, among other things I have participated to the Antiques demo, an Atari STe demo by Dune and Sector One. This is to my opinion a great Atari demo, which is really worth the look. It features great physics and 3D effects by Chuck, great graphics from Mic and awesome music from Dma-Sc. All of this put together by the Sector One conductor, ST Ghost.
In this demo I have done minor helper animation code, like the intro and the greetings part. I also used a new method for displaying still pictures with a large number of colors available on the screen.
Here is for instance one of such pictures, by Mic:
Can you believe this picture can be displayed by an Atari STe, which is supposed to be able to only display 16 colors per picture, from a palette of 4096 colors? Well it can! Basically, Atari ST coders know from a long time how to display pictures with more than 16 colors. This is done by synchronizing palette changes with the screen refresh. Some graphics programs even take profit from such techniques like the famous Neochrome Master which allows to schedule the palette changes at determined vertical positions in the image, or Spectrum 512 which even allows to display more than 16 colors in a single scanline, typically 44 of them. The method used in Antiques demo allows to display 56 different colors per scanline from 29791 possible shades, making use of the blitter chip for that purpose.
In fact, the display method was not the trickiest part in the project. The biggest challenge was to determine a method to generate the data (pixels and palette) to make images look the best as possible when displayed on the STe. A program like Spectrum 512 uses a very basic method to construct image data. It also behaves badly when it has to deal with numerous colors. Of course it had to run on the Atari, with very limited processing power.
My method uses a heuristic method to generate pixel and palette data. It spends a lot of processing power to run a simulated annealing based search method to try and find the best data for each scanline of the picture. The image generation is written in C language and is rather well optimized, to reduce useless computations and make the overall run time acceptable on a modern computer. The program even works on the Atari, if you have enough patience ;)
I have diversified the display method from a single STe-only method to four different methods, the remaining three being also able to run on a plain ST (only 3375 colors are available on the ST though). One mode supports fullscreen, allowing a picture resolution of 416x273 pixels with 48 different possible colors per scanline. I created my own file format to support the different display modes and image types. This format is called MPP, for "Multi Palette Picture".
I am releasing the code of the image converter and the file viewer running on the ST and STe. The Mega STe is also supported. The code is available under the WTFPL public license, which basically corresponds to the public domain. People can use it for what they want, use the code in file conversion plugins, make better sophisticated viewers, etc. You will find the link to the archive at the bottom of this article. I also provide an archive with different sample images. Hoping people will do funny things with that code!
I have recently been asked by Dma-Sc from Sector One to make a simple tool to merge MaxYMiser song files (in .mys format) into a single song file containing both songs. So here comes myscat !
It takes two song files as input, and builds a new file with all patterns from both files, and with a pattern sequence such as the contents of the first song is played first, and the contents of the second song is played second. Patterns from both files appear in the same order as in the original files, and patterns from the second file are renumbered.
myscat runs from the command line, and if no arguments are provided it takes files named "1.mys" and "2.mys" as input, and produces a "out.mys" file as output. You will find more information about command line argument formatting in the included information text.
The C source code is included. It compiles fine with vbcc as well as gcc. myscat is distributed under the WTFPL license.
I went to Sillyventure 2010 in Gdansk, Poland. It was a demoparty only for Atari computers (8bit, ST/STE/TT/Falcon). This party was really cool, and many thanks to Grey/Mystic Bytes for having organized almost everything alone ! That was really impressive work.
At this party, I presented a 4 kB intro for the Atari ST. Its name is ``Coast to Coast'', as a homage to the Black Monolith Team screen named ``Coast'', released in 1991 in the well known Punish Your Machine megademo for the Atari ST. This intro features realtime-rendered Mandelbrot fractals where each pixel value is really computed (ie, we actually compute a Mandelbrot suite), unlike BMT who actually decompressed pre-rendered images, or Leonard of Oxygene who uses ugly approximations.
This intro also features a nice chip tune by Dma-Sc, and a dot flag effect in fullscreen.
I hope you enjoy it as much as I enjoyed making it !
I mainly describe myself as a hacker. I won't debate here about the real meaning of that term, because zillions of webpages already debate about what hackers really are. To keep things short, my definition of hackers corresponds to computer enthusiats which like to break limits of their machines and constantly work to improve their knowledge about programming and problems solving.
So, as this hobby is focused around computers, what best way to present my progress other than presenting the computers I used to spend my time on ...