Recent Posts

Pages: [1] 2 3 ... 10
1
General / Diskmags dead on Amiga?
« Last post by Ghandy on January 20, 2023, 07:51:37 PM »
Ghandy here from Nukleus.

I'd like to know why so few people do care of reading or producing a diskmag. I really like those interviews which are online here. But with the graphics and the music running in the background, it's really something different. Also on PC the era or diskmags is over as all three former active mags are dead, which were PaIN, ZINE and Hugi.

The situation on the Amiga is compareable. Since the last issue of JP in April 2022 nothing has been released which could be described as a diskmag. Even on Atari there are some diskmags which come out from time to time. And on the C64 the diskmag scene is quite active with a lot of mags. And it seems, some of them are really of a high quality. But why not on Amiga?

People find free time to create demos and intros, but not anymore to produce a decent mag. I ask myself why.
2
News / Re: Icarus anyone?
« Last post by 4pLaY on July 02, 2022, 05:53:53 PM »
Has anyone been successful in installing ICAROS?  I've three old laptops and my main machine (which is now 12 years old) and none of them could use the .iso DVD.  I burned it in both Windblows and Ubuntu Linux and although the DVD is accessed during boot up - it obviously fails to start up.  The three laptops all use BIOS - the main machine does have a UEFI, so I'm not surprised that it doesn't work - but the laptops are all DELL models between 8 and 12 years old.  <sigh>  I was kind of hoping to develop outside of AmigaForever - which does an excellent job, but I'd like to make use of a wider screen and more modern desktop.

I guess you mean Icaros :). In that case, you want to check out ae.amigalife.org which is the forum dedicated to aros :).
3
News / Icarus anyone?
« Last post by Star Dad on July 01, 2022, 08:17:26 PM »
Has anyone been successful in installing ICAROS?  I've three old laptops and my main machine (which is now 12 years old) and none of them could use the .iso DVD.  I burned it in both Windblows and Ubuntu Linux and although the DVD is accessed during boot up - it obviously fails to start up.  The three laptops all use BIOS - the main machine does have a UEFI, so I'm not surprised that it doesn't work - but the laptops are all DELL models between 8 and 12 years old.  <sigh>  I was kind of hoping to develop outside of AmigaForever - which does an excellent job, but I'd like to make use of a wider screen and more modern desktop.
4
Introduction / Hello from 1987
« Last post by Star Dad on July 01, 2022, 08:11:10 PM »
Just thought I'd drop by and say hello to you all.  I see no one has posted here for 4 years - so I might as well.  I'm a long time Amiga fanatic - having bought (with a friend) the first two Amigas in the Northeast USA.  I'm a developer - and in the last year I've rediscovered the Amiga and I'm working on a couple of projects using AmigaForever and WB 3.1.  What a joy to work on a machine that doesn't have dozens of layers of routines to do the simplest things.  Cheers and best wishes! :)
5
General / vAmiga for OS X
« Last post by Astrofra on May 01, 2021, 02:33:49 PM »
Hello,

I am opening a topic on vAmiga here, having seen very few mentions of this emulator on the Interwebs:

https://dirkwhoffmann.github.io/vAmiga/

I found this emulator when I acquired a Mac M1 (the new Apple models with OS X on ARM64) and I was searching for an alternative emulator, as I was not really enthusiastic about the GUI of FS-UAE.

vAmiga has just been released in v1.0, it was in beta until then, but quite stable already. It emulates the OCS machines only, but a lot of work was done on the emulation accuracy, which may be approaching that of UAE.

A significant number of visual debugging features are also available, such as memory usage, DMA channels, and so on ( it' s really close to the visual debugger of WinUAE, almost more user-friendly):





The performances are pretty good (especially for a laptop ARM host machine) and the graphical rendering can be tweaked with the help of filters, for a more vintage vibe:



which gives this kind of result ( you either like it or not, but it must have been some hard work to get there) :



So here are my first impressions about this new emulator, that I wanted to share, to encourage all these cool projects around our beloved machine :)
6
News / vAmiga 1.0 Beta 1
« Last post by Astrofra on May 01, 2021, 02:17:38 PM »
vAmiga emulates a Commodore Amiga 500, 1000 or 2000 on your Mac, either on Intel or ARM architecture.
It has proven to be pretty stable by now and was bumped from v0.9 to v1.0!

https://dirkwhoffmann.github.io/vAmiga/

Download the latest version.
7
Application Development / Re: Athanor 2 - an adventure game
« Last post by Astrofra on May 01, 2021, 10:18:06 AM »
Ladies & Gentlemen, Boys and Girls, People, Folks, here is a pre-release video of the (soon to come) Amiga OCS Version of ATHANOR 2 - The Legend of the Birdmen :


9
News / New mod "RetroRulez"
« Last post by Dissident on January 08, 2021, 10:46:33 PM »
Hi, for those of you who like early 80s retro style mods here's my revised version of "RetroRulez".  I've uploaded it here: https: https://www.youtube.com/watch?v=VKv_ieMSaH4&list=PLrYSM1C3l5LzaZA3kCep81rDwLh00ruYh
10
Application Development / Re: Athanor 2 - an adventure game
« Last post by Astrofra on December 18, 2020, 08:20:09 AM »
GUI Stuff

For some various reasons, I needed a somehow generic GUI toolbox in Athanor, but being not super fond of the look of the OS GUI, I quickly hacked my own dialog box.



I started this because there's a moment in where the game needs some keybd input from the player.
The "OK/Cancel" buttons are generated by a couple of lines of code, so is the textfield.
Most of the GUI stuff is based on a couple of functions that works more or less independently. No class, no OOP here.

Code: [Select]
void gui_draw_3d_button(rect *_r, BOOL hilite)
{
    rect r, r2;
    short col_black = 0,
            col_med = 14,
            col_light = 20,
            col_white = 19;

    if (!hilite)
    {
        col_med = 12;
        col_light = 17;
        col_white = 29;
    }

    memcpy(&r, _r, sizeof(rect));

    rpage_video_fill_rect(&r, col_black);
    rect_shrink(&r, 1);
    rpage_video_fill_rect(&r, col_med);
    memcpy(&r2, &r, sizeof(rect));
    r2.sy = (r2.sy + r2.ey) / 2;
    rpage_video_fill_rect(&r2, col_med - 2);
    rpage_video_draw_rect(&r, col_light);
    rpage_video_set_pixel(r.sx, r.sy, col_white);
    rpage_video_set_pixel(r.ex, r.ey, col_white);
}

At some point, I found out I could use this buttons for some other purpose, like :

Asking for a disk swap

(he says he wants you to insert disk 1)

Loading/Saving the game's progress


- By the way, will the game be in English, too?
- SIR, YES SIR!



Nothing crazy but it looks cute, don't you think?
Pages: [1] 2 3 ... 10