SyntaxBomb - Indie Coders

Languages & Coding => Others => Topic started by: Pakz on October 27, 2018, 05:00:15

Title: Amos 2 now in development
Post by: Pakz on October 27, 2018, 05:00:15
Just found this on facebook. Amos 2 and stos 2 should be useable next year. The development of Amos 2 has started.

https://www.patreon.com/francoislionet?fbclid=IwAR2TqYw5xhm-nDrSlp0cjngJVEK4Ery37T1AkmWoouEjXGYQggZrFu3GWK8
Title: Re: Amos 2 now in development
Post by: peteswansen on October 27, 2018, 06:54:00
Good News! On his Patreon site he says he will "of course" develop AMOS 3D along with the new AMOS 2.. 

Title: Re: Amos 2 now in development
Post by: Qube on October 27, 2018, 07:11:02
I was excited until I read it was aimed at Javascript / HTML5. Why oh why relaunch something as iconic as AMOS but make it web only?
Title: Re: Amos 2 now in development
Post by: Steve Elliott on October 27, 2018, 08:06:34
Quote
I was excited until I read it was aimed at Javascript / HTML5. Why oh why relaunch something as iconic as AMOS but make it web only?

Yes I quite liked how easy it was to get things done in STOS back in the day, but AGK 2 is the modern day version that isn't limited to web only.
Title: Re: Amos 2 now in development
Post by: Xerra on October 27, 2018, 12:09:03
Loved the original Amos - especially when Amos Pro came out. One of my first properly completed games was written with it. I always thought it was called Amos as a play on Amiga OS , like Stos was Atari ST OS. Can see why they wouldn't change the name as it wouldn't be a spiritual successor then.

Agree that having it just for web is just rubbish, too. AGK is the proper new Amos really anyway.
Title: Re: Amos 2 now in development
Post by: Pakz on October 27, 2018, 13:43:49
Javascript can be converted into regular desktop apps. Maybe this wil be an option in amos 2. I think people can influence the direction it is going.
Title: Re: Amos 2 now in development
Post by: Qube on October 27, 2018, 16:35:46
I won AMOS Pro in a coding comp that a magazine held. It came on multiple floppies and with a whopping huge manual. While I really loved AMOS pro and made a few games with it and many apps I did find it slow in it's graphical speed as it couldn't handle many sprites before it lost full frame rate.

Quotebut AGK 2 is the modern day version that isn't limited to web only.
I think that's a fair comparison :)
Title: Re: Amos 2 now in development
Post by: Emil_halim on October 27, 2018, 17:07:16

Good news indeed.

Hope that , Blitz2 will be the same at near future.

It's so nice to code with old language in new cmputers. :)
Title: Re: Amos 2 now in development
Post by: Pakz on January 17, 2019, 19:18:58
First use-able version of Amos is now released. (windows/mac/linux)

https://www.patreon.com/posts/first-use-able-23952959?utm_medium=social&utm_source=facebook&utm_campaign=postshare&fbclid=IwAR3XQm9c-8iDXE7HfkhTS60IcZId8b8AfugMMhXaJDL5Oos6pK9mS3Xx4oY
Title: Re: Amos 2 now in development
Post by: therevills on January 18, 2019, 10:25:35
Very old skool coding style!

' --------------------------
' AMOS2 Compiler Hello world
' AMOS is back! :)
' --------------------------
Locate 0, 25
Centre "Click and press Q to stop!"

For COUNT = 1 To 100000
    Pen 2 + Rnd( 14 )
    Locate Rnd( 40 ), Rnd( 23 )
    If Rnd( 10 ) < 5
        Print "*** AMOS 2! ***";
    Else
        Print "Hello world!";
    End If
Next
Title: Re: Amos 2 now in development
Post by: Steve Elliott on January 18, 2019, 10:55:19
Quote
Very old skool coding style!

I'd rather that style than the long winded Monkey 2 code I've seen.
Title: Re: Amos 2 now in development
Post by: therevills on January 19, 2019, 04:52:08
Quote from: Steve Elliott on January 18, 2019, 10:55:19
I'd rather that style than the long winded Monkey 2 code I've seen.

Each to their own... I find MX2 code very elegant :)
Title: Re: Amos 2 now in development
Post by: Pakz on May 18, 2019, 13:00:42
Amos 2 is set to be done in Q4 2019. There now is a site and forum.

http://amos2.tech/
Title: Re: Amos 2 now in development
Post by: ThickO on May 18, 2019, 16:14:09
Here is a quick description of Amos from the author.

QuoteA modern version
AMOS 2 is designed to be:

Universal, it should work on every platform, including phones and tablets
Fast, it should use the incredible power of today's machines
Simple, it should be as simple to use as the original versions
Compatible, it should understand and play ALL of the original programs written in the 80s
AMOS 2 is a compiler. It takes as entry any AMOS program ( * ) and converts it into HTML 5 / Javascript code. The code produced works in any browser, can be uploaded to any web-server, and in the future versions of the tool, will be exportable as native executable for Windows, MacOS, Linux, Android and iOS.

AMOS 2 is much faster than the original STOS or AMOS. For example, one of the demos you will find in the ditribution displays up to 7000 bobs at the same time while keeping a display rate of 50 FPS... compare this to the Amiga, were this demo would have slowed down after 40 or 50 bobs.

AMOS 2 is as simple as the original. It supports the same instruction set as the original, nothing has changed. A screen is created automatically for you, and you can immediately print text to it. The 'Hello-word-in-one-line' is possible again.

AMOS 2 is as compatible as possible. The display of the Amiga is emulated as best as possible, including color animation and copper list effects like rainbows ( ** ). The file system of the Amiga is also emulated. AMOS 2 can be considered as a kind of Amiga emulator (like WinUAE), yet rather a Amiga-under-AMOS emulator, as I do not emulate the Workbench and the whole Amiga system.

As soon as the instruction set of AMOS is complete, I will program the instruction set of STOS. It will be a quick job...

Beside the compiler, I will program a plugin for Visual Studio Code that will provide a comfortable, quick and simple programming environment, and will include a debugger.
Title: Re: Amos 2 now in development
Post by: Qube on May 18, 2019, 17:04:14
QuoteAMOS 2 is much faster than the original STOS or AMOS. For example, one of the demos you will find in the ditribution displays up to 7000 bobs at the same time while keeping a display rate of 50 FPS... compare this to the Amiga, were this demo would have slowed down after 40 or 50 bobs.
AMOS slowing down after 40 or 50 bobs? oh please :)). AMOS didn't run at full frame rate after about 4 or 5 bobs on screen of a small size ( 16 x 16 ). AMOS was terrible for any type of silky smooth arcade game. The compiled version of AMOS could handle roughly double but no way could it push 50 bobs at 50hz.
Title: Re: Amos 2 now in development
Post by: therevills on May 19, 2019, 01:41:31
GAMOS sounds interesting...

Title: Re: Amos 2 now in development
Post by: Qube on May 19, 2019, 05:36:49
Quote from: therevills on May 19, 2019, 01:41:31
GAMOS sounds interesting...
Nah, that name just doesn't work :))