Search found 9 matches
- Fri Sep 06, 2013 4:59 pm
- Forum: BASIC programs
- Topic: Painter
- Replies: 2
- Views: 2023
Re: Painter
very nice program. it demonstrates how easy it is to create good applications with your Basic!
- Tue Sep 03, 2013 4:38 pm
- Forum: BASIC programs
- Topic: Space Invaders (under construction)
- Replies: 2
- Views: 1999
Re: Space Invaders (under construction)
I have made a version which contains the workaround for the DRAW PIXEL bug: have fun shooting those aliens ;-) graphics option base 1 randomize pi=3.1415926 adjust_loop: points=0 stars=20 shots=10 aliens=100 explosions=5 explosionpoints=20 sx=screen_width() sy=screen_height() cx=sx/2 u=(sx+sy)/40 di...
- Fri Aug 23, 2013 8:58 am
- Forum: BASIC programs
- Topic: Space Invaders (under construction)
- Replies: 2
- Views: 1999
Re: Space Invaders (under construction)
Now a further version which contains aliens that can be shot. About user interface: press on the bottom area on the left or right side to position your ship; touch above the ship to shot. Try to kill all aliens! still some things are missing... graphics option base 1 randomize pi=3.1415926 adjust_lo...
- Thu Aug 22, 2013 5:40 pm
- Forum: Other topics
- Topic: Importing graphics on IPhone
- Replies: 4
- Views: 2697
Re: Importing graphics on IPhone
ah yes-that's it! Thank You very much - this works perfectly!
its me who was the problem!
its me who was the problem!
- Thu Aug 22, 2013 3:33 pm
- Forum: BASIC programs
- Topic: Space Invaders (under construction)
- Replies: 2
- Views: 1999
Space Invaders (under construction)
Today I started a try to develop a small space invaders clone. Move the ship by touching left or right bottom corner. Fire up to 5 shots by touching above the ship. Aliens are still missing. ;-) graphics option base 1 stars=40 sx=screen_width() sy=screen_height() cx=sx/2 u=sx/20 dim stars_x(stars) d...
- Thu Aug 22, 2013 1:35 pm
- Forum: Other topics
- Topic: Importing graphics on IPhone
- Replies: 4
- Views: 2697
Re: Importing graphics on IPhone
Thanks for the help. Indeed, I need some more help. Okay, I registered for Dropbox and I uploaded most of my photos to Dropbox cloud. Option dropbox worked fine as well (btw an interesting method to toggle common settings). Now, starting Smart Basic I'm in the file list and have a 'drop box' icon at...
- Wed Aug 21, 2013 4:09 pm
- Forum: BASIC programs
- Topic: Analogue watch
- Replies: 2
- Views: 2180
Re: Analogue watch
okay, I also did not take care about the fact that usually, the minute line should be increased by the seconds and the hour line by the minutes. The following addition could correct this: seconds=current_second() minutes=current_minute() hours=current_hour() minutes=minutes+seconds/60 hours=hours+mi...
- Wed Aug 21, 2013 3:28 pm
- Forum: BASIC programs
- Topic: Analogue watch
- Replies: 2
- Views: 2180
Analogue watch
Dear readers, in respect of this wonderful Basic system I've programmed an analogue watch only for my (and your) pleasure. Of course it's device independant. :-) ' watch by Claus Jahn t=15 pi=3.1415926 graphics shadow on loop: graphics lock graphics clear 1,1,1 width=screen_width() height=screen_hei...
- Wed Aug 21, 2013 8:26 am
- Forum: Other topics
- Topic: Importing graphics on IPhone
- Replies: 4
- Views: 2697
Importing graphics on IPhone
Dear Mr. Kibernatic,
thanks for such a good developed Basic system!
The language modifications from standard Basic are easy to understand and especially the graphics are brillant!
But let me ask how can I import a graphic file (e.g. a png file) into the file list?
keep on going your fantastic work!
thanks for such a good developed Basic system!
The language modifications from standard Basic are easy to understand and especially the graphics are brillant!
But let me ask how can I import a graphic file (e.g. a png file) into the file list?
keep on going your fantastic work!