Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Markus

If i remember u use as base Wong/or Wang basic ..right and you made few 

cool examples which work well in AllegroBasic as i remember.

that is why I asking.

(1 edit)

Hi Aurel,


yes that is correct. I am using My-BASIC from Tony Wang (Github Link).

I also use that for RetroBASIC which will be compatible to AllegroBASIC but uses SDL2. (And will have a few built-in fonts...)



that is cool Markus

I am asking in first place because of simple examples i can translate from 

AllegroBasic to my micro(A)

is there a copy of examples ?

(1 edit)

Sorry, no download of examples. 

Do you mean something like:

' ported from a SmallBASIC example
screen (1024,960,"Spiral")
KEY_ESC          = 27
cx = screenwidth/2
cy = screenheight/2
pi=3.141
setfps (120)

do
cls
key=getkey
size = 1
  radius = .06
  angle = sangle
  cls

  While radius < 400
    x = cos(angle) * radius
    y = sin(angle) * radius
    r2 = (x ^ 2 + y ^ 2) ^ .5
    size = 4 * r2 ^ .25

    For r = size to 1 step - 2
      cc = 160 + 95 * radius/400 - r/size*120
      ink (cc, cc, cc)
      fillcircle (cx + x, cy + y, r)
    Next

    angle =angle - .4
    radius =radius + 1

  Wend

   sangle = sangle + pi/360

sync

until key=KEY_ESC



Yes, RetroBASIC works on macOS, too. 

No ..i mean like tiny games ..simple space shooter or similar

but that one is cool too.

I'm sorry to interrupt the conversation. Maybe it is late. There are still 50 hours before the deadline of the voting period. You and Cybermonkey24 are very welcome to come to play and rate the entries of this competition:  https://itch.io/jam/jam-for-all-basic-dialects-4/entries

Hey, this post may be late but if you make a fun game for this jam in micro(A), this fun game can become a good example of micro(A) . Thus micro(A) will be so cool. If you have time in Dec, you are very welcome to come and join. Sure.

(1 edit)

This post is meant for aurelsoft, right?

Ha...yes, aurelsoft doesn't have any project uploaded to Itch and therefore no messageboard is available on aurelsoft's Itch webpages. Very sorry for using your messageboard to communicate with aurelsoft.  

RetroBASIC looks nice. Sure.

RetroBASIC will become a tool for indie developers for developing different kinds of retro games!