Oxygen Basic
Programming => Example Code => Topic started by: Peter on December 21, 2015, 09:15:24 AM
-
Hello, :o
include "asm.inc"
window 800,600,1
setframes (20)
loadimage "bmp/snowball.bmp"
loadimage "bmp/xmas.bmp"
type rain
single x,y
int fs, angle
end type
rain drop[1000]
h = scrH
w = ScrW
int drops
while key(27)=0
drawimage 2,0,0
if drops =0 then
for i=1 to 1000
drop[i].x = rand(0,w)
drop[i].y = 0
drop[i].fs = rand(14,16)
drop[i].angle = rand(100,110)
next
drops=1
endif
for i=1 to 1000
drop[i].x = drop[i].x + cos(drop[i].angle)*drop[i].fs
drop[i].y = drop[i].y + sin(drop[i].angle)*drop[i].fs
drawimage 1, drop[i].x+cos(drop[i].angle)*drop[i].fs, drop[i].y+drop[i].y+sin(drop[i].angle)*drop[i].fs
if drop[i].y > rand(400,600)
drop[i].x = rand(0,w)
drop[i].y = -10
endif
if drop[i].x < 0 then drop[i].x = w
if drop[i].x > w then drop[i].x = 0
next
sync()
wend
winEnd
.
-
Thanks Peter,
That one's been added to my FBSL collection too. :)
.
-
I don't have such a powerful tools just my old crappy AB :'( :'( :'( :'(
but here is the moment:
test gif image
DEFNUM img xpos ypos wpos hpos
DEFSTR imgname
'set window with Vscrollbar
WIN 0 0 640 480 # "Gif Logo"
MainColor 220 220 230
'set image name as string
LET imgname = "xmas2.gif"
xpos=0
ypos=0
LoadImage@STARTPATH img <BITMAP> imgname
ShowImage img <BITMAP> xpos ypos
' wait for subs
WAIT
/ it looks that i must create simple image viewer in Oxygen /
:)
.
-
it looks that i must create simple image viewer in Oxygen
Hi Aurel,
something is wrong!
it shows no tga files or png files's. :o