Jump to content
IGNORED

BASIC Ten-Liners - Contest 2014


Bunsen

Recommended Posts

33rd game registered :)

 

Jumpsheep by fdingler

Paddleship by Bill Kendrick

Sijmen by Gunnar Kanold

Squirrel by fdingler

Shmup by Bill Kendrick

Colfusion by Irgendwer

Planets by Bill Kendrick

Slice by Bill Kendrick

GozMind by gozar Retracted

Carrera by Daniel Serpell

Minijong by Bill Kendrick

Jump! by Xuel

Count1ng Zoo by 1NG

Hanged Man by Jakub Husak

Gwobby Micro by Jason Kendall

Minidash by Bill Kendrick

Puzzler 2014 by Sleepy

Drunk Pistol by mgr inz. Rafal

Crack My Luggage by gozar

Roguelike by Jakub Debski

Nimx by Cliff Hatch

Catch by Chris Read

Grue Killer by Reaperman

Joyas by Daniel Serpell

Dodge Racer by Reaperman

Abyss by Jakub Debski

Fuky Bird by 1NG

Puzzler Duell by Sleepy

Flappy by pirx

BluesJam by Savetz

Abduct10 by Savetz

Maze by Bill Kendrick

Bagh Chal by Bill Kendrick

Isol by Bill Kendrick

Link to comment
Share on other sites

Ough! No new games for like four days? This is abomination! So there comes my homage to the famous 2048 game (http://gabrielecirulli.github.io/2048/).

 

It is only 2047 as some rules are a bit different due to space constraints, of course. Speed is not really satisfying, too, but it is surprisingly playable. I have spent more time playing it than really coding.

 

Wait a bit on the beginning, then use cursor keys to move tiles around.

 

Have fun!

 

pirx

2047.zip

Edited by pirx
Link to comment
Share on other sites

Hi! Great to have your version!

The difference is in

a) game starts with one tile only

b) (more importantly) in one move all possible merges are done at once:

in 2048: 4 2 2 --> 4 4

in 2047: 4 2 2 --> 8

It makes it easier to get regular patterns and changes the strategy a bit :)

 

Best,

 

pirx

  • Like 1
Link to comment
Share on other sites

34th game registered :)

 

Jumpsheep by fdingler

Paddleship by Bill Kendrick

Sijmen by Gunnar Kanold

Squirrel by fdingler

Shmup by Bill Kendrick

Colfusion by Irgendwer

Planets by Bill Kendrick

Slice by Bill Kendrick

GozMind by gozar Retracted

Carrera by Daniel Serpell

Minijong by Bill Kendrick

Jump! by Xuel

Count1ng Zoo by 1NG

Hanged Man by Jakub Husak

Gwobby Micro by Jason Kendall

Minidash by Bill Kendrick

Puzzler 2014 by Sleepy

Drunk Pistol by mgr inz. Rafal

Crack My Luggage by gozar

Roguelike by Jakub Debski

Nimx by Cliff Hatch

Catch by Chris Read

Grue Killer by Reaperman

Joyas by Daniel Serpell

Dodge Racer by Reaperman

Abyss by Jakub Debski

Fuky Bird by 1NG

Puzzler Duell by Sleepy

Flappy by pirx

BluesJam by Savetz

Abduct10 by Savetz

Maze by Bill Kendrick

Bagh Chal by Bill Kendrick

Isol by Bill Kendrick

2047 by pirx

Link to comment
Share on other sites

Yo Basickers!

 

My humble entry, the game Flappy, based on infamous Flappy bird of course.

 

Thanks fly to Peter Dell and Jakub Husak for important help in squeezing the game into 10 lines!

 

Have fun!

 

At first the game is generating stuff, so please hold for like 15 seconds.

Fly with space bar. Any result over 5 points is a feat!

 

 

if you add sound and make it easier i would gladly convert it to the 5200

amazing graphics ! :-o

Link to comment
Share on other sites

if you add sound and make it easier i would gladly convert it to the 5200

amazing graphics ! :-o

Hi Aking!

I would happily! The problem is twofold:

1. it takes a lot of memory - data is from $7800 to $b800 (16KiB). The compiled executable is 13KiB, so we are close to the 32KiB total.

2. it uses XL OS to some extent. Possibly it would be much easier to rewrite it than to change the TBXL version. And when rewrite - it would not hurt to have a 100%+ port, as is available on C64.

 

Best,

pirx

Link to comment
Share on other sites

Hi guys,

 

I'm a bit late there but I found this contest while searching, for the fun of it, obfuscated code pages (don't ask me how I ended here, I don't recall, but I really like such contests).

The problem is, I don't have an original Atari computer to enjoy and since some (if not most) of you seem to write under emulation, I wanted to know what emulator would best run on my Windows 8.1 PC and if I had to load some particular programs to load entries to see how programs are done.

 

Thanks in advance,

 

David Winter

Link to comment
Share on other sites

Hi David,

 

Hi guys,

 

I'm a bit late there but I found this contest while searching, for the fun of it, obfuscated code pages (don't ask me how I ended here, I don't recall, but I really like such contests).

The problem is, I don't have an original Atari computer to enjoy and since some (if not most) of you seem to write under emulation, I wanted to know what emulator would best run on my Windows 8.1 PC and if I had to load some particular programs to load entries to see how programs are done.

 

Use Altirra, it's the best emulator on windows OS: http://www.virtualdub.org/altirra.html

 

The included LLE (and HLE) open-source kernels (replacement of the ROM images) are enough to run TurboBasic and the games posted here.

 

The attached file hd-bwdos-tb15.zip is a disk image with BwDOS (you need a DOS to load/save programs) and TurboBasic 1.5 (TB15), load to the emulator and you are ready.

 

 

  • Like 3
Link to comment
Share on other sites

David, it should be a game. Gury made a small interpreter game called "Slovenian Quiz". OK, it's longer than 10 lines, but perhaps you could manage a similar game in 10 lines?

 

LIST:

The Atari has a BREAK-Key. On pc keyboard it is mounted to the Pause-Key (german layout).

If you push the break key, the program stops and you can list it. But warm reset works as good. Sometimes even better, because for example Sound channel won't be closed.

Link to comment
Share on other sites

Hi Aking!

I would happily! The problem is twofold:

1. it takes a lot of memory - data is from $7800 to $b800 (16KiB). The compiled executable is 13KiB, so we are close to the 32KiB total.

2. it uses XL OS to some extent. Possibly it would be much easier to rewrite it than to change the TBXL version. And when rewrite - it would not hurt to have a 100%+ port, as is available on C64.

 

Best,

pirx

 

 

just add sound and make it a bit more playable if you can , please

i will worry about the conversion

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...