Jump to content
IGNORED

iOS App Lowres Coder


ToddlD

Recommended Posts

Hi,

 

in May I discovered a great iPad / iPhone app called "Lowres Coder".

 

It let's you develop your own BASIC applications directly on your iPad / iPhone with 16 sprites, 64 x 64 resolution, 16 colors, 3 sound channels, gamepad input.

 

I already developed a Tetris and a River Raid clone. :-)

 

URL: http://lowres.inutilis.com/

Edited by ToddlD
  • Like 2
Link to comment
Share on other sites

A better, more 8-bit, resolution would be nice.

For example, 320x200 pixels, 16x16 sprites.

 

That's more 16-bit than 8-bit, and would completely miss the point of a simple phone-based game creator. At that resolution you need real artists and real paint programs to create graphics.

Link to comment
Share on other sites

Atari 800 (1979) and Commodore 64 (1982) are 8-bit computers.

Atari 800 has 256 colors, 5 8x256 pixels sprites, 320x240 pixels max resolution.

C64 has 16 colors, 8 24x21 pixels sprites, 320x200 pixels max resolution.

16-bit machines (Amiga, Atari ST) have higher specs.

I agree with you on the fact that with lower specs it is easier to draw, especially on a touchscreen.

Link to comment
Share on other sites

I am lobbying right now at the developer to get a 128x128 mode and scalable sprites.
I finished with the app a scramble conversion. Anyone tried it out already?

 

Here are iPad screenshots of my Mini Scramble Beta version:

 

Edited by ToddlD
Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

It's a start

REM STAY FROSTY FOR LOWRES CODER

GOSUB INIT

MAINLOOP:
  GOSUB JOYSTICK
  WAIT 0.04
  GOTO MAINLOOP

INIT:
  DIM ARR(15)
  FOR S=0 TO 1
    FOR I=0 TO 15
      READ ARR(I)
      DEF SPRITE S, ARR
    NEXT I
  NEXT S

  SPRITE PALETTE 0, 1,4,3
  SPRITE PALETTE 1, 1,4,0

  FX = 28
  FY = 24
  GAMEPAD 1
  RETURN

JOYSTICK:
  FX = FX + LEFT(0) - RIGHT(0)
  FY = FY + UP(0) - DOWN(0)

  SPRITE 0,FX,FY,0
  SPRITE 1,FX,FY+8,1
  RETURN

  REM HEAD
  DATA 3,192,3,192,2,128,15,240,1,80,4,64,5,16,1,64
  REM BODY
  DATA 170,128,1,64,5,80,21,68,21,84,21,68,5,80,1,64
post-3056-0-13124800-1443575242_thumb.png
  • Like 2
Link to comment
Share on other sites

Thanks!

 

Saw the share community feature. Already created an account, SpiceWare of course, plan to start posting when I'm a little further along.

 

Also figured out how to download source from others - really liked your thrust effects in Rockoids, and Canalraid is slick as well. Haven't checked any others out yet.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...