#compact
% Title "Animated Julia Fractal Demo"
% Animated
% ScaleUp
'% PlaceCentral
'% AnchorCentral
'% NoEscape
includepath "$\inc\"
'% filename "t.exe"
'include "RTL64.inc"
include "ConsoleG.inc"
indexbase 0
pixel4 juliapix[512*512]
int gc
function JuliaCalc(double x, y, r, s, int it) as double
=======================================================
double dup
int k
for k=0 to it
gc+=1
dup=x
x=x*x-y*y+r
y=2*dup*y+s
if abs(x*y)>4 then exit for
next
return k*abs(x*y)
end function
int m_p,it_p
double xo_p, yo_P
string colorstr
int col_val=2
sub JuliaInitState()
====================
m_p=200 : it_p=12 : xo_p=-1.5 : yo_p=-1.5 : colorstr="Green" : col_val=2
end sub
function JuliaRender(float mf,rf,gf,bf)
=======================================
'mf 2 .. 0 'factor
'rf 0 .. 1 'red
'gf 0 .. 1 'green
'bf 0 .. 1 'blue
sys i , j
double x , y , dz , rc , ic , xo , yo , orb, amp
gc=0
pixel4 jp at @JuliaPix
xo=xo_p
yo=yo_p
rc=mf
ic=mf-1.0
dz=3/512
amp=5.0
it=it_p
for i=0 to <512
y=yo+i*dz
for j=0 to <512
x=xo+j*dz
orb=JuliaCalc(x,y,rc,ic,it)*amp
jp.r=orb*rf
jp.g=orb*gf
jp.b=orb*bf
jp.a=255
@jp+=4 'next pixel
next j
next i
end function
function main()
===============
'
indexbase 1
static int init
static float jf,jfi
if not init then
JuliaInitState()
CreateSynthTexture JuliaTex,JuliaPix,512*512*4
jf=0
jfi=0.002
init=1
end if
JuliaRender jf,1,1,0
jf+=jfi
if jf<0.0 then
jf=0.0 : jfi=-jfi
elseif jf>2.0 then
jf=2.0 : jfi=-jfi
end if
pushstate
move 15,-15.0
'UserMovement m2,200
flat : color 1,1,1,1
texture JuliaTex
MakeTexture @JuliaPix, 512, 512, texn[JuliaTex] 'dynamic texture
quadnorm 15.0,15.0 'apply image texture to quad
texture 0
popstate
'
end function
EndScript
function JuliaCalc(double x, y, r, s, int it) as double
=======================================================
double xy,mx=4.0
int k=it
'for k=0 to it
mov esi,it
(
dec esi
jl exit
'gc+=1
inc dword gc
'xy=x*y
fld qword x
fmul qword y
fstp qword xy
'x=x*x-y*y+r
fld qword y
fmul st0
fld qword x
fmul st0
fsubp st1
fadd qword r
fstp qword x
'y=2*xy+s
fld qword xy
fadd st0
fadd qword s
fstp qword y
'if abs(xy)>mx then exit for
fld qword mx
fld qword xy
fabs
fcomip
fstp st0
ja exit
'next
repeat
)
'return k*abs(xy)
fld qword xy
fabs
sub k,esi
fimul dword k
return
end function
Here is a slightly more efficient, FPUified version of the JuliaCalc function
I wonder why 3d fractals are so spooky:
... byte overflow coloration ...
... I feel like Sokrates (I know that I know nothing). In my earlier life I counted many things but neither pixels nor complex numbers. And now I am sitting here and try to remember about trigonometric functions, differentiation, derivation rules, find out the real and imaginary parts of life. But I learned that I only use 10 percent of my brain so maybe there is still some hope.
'Using the Japi library
'www.japi.de
$ filename "julia2.exe"
'include "$/inc/RTL32.inc"
'include "$/inc/console.inc"
include "$/inc/dynamic.inc"
extern lib "$/projectsC/Japi/japi.dll" cdecl
include once "$/projectsC/Japi/japi.h"
end extern
j_setdebug(0)
if( j_start() = J_FALSE ) then
print "can't connect to JAPI server"
end
endif
indexbase 0
int c_width = 800
int c_height= 400
int mp = 40
int itp = 2
double xop = -1.5
double yop = -1.5
double amp_p = 8.0
double crf = 0.3 'red factor
double cgf = 0.4 'green
double cbf = 0.4 'blue
'sc ?
DynDim int r(c_width*c_height) : DynDim int g(c_width*c_height) : DynDim int b(c_width*c_height)
int gc
function JuliaCalc(double x, y, r, s, int it) as double
double mx=4.0
for k=0 to it
gc+=1
xy=x*y
x=x*x-y*y+r
y=2*xy+s
if abs(xy)>mx then exit for
next
return k*abs(xy)
end function
function JuliaRender(int m, canvas,double rf,gf,bf)
==================================================
'mf 'loop factor
'rf 0 .. 1 'red
'gf 0 .. 1 'green
'bf 0 .. 1 'blue
double mf=m/100
sys i , j
double x , y , dz , rc , ic , xo , yo , orb, amp
rf*=2.55 : gf*=2.55 : bf*=2.55
gc=0
xo=xop
yo=yop
rc=mf
ic=mf-1.0
dz=3/c_width
amp=amp_p
it=itp
for i=0 to <c_height
y=yo+i*dz
for j=0 to <c_width
x=xo+j*dz
orb=JuliaCalc(x,y,rc,ic,it)*amp
idx=i+c_height*j
r(idx)=rf*orb
g(idx)=gf*orb
b(idx)=bf*orb
next j
next i
j_drawimagesource(canvas,0,0,c_width,c_height,r,g,b)
end function
sub main()
sys frame, canvas
frame=j_frame("Graphic Win - Julia Sets")
j_setflowlayout(frame,j_vertical)
j_setinsets(frame,50,20,20,20)
j_setnamedcolorbg(frame,j_light_gray)
toplbl=j_label(frame,"Julia params: m=" mp ", it=" itp ", xo=" xop ", yo=" yop)
j_setnamedcolor(toplbl,j_blue)
'Menu
menubar = j_menubar(frame)
file = j_menu(menubar,"File")
save = j_menuitem(file, "Save as BMP")
jprint = j_menuitem(file,"Print")
quit = j_menuitem(file,"Quit")
calc = j_menu(menubar,"Calc")
start = j_menuitem(calc,"Start")
canvas=j_canvas(frame,c_width,c_height)
j_setnamedcolorbg(canvas,j_dark_gray)
lbl=j_label(frame,"INFO")
j_setsize(lbl,260,32)
j_setnamedcolor(lbl,j_blue)
j_pack(frame)
j_setpos(frame, 200,100)
j_show(frame)
obj=0
while obj != quit and obj != frame
obj=j_getaction()
if obj=start then
j_settext(lbl,"Calculating - Please wait")
for m=mp to 0 step -1
JuliaRender m, canvas, crf, cgf, cbf
next m
j_drawimagesource(canvas,0,0,c_width,c_height,r,g,b)
j_settext(lbl,"MAIN ROUTINE CALLED "+str(gc) +" times" )
end if
if obj=jprint then j_print(canvas)
if obj=save then
image = j_image(c_width,c_height)
j_drawimagesource(image,0,0,c_width,c_height,r,g,b)
if j_saveimage(image,"Julia.bmp",J_BMP) != 1 then
mbox "Error saving Bitmap file"
else
mbox "Saved as Julia.bmp"
end if
end if
wend
DynFree r : DynFree g : DynFree b
j_quit()
end sub
main()
#compact
% Title "Fractal Demo: keyboard: + - r g b f i j m Ctrl P for snapshot"
'% Animated
% ScaleUp
'% PlaceCentral
'% AnchorCentral
'% NoEscape
includepath "$\inc\"
'% filename "t.exe"
'include "RTL64.inc"
include "ConsoleG.inc"
macro limit(v,min,max)
======================
if v>max then
v=max
elseif v<min then
v=min
end if
end macro
indexbase 0
pixel4 juliapix[512*512]
int gc
function JuliaCalc(double x, y, r, s,*oc, int it,jm) as double
==============================================================
double xy,mx=4.0
int k=it
'
if jm then
'SWITCH TO MANDELBROT SET
r=x
s=y
x=0
y=0
end if
'
'for k=0 to it
mov esi,it
(
dec esi
jl exit
'gc+=1
inc dword gc
'xy=x*y
fld qword x
fmul qword y
fstp qword xy
'x=x*x-y*y+r
fld qword x
fmul st0
fld qword y
fmul st0
fsubp st1
fadd qword r
fstp qword x
'y=2*xy+s
fld qword xy
fadd st0
fadd qword s
fstp qword y
'if abs(xy)>mx then exit for
'fld qword mx
'fld qword xy
'fabs
'fcomip
'fstp st0
'ja exit
'if x*x+y*y>mx then exit for
fld qword mx
fld qword x
fmul st0
fld qword y
fmul st0
faddp st1
fcomip
fstp st0
ja exit
'next
repeat
)
oc={x,y}
'return sqr(sqr(abs(y)))
'return sqr(abs(x)+abs(y))
'return sqr(abs(y))
return abs(x)
'return x+y
'return abs(x)+abs(y)
'return abs(xy)
'return hypot(x,y)
'
sub k,esi
'return k*abs(xy)
'fld qword xy
'fabs
'fimul dword k
'return
'return abs(xy)
'fld qword xy
'fabs
'return
'return xy
'fld qword xy
'return
'return xy*xy
'fld qword xy
'fmul st0
'return
'return k
end function
function JuliaRender(double mf,it,jm,mp,sc,xo,yo,rf,gf,bf)
==========================================================
indexbase 0
'mf 2 .. 0 'factor
'rf 0 .. 1 'red
'gf 0 .. 1 'green
'bf 0 .. 1 'blue
sys i , j
double x , y , dz , rc , ic , orb, oc[1]
gc=0
pixel4 jp at @JuliaPix
rc=mf
ic=mf-1.0
dz=sc*3/512
for i=0 to <512
y=yo-1.5*sc+i*dz
for j=0 to <512
x=xo-1.5*sc+j*dz
orb=JuliaCalc(x,y,rc,ic,oc,it,jm)*mp
'
'RECIPROCALS
if oc[0] then oc[0]=1/abs(oc[0])
if oc[1] then oc[1]=1/abs(oc[1])
jp.r=abs(oc[0])*mp*rf
jp.g=abs(oc[0])*abs(oc[1])*mp*gf
jp.b=abs(oc[1])*mp*bf
'jp.r=orb*rf 'red
'jp.g=orb*gf 'green
'jp.b=orb*bf 'blue
jp.a=255 'alpha
@jp+=4 'next pixel
next j
next i
end function
function main()
===============
'
indexbase 1
static int init,it,jm,mp
static double rf,gf,bf,jf,jfi,sc,xo,yo
if not init then
sc=1
xo=0
yo=0
rf=1.0
gf=.5
bf=.2
jf=0
jfi=0.002
it=10
mp=5
init=1
NewTexture JuliaTex
end if
if lastkey or lastchar then
static float kvi=.01, kva=0.05
static int kii=1
int cey=lastchar
kva=.05*sc
if cey>0x60 and cey<0x7b then cey-=32 'to uppercase
'
if key[189] then kvi=-.01 : kii=-1 '-'
if key[187] then kvi= .01 : kii= 1 '+'
if key[VK_RIGHT] then xo+=kva 'ARROW RIGHT'
if key[VK_LEFT] then xo-=kva 'ARROW LEFT'
if key[VK_UP] then yo+=kva 'ARROW UP'
if key[VK_DOWN] then yo-=kva 'ARROW DOWN'
if key[0x5A] then sc*=(1-kvi*5) 'Z' ZOOM
if key[0x46] then jf+=kvi 'F' FACTOR
if cey=0x49 then it+=kii 'I' ITERATIONS
if cey=0x4a then jm=1-jm 'J' JULIA/MANDELBROT MODE
if cey=0x4d then mp+=kii 'M' OUTPUT MULTIPLIER
if key[0x52] then rf+=kvi 'R' RED
if key[0x47] then gf+=kvi 'G' GREEN
if key[0x42] then bf+=kvi 'B' BLUE
'
'limit sc, .01,100 'Julia Zoom
'limit jf, 0,2 'Julia factor
limit it, 1,1000 'JuliaCalc iterations
limit mp, 1,1000 'Julia output multiplier
limit rf, 0,1 'red
limit gf, 0,1 'green
limit bf, 0,1 'blue
'
'
lastkey=0
lastchar=0
end if
'
'DISPLAY FACTORS
def fi " %1:" str(%1,0)
def ff " %1:" str(%1,2)
def ff3 " %1:" str(%1,3)
printl ff jf fi it fi mp ff3 sc ff3 xo ff3 yo ff rf ff gf ff bf
'
JuliaRender jf,it,jm,mp,sc,xo,yo,rf,gf,bf
'jf+=jfi
'if jf<0.0 then
' jf=0.0 : jfi=-jfi
'elseif jf>2.0 then
' jf=2.0 : jfi=-jfi
'end if
pushstate
move 15,-15.0
'UserMovement m2,200
flat : color 1,1,1,1
texture JuliaTex
DynSynthTexture JuliaTex,JuliaPix,512*512*4
quadnorm 15.0,15.0 'apply image texture to quad
texture 0
popstate
'
end function
EndScript
Nevertheless it was very interesting to see that OxygenBasic had no problem with running Japi. No wrapping at all like in many other programming languages.
this really scared me and I immediately disconnected my pc from the net.
But I now think it would be more effective to learn Java and use and extend the classes directly.
Don't be paranoid!
I look forward to analysing your glsl chocolate delights :)
NewTexture creates a new texture name and assigns a texture index number to it
macro NewTexture(n)
===================
static int n
texe++
n=texe
end macro
sub DynSynthTexture(int *n, any*v, int c)
=========================================
int w=sqr(c/4)
MakeTexture @v, w, w, texn[n]
end sub