elout
wegoingfullscreen
goingfullscreen
we going fullscreen
written by Elout de Kok
07 Jan 202564 EDITIONS
0.5 TEZ
.___________________.
vanilla javascript startup kits opensource .. minimal and no libraries needed
for drawing n playing with those lovely oldskool bitmap graphics
- could work on all devices.. no fancy video-card needed
still adding more tutorials soon 2025 .__. peace
building up basic templates in javascript . 1 by 1 step by step i try to add more functionalities and gadgets
javascript is great.. to create coded generated images, all kind of creative creation tools, and even [prototype] games ..
so get ya creative pixel-bombingengine on the road
learn how to code fine 'n tune
it's like minecraft with pixels
still wip.. some video tutorials later.
but you already can take it appart. and re-build your own engines
lick my shaders =___= really create your own unique graphics and fat brushes !
content file-parts:
part 001 o__. we going fullscreen 001 - get screen ready.. and draw noise fullscreen
video tutorial 001 .__o
...................................................
going fullscreen 001
...................................................
total minimal code basics needed for going fullscreen in javascript - access the video-memory
vanilla javascript `we going full screen 001`
start up - read the browser window size get canvas ready
and draw random noise in the canvas-screen next
[can totally be optimised, run 100+ times faster.. but that's another thing for later]
for coders. any language platform..
..once if we manage to draw 1 pixel on the screen... we can go wild next
<html>
<head>
<script>
//going fullscreen 001 - minimal template v.001 last change jan010 e2025 elout
window.addEventListener('load',init_mywindow, false );
function init_mywindow()
{
myanim();
}
function myanim() // runs at 60fps
{
requestAnimationFrame(myanim);
var im_w=window.innerWidth;
var im_h=window.innerHeight;
var c=document.getElementById('my_canvas');
c.width = im_w; // set canvas width and height
c.height = im_h;
// css stuff directly in javascript
c.style.width= im_w +'px'; // scale my canvas to screen
c.style.height=im_h +'px';
c.style.position = 'fixed';
c.style.imageRendering = 'pixelated';
c.style.left=0+'px';
c.style.top= 0+'px';
var ctx= c.getContext("2d");
var img1 = ctx.createImageData(im_w,im_h);
var p=0;
for (var y = 0; y < im_h; y++)
{
for (var x = 0; x < im_w; x++)
{
var col= Math.random()*255;
img1.data[p++] = col <<0; //r
img1.data[p++] = col <<0; //g
img1.data[p++] = col <<0; //b
img1.data[p++] = 255 <<0; //alpha
// <<0 is the same as math.floor makes it an int
}
}
ctx.putImageData(img1, 0, 0);
}
</script>
</head>
<body>
<canvas id="my_canvas"></canvas>
</body>
</html>
video tutorial 002 .__o
getting a template ready
adding all kind of extra's and essentials now.. source growing bigger
for a nice working template for drawing my stuff
first use of bresenham lines as well
added mouse, keyboard, fps counter, proper window handeling, image scaling and drawing
see it running at my homebase https://elout.home.xs4all.nl/2025/feb/fx007c/
see it running latest version
https://elout.home.xs4all.nl/2025/feb/fx007cc/
soon vid-tuto here o__. =_______=
-------------------------
code vid tuto 003 fx007m
-------------------------
see it running on https://elout.home.xs4all.nl/2025/feb/fx007m/
https://elout.home.xs4all.nl/2025/feb/fx007m/
code vid tuto 002 fx007cc
-------------------------
code vid tuto 002 fx007cc
-------------------------
<html><head>
<script>
// bitrunners we going full-screen fx007cc late night edition elout e2025
// wip softcore 2d3d engine 'n javascript template
// open and free source
// underground resistance - learn how to code
// some globals i use everywhere and favourites
var image_w= 1080*3 <<0; // image width
var image_h= 1080*3 <<0; // height
var doc_name="fx007cc"; // document title and save name
var show_fps= true;// false;// show fps on top html ui layer
// next tech stuff next my rgb buffers - Uint8ClampedArray between 0-255 faster n lower on mem
var pix_r = new Uint8ClampedArray(); //red
var pix_g = new Uint8ClampedArray(); //green
var pix_b = new Uint8ClampedArray(); //blue
var pix_z = new Array(); //my z buffer
// canvas scale down image based on browserscreen
var pix_screen_r = new Uint8ClampedArray(); //red
var pix_screen_g = new Uint8ClampedArray(); //green
var pix_screen_b = new Uint8ClampedArray(); //blue
// global mouse position
var mx=0, my=0;
// needed for highres to lowres/screenres smoothing
var x_step = new Array();
var y_step = new Array();
var render_complete=false;
var yline_pos=0;
var yline_blocksize= 64;// vertical scanline stepper
var frameskip= 10;//now-update draw every 10 fps
//screen handeling
var pix_screen_w=0, pix_screen_h=0;
var pix_screen_left=0, pix_screen_top=0;
var browser_w=0, browser_h=0;
var frame_runner=0; // global frame counter
var farfaraway=1000000; // z init distance
var save_image=false; // s save image key
var rendermode=1; // mouselook or screen scaled image?
// dirty fps counter - auto-triggers timer_fps() every 1sec
var my_timer=setInterval(function(){timer_fps()},1000);
var counter_fps=0;
var timeCurrent, timeLast = Date.now();
var fps_text=' ';
var anim_state=0;
var anim_counter=0;
// now some globals for my drawing and animation
// this starts it all and kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
// do here your first init stuff
document.title = doc_name; // set document title
// you can also change image_w and image_h here.
// for different ratios
var num_pixels= image_w*image_h; // init buffers
pix_r = new Uint8ClampedArray(num_pixels); //red
pix_g = new Uint8ClampedArray(num_pixels); //green
pix_b = new Uint8ClampedArray(num_pixels); //blue
pix_z = new Array(num_pixels); //my z buffer
// set-check for window resizing - auto matic
window.addEventListener( 'resize', check_my_windowResize, false );
check_my_windowResize();
// mouse-touch next
var c=document.getElementById('my_canvas');
// mouse clicked? also work on touch devices
c.addEventListener("mouseup", function (evt)
{
mx= Math.round((evt.clientX));
my= Math.round((evt.clientY));
rendermode++;
if(rendermode>2){rendermode=1;}
}, false);
// mouse moved?
c.addEventListener("mousemove", function (evt)
{
mx= Math.round((evt.clientX));
my= Math.round((evt.clientY));
}, false);
// add support for touch-screens as well
c.addEventListener("touchmove", function (evt)
{
var touch = evt.touches[0] || evt.changedTouches[0];
var tx = touch.pageX;
var ty = touch.pageY;
if(tx>=0 && ty>=0)
{
//if(animation_part==100){anim_loop=0;}
mx= Math.round(tx);
my= Math.round(ty);
}
evt.preventDefault();
},{ passive: false }, false); // found passive:false fixes a scroll bug now
//adding keyboard check - s save image key
document.addEventListener('keyup', function(event)
{
//alert('yo: '+event.code);
if (event.code == 'KeyS')
{
console.log( 'key s' ); // text-info to console
save_image=true;
rendermode=0;
}
});
myanim();// yo.. kicks off animation
}
//windows stuff n check .___0 auto runs -> when window is rescaled
function check_my_windowResize()
{
document.body.style.backgroundColor = "rgb(0, 0, 0)";
browser_w= Math.round(window.innerWidth); // get browser width and height in ints!
browser_h= Math.round(window.innerHeight);
// canvas smaller then browser screen? position it nice the middle
if (image_w <= browser_w && image_h <= browser_h)
{
pix_screen_w=image_w;
pix_screen_h=image_h;
pix_screen_left=((browser_w - pix_screen_w)/2) <<0;
pix_screen_top= ((browser_h - pix_screen_h)/2) <<0; // center it on height and width
}
else // image is bigger then browser screen! calculate screen image size and positioning
{
pix_screen_w= browser_w; // do for image wider then screen
var newratio= (browser_w/image_w);
pix_screen_h = (image_h*newratio)<<0;
pix_screen_left=0;
pix_screen_top=((browser_h - pix_screen_h)/2) <<0; // center it on height
if (pix_screen_h > browser_h)
{
pix_screen_h = browser_h;
newratio=(browser_h/image_h);
pix_screen_top=0;
pix_screen_w=(image_w*newratio)<<0;
pix_screen_left=((browser_w - pix_screen_w)/2) <<0;
}
//console.log(pix_screen_w+' '+pix_screen_h); // text-info to console
//create a new lower res image based on the browser window size
pix_screen_r = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //red
pix_screen_g = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //green
pix_screen_b = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //blue
var stepr_x = (image_w / pix_screen_w); // get pre-calculated block-size for downscaling
var stepr_y = (image_h / pix_screen_h);
x_step = new Array(pix_screen_w*pix_screen_h); // clear it again
y_step = new Array(pix_screen_w*pix_screen_h);
// pre-calculate sample block size for smoothing highres image to lower res screen image
for (var j = 0; j < pix_screen_h; j++)
{
for (var i = 0; i <pix_screen_w; i++)
{
var p1=(j*pix_screen_w)+i;
var ii =(i*stepr_x)<<0;
var ii2=((i+1)*stepr_x)<<0;
var jj=(j*stepr_y)<<0;
var jj2=((j+1)*stepr_y)<<0;
x_step[p1] = ii2-ii;
y_step[p1] = jj2-jj;
}
}
}
//css in vanilla js
var c=document.getElementById('my_canvas'); // select my canvas
c.style.position = 'fixed'; // needed against nasty scrollbars now
c.style.imageRendering = 'pixelated'; // blur or sharp?
c.style.cursor='crosshair';
// do the fps ui on top
var u=document.getElementById('uiblock');
u.style.backgroundColor = "#fff7"; // rgb alpha
u.style.position = 'fixed';
u.style.left= 10+'px';
u.style.top = 10+'px';
u.style.font = "15px bold verdana, serif,arial";
// hide or show fps text block
if(show_fps==false){document.getElementById('uiblock').style.visibility = "hidden";}
else {document.getElementById('uiblock').style.visibility = "visible";}
}
// my own my random number functions at 1 place
// so i can change it easy when using other random generators
function get_ran(num)
{
return( Math.random()*num );
}
function get_ran_int(num)
{
return( (Math.random()*num)<<0 );
}
function get_ran_range(num) // get random between -num and +num
{
var ran=(Math.random()*(num*2) ) -num;
return(ran);
}
// store circle points in an big or small array between -1 and +1
function create_circle(cirlepoints,mcos,msin)
{
for(var i=0; i<cirlepoints; i++)
{
mcos[i]=( Math.cos ( i*360/nsize * Math.PI / 180));
msin[i]=( Math.sin ( i*360/nsize * Math.PI / 180));
}
}
// dirty fps
function timer_fps()
{
timeCurrent = Date.now();
if(timeCurrent > timeLast)
{
timeLast = timeCurrent;
if (show_fps==true)
{
set_msg('uiblock', 'o__. fps: '+counter_fps+' '+fps_text);
}
counter_fps=0;
}
}
// dynamic write html text in javascript
function set_msg(div, msg){document.getElementById(div).innerHTML = msg;}
function go_msg(div, msg) {document.getElementById(div).innerHTML += msg;}
// fill an array
function fill_array(buf,size,value)
{
for (var i=0; i < size; i++){buf[i]=value;}
}
// scale bigger picture to smaller screensize image with smoothing
function scaledown_image_(source_r, source_g, source_b,
image_w, image_h,
pix_screen_r,pix_screen_g, pix_screen_b,
pix_screen_w,pix_screen_h,
x_step, y_step) // step buffer sample block for smoothing
{
var stepr_x = (image_w / pix_screen_w);
var stepr_y = (image_h / pix_screen_h);
// scanline rendering-calculating now // do it in little steps against fps drops
render_complete=false; //render complete? global.. also needed for saving and thumb-screenshot
var lastlines=false;
var newy=yline_pos + yline_blocksize;
if( newy > pix_screen_h-1)
{
newy = pix_screen_h;
lastlines=true;
}
//convert my bigger higher res picture i`m drawing
//scale n' smooth them down ..
//so it looks good on ya browser screen 'n resolution
for (var j = yline_pos; j < newy; j++)
{
var p3=(j*pix_screen_w);
for (var i = 0; i < pix_screen_w; i++)
{
var p0=p3+i;
var ii=(i*stepr_x)<<0;
var jj=(j*stepr_y)<<0;
var p2=(jj*image_w)+ii;
var r1=0,g1=0,b1=0, dc=0;
for (var cj = 0; cj < (y_step[p0]); cj++) // calculate new rgb pixel based on bigger block
{
var p1= cj*image_w;
for (var ci = 0; ci < (x_step[p0]); ci++)
{
var tpos=(p2+ci) + p1;
r1 += source_r[tpos];
g1 += source_g[tpos];
b1 += source_b[tpos];
dc++;
}
}
pix_screen_r[p0]= (r1/dc)<<0; // smooth pixels to 1
pix_screen_g[p0]= (g1/dc)<<0;
pix_screen_b[p0]= (b1/dc)<<0;
}
}
if(lastlines==true)
{
render_complete=true;
// also do an fxhash preview only when render_complete==true
// else you get scanlines in the snapshot
yline_pos=0;
}
else{yline_pos=newy;}
}
// handles window-screen drawing-updating
function draw_to_screen()
{
frame_runner++; // global runner
if(frame_runner<0){frame_runner=0;} // against overflow
// frameskip= 0; // skip xxx frames for faster drawing-calc
if(frame_runner%frameskip == 0 || frameskip==0) // 20 60
{
// now draw my data to screen
var c=document.getElementById('my_canvas');
var ctx= c.getContext("2d");
// smaller? show original no smoothing needed
if(image_w<=browser_w && image_h<=browser_h)
{
c.width = image_w <<0;
c.height = image_h <<0;
c.style.width= image_w +'px'; // scale image
c.style.height= image_h +'px';
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
var img1 = ctx.createImageData(image_w,image_h);
for (var i = 0,p=0,b=0; i < image_w*image_h; i++)
{
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // canvas written/updated to screen
}
if(rendermode==1) // scale image + smooth sampling
{
// show original no smoothing needed
if(image_w<=pix_screen_w && image_h<=pix_screen_h)
{
//do nothing handled above
}
else
{
//set canvas size
c.width = pix_screen_w <<0;
c.height = pix_screen_h <<0;
c.style.width= pix_screen_w +'px'; // scale image
c.style.height= pix_screen_h +'px';
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
// calculate the smoothing in steps-scanlines
scaledown_image_(pix_r, pix_g, pix_b,
image_w, image_h,
pix_screen_r,pix_screen_g, pix_screen_b,
pix_screen_w,pix_screen_h,
x_step, y_step);
var img1 = ctx.createImageData(pix_screen_w,pix_screen_h);
for (var i = 0,p=0,b=0; i < pix_screen_w*pix_screen_h; i++)
{
img1.data[p++] = pix_screen_r[b] <<0;//red
img1.data[p++] = pix_screen_g[b] <<0;//green
img1.data[p++] = pix_screen_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // write new canvas to screen
}
}
else if(rendermode==2 ) //big screen mouse look
{
if(image_w <= browser_w && image_h <= browser_h)
{
// show original done above
}
else
{
c.width = browser_w;
c.height = browser_h;
c.style.left=0+'px';
c.style.top=0+'px';
c.style.width= browser_w +'px';
c.style.height= browser_h +'px';
var tratiox=(image_w-browser_w)/(browser_w-200);
var tratioy=(image_h-browser_h)/(browser_h-200);
var scrollx=(((mx-100)*tratiox) ) <<0;
var scrolly=(((my-100)*tratioy) ) <<0;
if(scrollx<0){scrollx=0;}
if(scrolly<0){scrolly=0;}
if(scrollx> (image_w-browser_w)){scrollx= image_w-browser_w;}
if(scrolly> (image_h-browser_h)){scrolly= image_h-browser_h;}
var img1 = ctx.createImageData(browser_w,browser_h);//browser_w,browser_h);
for (var p=0,j = 0; j < browser_h; j++)
{
for (var i = 0; i < browser_w; i++)
{
var p2= ((j+scrolly)*image_w)+(i+scrollx);
img1.data[p++] = pix_r[p2];
img1.data[p++] = pix_g[p2];
img1.data[p++] = pix_b[p2];
img1.data[p++] = 255;
}
}
ctx.putImageData(img1, 0, 0);
}
}
else if(save_image==true) // saving image ?
{
c.width = image_w <<0;
c.height = image_h <<0;
c.style.width= pix_screen_w +'px'; // scale the big canvas to screen
c.style.height= pix_screen_h +'px';
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
var img1 = ctx.createImageData(image_w,image_h);
// dump my big rgb buffer to screen // got loads of pixels .____o
for (var i = 0,p=0,b=0; i < image_w*image_h; i++)
{
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // canvas written/updated to screen
if (save_image==true) // saving image part
{
console.log( 'saving image' ); // text-info to console
var imagename= doc_name+'.png'; //
var my_download = document.createElement('a'); // auto fake button
my_download.setAttribute('download', imagename);
var mcanvas = document.getElementById('my_canvas');
mcanvas.toBlob(function(blob) {
var url = URL.createObjectURL(blob);
my_download.setAttribute('href', url);
my_download.click();
});
save_image=false;
}
rendermode=1; // go back to rendermode 1
}
}// end frameskip
}
// draw pixel r,g,b,z including fading and bright
function draw_nmix_pixel001(x,y,z,r,g,b,fade,bright,w,h,buf_r,buf_g,buf_b,buf_z)
{
while(x<0){ x+=w;} // q 'n dirty seamless drawing hack now
while(y<0){ y+=h;} // faster if you already pre-check first.
while(x>= w){x-=w;}// if you draw in the screen or on borders
while(y>= h){y-=h;}
var deel= bright+fade; // avarage it out
var pixpos=( (y<<0)*w<<0)+(x<<0); // get pixel position buffer make sure they are int !
if (z < buf_z[pixpos]) // check zbuffer if no pixel drawn closer?!
{
buf_r[pixpos]= ( (buf_r[pixpos]*fade) + (r*bright) ) /deel <<0;
buf_g[pixpos]= ( (buf_g[pixpos]*fade) + (g*bright) ) /deel <<0;
buf_b[pixpos]= ( (buf_b[pixpos]*fade) + (b*bright) ) /deel <<0;
buf_z[pixpos]=z; // update new z position hard
}
}
// based on
// https://en.wikipedia.org/wiki/Bresenham's_line_algorithm
function line_try000(x0,y0, x1,y1, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z)
{
var dx = Math.abs(x1 - x0);
var dy = -(Math.abs(y1 - y0));
var sx = x0 < x1 ? 1 : -1;
var sy = y0 < y1 ? 1 : -1;
var error = dx + dy;
while (true)
{
drawpixel_hard000(x0,y0, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z);
e2 = 2 * error;
if (e2 >= dy)
{
if (x0 == x1)break;
error = error + dy;
x0 = x0 + sx;
}
if (e2 <= dx)
{
if (y0 == y1) break;
error = error + dx;
y0 = y0 + sy;
}
}
}
function drawpixel_hard000(x,y, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z)
{
if(x<0 || x>=w || y<0 || y>=h) // still oob check
{
// do nothing drawing out of screen
}
else
{
pixpos=((y<<0)*w)+(x<<0); // get data position
buf_r[pixpos]= r <<0;
buf_g[pixpos]= g <<0;
buf_b[pixpos]= b <<0;
}
}
function line_try001(x0,y0,z0, x1,y1,z1, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z)
{
var dx = Math.abs(x1 - x0);
var dy = -(Math.abs(y1 - y0));
var sx = x0 < x1 ? 1 : -1;
var sy = y0 < y1 ? 1 : -1;
var error = dx + dy;
while (true)
{
drawpixel_hard001(x0,y0,z0, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z);
e2 = 2 * error;
if (e2 >= dy)
{
if (x0 == x1)break;
error = error + dy;
x0 = x0 + sx;
}
if (e2 <= dx)
{
if (y0 == y1) break;
error = error + dx;
y0 = y0 + sy;
}
}
}
function drawpixel_hard001(x,y,z, r,g,b, w,h, buf_r,buf_g,buf_b,buf_z)
{
if(x<0 || x>=w || y<0 || y>=h) // still oob check
{
// do nothing drawing out of screen
}
else
{
pixpos=((y<<0)*w)+(x<<0); // get data position
if (z <= buf_z[pixpos] ) // check zbuffer if no pixel drawn closer?!
{
buf_r[pixpos]= r <<0;
buf_g[pixpos]= g <<0;
buf_b[pixpos]= b <<0;
buf_z[pixpos]= z; // update new z position hard
}
}
}
// runs at 60fps.. don't stress the browser!
// here the drawing happens !!!!
// here we go again .___________.
function myanim()
{
requestAnimationFrame(myanim); // auto check needed!
if (show_fps==true){counter_fps++;}// dirty fps counter
if(anim_state==0) // init
{
//clear my screen at start
var grey=120; // startup background color
var num_pixels= image_w*image_h; // init buffers
fill_array(pix_r,num_pixels,grey);// red
fill_array(pix_g,num_pixels,grey);// green
fill_array(pix_b,num_pixels,grey);// blue
fill_array(pix_z,num_pixels,farfaraway);// init z-buffer with far far away number
anim_counter=0;
anim_state=1; // go drawing next
}
// draw some lines next
else if(anim_state==1)
{
for (var ii = 0; ii < 22; ii++) // draw more lines -faster
{
var x=10+get_ran_int(image_w);
var y=10+get_ran_int(80);
var z=get_ran_int(100);
var r=get_ran_int(256);
var g=r;
var b=r;
if(get_ran(1)<0.3)
{
r=255*get_ran(1);
g=0;
b=0;
z=10+get_ran_int(90);
}
// if(get_ran(1)<0.3)
// {
// r=0;
// g=255*get_ran(1);
// b=g;
// z=200;
// }
drawpixel_hard001(x,y,z, r,g,b, image_w,image_h, pix_r,pix_g,pix_b,pix_z);
var x1=10+get_ran_int(image_w- 20);
var y1=100+get_ran_int(image_h-120);
var x2=10+get_ran_int(image_w- 20);
var y2=100+get_ran_int(image_h-120);
//line_try000(x1,y1, x2,y2, r,g,b, image_w,image_h, pix_r,pix_g,pix_b,pix_z);
line_try001(x1,y1,z, x2,y2,z, r,g,b, image_w,image_h, pix_r,pix_g,pix_b,pix_z);
}
anim_counter++;
if(anim_counter>2100)
{
anim_counter=0;
anim_state=2;
}
fps_text='counter: '+anim_counter;
}
else if(anim_state==2)
{
// fade the image with grey - reset z
var grey=200;
for (var i = 0; i < image_w*image_h; i++)
{
pix_r[i]=(pix_r[i]+grey)/2 <<0;//red
pix_g[i]=(pix_g[i]+grey)/2 <<0;//green
pix_b[i]=(pix_b[i]+grey)/2 <<0;//blue
pix_z[i]=farfaraway;// reset z
}
anim_state=1; // go back to drawing
}
// update draw now my canvas rgb buffers to screen
draw_to_screen();
}
</script>
</head>
<body>
<canvas id="my_canvas"></canvas>
<div id="uiblock">0__. =_______=</div>
</body>
</html>
some older stuff n code dump / experiments next
older stuff n code dump / experiments
part 002b o__. we going fullscreen 002 - simple canvas drawing in bitmap buffer and display on screen
part 003 o__. we going fullscreen 003 - going 3D - rgb bitmap buffers and z-buffer
part 004 o__. we going fullscreen 003c - going 3D - part xxx deux - rgb bitmap buffers and z-buffer minimal blocks and fade with z-value
part 005 o__. we going fullscreen 003i - going 3D - rgbz added basic fps counter, save key button, first screen ratio scaling
part 006 o__. we going fullscreen 003m - going 3D - better fps also added a basic big image downscaler - smoothing
part 002b o__.
...................................................
going fullscreen 002b
...................................................
intro
going fullscreen - basic start up kit 002
use your own bitmap image-buffer to draw in (greyscale now)
and draw your image to the screen next
on the drawing part
it's a simple runner
a pixel that steps around on the screen
in random directions and change color over time
with also a simple fader
and drawing semi-transparent pixels mixed with the background
// we going full-screen 002
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
last update..
jan.007' 025 11pm
fixed stuff
<html><head>
<script>
// we going full-screen 002
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
// some globals and favourites
var anim_w= 512;
var anim_h= 512;
var pix_r = new Uint8ClampedArray(anim_w*anim_h);
var x1=0;
var y1=0;
var sx1=0.001;
var sy1=0.00001;
var col_r=220; // just grey now
// kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
//alert('yo')
// do here your init stuff
for (var i = 0; i < anim_w*anim_h; i++){pix_r[i]=0;}
myanim();// kicks off animation
}
// runs at 60fps.. don't stress the browser!
function myanim()
{
requestAnimationFrame(myanim);
var c=document.getElementById('nim0'); // canvas
//set canvas size !! if not set. it will auto 300x100sumthing
c.width = anim_w;
c.height = anim_h;
// doing css in javascript for the quick moment
// scale my canvas to the window-fullscreen
c.style.width= window.innerWidth +'px'; //
c.style.height=window.innerHeight +'px'; // scale 1up
c.style.position = 'fixed';
c.style.imageRendering = 'pixelated';
c.style.left=0+'px'; c.style.top= 0+'px';
c.style.cursor='crosshair';
// do image
// fade to black
for (var i = 0; i < anim_w*anim_h; i++)
{
pix_r[i]-=2 ;
}
if(Math.random()<0.01)
{
sx1= (Math.random()-0.5)*0.01;
sy1= (Math.random()-0.5)*0.01;
col_r=(Math.random()*255);
}
// write to screen
var ctx= c.getContext("2d");
var img1 = ctx.createImageData(anim_w,anim_h);
for (var y = 0; y < anim_h; y++)
{
var p1=y*anim_w;
for (var x = 0; x < anim_w; x++)
{
x1+=sx1;
y1+=sy1;
if (x1>anim_w){x1-=anim_w;} // seamless trick
if (y1>anim_h){y1-=anim_h;}
if (x1<0){x1+=anim_w;}
if (y1<0){y1+=anim_h;}
var pixpos=( (y1<<0)*anim_w)+(x1<<0); // get position in check
// mix the color with background 50/50 and draw pixel
pix_r[pixpos]= (pix_r[pixpos] + col_r) /2 <<0;
// dump my bitmap buffer to the screen
var p2=p1+x;
var pos=((y*anim_w)+x)*4; // pixel position
img1.data[pos] = pix_r[p2] <<0;//red
img1.data[pos+1] = pix_r[p2] <<0;//green
img1.data[pos+2] = pix_r[p2] <<0;//blue
img1.data[pos+3] = 255; // alpha
// note: <<0 is same as Math.floor() makes it an int [no floating point stuff]
}
}
ctx.putImageData(img1, 0, 0);
}
</script>
</head>
<body>
<canvas id="nim0"></canvas>
</body>
</html>
-----------------
also going to try to add this code
to some .png images and store them onchain / ipfs ++ next
you can store software programs .__.
vanilla javascript.. your own drawing programs and animation
a big block of text umtouched
in the comment section of an .png image
i'm not sure about the the size-limit yet
and i just checked .gif .. that can handle only like 200+ max chars ..
still looking for nice and easy .png comment data viewers .. maybe write one .. one day
i use now the gimp
image -> image-properties -> comments
to set or read the text of my image.png
see it running here on my home-base .. no wallets needed or used
bonus experiment https://elout.home.xs4all.nl/goingfullscreen/
bonus experiment add source in the comment of .png so you can distribute also your source n' code
into images stored on the blockchain
bonus experiment
-----------------
also going to try to add this code
to some .png images and store them onchain / ipfs ++ next
you can store software programs .__.
vanilla javascript.. your own drawing programs and animation
a big block of text umtouched
in the comment section of an .png image
i'm not sure about the the size-limit yet
and i just checked .gif .. that can handle only like 200+ max chars ..
still looking for nice and easy .png comment data viewers .. maybe write one .. one day
i use now the gimp
image -> image-properties -> comments
to set or read the text of my image.png
part 003 o__.
...................................................
going fullscreen 003
...................................................
intro
going fullscreen - basic start up kit 003
simple stepper in 3d now
rgb buffers z-buffer simple 3d calculation
draws seamless designs - genuary2025 day09 `The textile design patterns of public transport seating.`
part 003 __.
...................................................
going fullscreen 003
...................................................
intro
going fullscreen - basic start up kit 003
simple stepper in 3d now
rgb buffers z-buffer simple 3d calculation
draws seamless designs - genuary2025 day09 `The textile design patterns of public transport seating.`
part 003 .__o
...................................................
going fullscreen 003
...................................................
intro
going fullscreen - basic start up kit 003
simple stepper in 3d now
rgb buffers z-buffer simple 3d calculation
draws seamless designs - genuary2025 day09 `The textile design patterns of public transport seating.`
<html><head>
<script>
// we going full-screen v.003 still wip
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
// some globals i use everywhere and favourites
var anim_w= 768;
var anim_h= 768;
// Uint8ClampedArray between 0-255
var pix_r = new Uint8ClampedArray(anim_w*anim_h); //red
var pix_g = new Uint8ClampedArray(anim_w*anim_h); //green
var pix_b = new Uint8ClampedArray(anim_w*anim_h); //blue
var pix_z = new Array(anim_w*anim_h); //z buffer
var farfaraway=1000000;
var x1=0;
var y1=0;
var z1=0;
var sx1=0.001; // step
var sy1=0.00001;
var sz1=0.001;
var sx2=0.001;
var sy2=0.001;
var sz2=0.001;
var toostepper=0;// control cycle between sx1 and sx2 stepper
var toomstepper=0;
var toomuch=120;
var col_r=0; // red
var col_g=0; // green
var col_b=0; // blue
var shading=1;
var shadingstep=0.1;
var dswitch=0; // 2d 3d
var my_bright=1;
var my_fade=1;
var scale=0.04;// model scale
var my_cam=2.5;
//draw inbetween here
var xmin=0;
var xmax=111;
var ymin=0;
var ymax=222;
var zmin=30;
var zmax=50;
var do_init=true;
// kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
// do here your init stuff
//clear rgb buffer
for (var i = 0; i < anim_w*anim_h; i++)
{
pix_r[i]=0;
pix_g[i]=0;
pix_b[i]=0;
pix_z[i]=farfaraway;
}
myanim();// kicks off animation
}
// runs at 60fps.. don't stress the browser!
function myanim()
{
requestAnimationFrame(myanim);
var c=document.getElementById('nim0'); // select my canvas
//set canvas size
//!! if not set. it will autosize 300x100sumthing
c.width = anim_w <<0;
c.height = anim_h <<0;
// doing css in javascript for the quick moment
// scale my canvas to the window-fullscreen
c.style.width= window.innerWidth+'px';
c.style.height= window.innerHeight +'px';
c.style.position = 'fixed';
c.style.imageRendering = 'pixelated';
c.style.left=0+'px';
c.style.top= 0+'px';
c.style.cursor='crosshair';
if(Math.random()<0.003 || do_init==true)
{
// here goes the fine-tuning phase
sx1= (Math.random()-0.5)*0.001;
sy1= (Math.random()-0.5)*0.001;
sz1= (Math.random())*0.001;
sx2= (Math.random()-0.5)*0.001; // here goes the fine-tuning phase
sy2= (Math.random()-0.5)*0.001;
sz2= (Math.random())*0.001;
scale=0.05 + Math.random()*0.2 ;
toomuch=4+Math.random()*32
xmin= Math.random() * anim_w ;
xmax= Math.random() * anim_w ;
if (xmin>xmax)
{
var temp=xmin;
xmin=xmax;
xmax=temp;
}
ymin=Math.random()*anim_h ;
ymax=Math.random()*anim_h ;
if (ymin>ymax)
{
var temp=ymin;
ymin=ymax;
ymax=temp;
}
zmin=11+Math.random()*5;
zmax=zmin+0.5+Math.random()*15;
if (zmin>zmax)
{
var temp=zmin;
zmin=zmax;
zmax=temp;
}
do_init=true; // also new colors
}
if(Math.random()<0.003 || do_init==true)
{
do_init=false;
col_r=Math.random()*255;
col_g=0;
col_b=0;
if (Math.random()<0.7) //grey
{
col_g=col_r;
col_b=col_r;
}
shadingstep= (Math.random()*0.000001);
my_cam=0.1+Math.random()*3;
my_bright=0.1+Math.random()*2 ;
my_fade=1 +Math.random()*5;
}
for (var ii = 0; ii < 50000; ii++) // draw a lot of pixels every frame
{
if(toostepper==0)
{
x1+=sx1;
y1+=sy1;
z1+=sz1;
}
else
{
x1+=sx2;
y1+=sy2;
z1+=sz2;
}
toomstepper++;
if(toomstepper>toomuch)
{
toomstepper=0;
if(toostepper==0){toostepper=1;} //flip
else{toostepper=0;}
}
if (x1>xmax){x1 =xmin;}
if (x1<xmin){x1 =xmax;}
if (y1>ymax){y1 =ymin;}
if (y1<ymin){y1 =ymax;}
if (z1>zmax){z1 =zmin;}
if (z1<zmin){z1 =zmax;}
shading+=shadingstep;
if(shading>1 ){shadingstep= -shadingstep;}
if(shading<0.05){shadingstep= -shadingstep;}
//remember first get it working and start playing
//after that you go optimising.. heh
// simple xyz to xy conversion
if(z1== -my_cam){z1 += 0.0001;} //no divide by 0!
var camz=1/(my_cam+z1);
var halfw=anim_w/2;
var halfh=anim_h/2;
var nx= Math.round( halfw + ( (scale*(x1-halfw)) *camz* anim_w ) );
var ny= Math.round( halfh + ( (scale*(y1-halfh)) *camz* anim_h ) );
//q dirty seamless hack now
//- never ever go out of screen! with bitmapgraphics
while(nx<0){ nx+= anim_w;}
while(ny<0){ ny+= anim_h;}
while(nx>= anim_w){nx-= anim_w;}
while(ny>= anim_h){ny-= anim_h;}
var pixpos=( (ny<<0)*anim_w)+(nx<<0); // get position in check
if (z1< pix_z[pixpos])
{
// shading=Math.random();
var deel=my_bright+my_fade;
pix_r[pixpos]= ( (pix_r[pixpos]*my_fade) + ((col_r*shading)*my_bright) ) /deel <<0 ;
pix_g[pixpos]= ( (pix_g[pixpos]*my_fade) + ((col_g*shading)*my_bright) ) /deel <<0;
pix_b[pixpos]= ( (pix_b[pixpos]*my_fade) + ((col_b*shading)*my_bright) ) /deel <<0;
pix_z[pixpos]= z1;// (pix_z[pixpos] + z1) /2 ;
}
}
/////////////////////////////
// write rgb buffer to screen
var ctx= c.getContext("2d");
var img1 = ctx.createImageData(anim_w,anim_h);
for (var y = 0; y < anim_h; y++)
{
var p1=y*anim_w;
for (var x = 0; x < anim_w; x++)
{
// dump my bitmap buffer to the screen
var p2=p1+x;
var pos=((y*anim_w)+x)*4; // pixel position
img1.data[pos] = pix_r[p2] <<0;//red
img1.data[pos+1] = pix_g[p2] <<0;//green
img1.data[pos+2] = pix_b[p2] <<0;//blue
img1.data[pos+3] = 255; // alpha
// note: <<0 is same as Math.floor()
//makes it an int [no floating point stuff]
// fade z-buffer so new things can be drawn on top
pix_z[p2]+=1;
}
}
ctx.putImageData(img1, 0, 0);
}
</script>
</head>
<body>
<canvas id="nim0"></canvas>
</body>
</html>
see it running on my homebase https://elout.home.xs4all.nl/goingfullscreen3/
https://elout.home.xs4all.nl/goingfullscreen3/
part 004 o__.
part 004 o__.
...................................................
going fullscreen 003c
...................................................
draw noisy pixelcubes in 3D
<html><head>
<script>
// we going full-screen v.003c01 still wip softcore 3d engine
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
// some globals i use everywhere and favourites
var anim_w= 1920;
var anim_h= 1080;
var frame_runner=0;
// Uint8ClampedArray between 0-255 my rgb buffers
var pix_r = new Uint8ClampedArray(anim_w*anim_h); //red
var pix_g = new Uint8ClampedArray(anim_w*anim_h); //green
var pix_b = new Uint8ClampedArray(anim_w*anim_h); //blue
var pix_z = new Array(anim_w*anim_h); //my z buffer
var farfaraway=1000000; // z init distance
var x1=0, y1=0, z1=0;
var col_r=0,col_g=0,col_b=0; // red green blue
var my_bright=1;
var my_fade=1;
//draw inbetween here
var xmin=0, xmax=0;
var ymin=0, ymax=0;
var zmin=0, zmax=0;
var bettertimes=50000; // yo
var do_init=true; // for first round init
// kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
// do here your first init stuff
//clear rgbz buffers
for (var i = 0; i < anim_w*anim_h; i++)
{
pix_r[i]= 168;
pix_g[i]= 168;
pix_b[i]= 168;
pix_z[i]=farfaraway;
}
// set-check for window resizing - auto matic
window.addEventListener( 'resize', check_my_windowResize, false );
check_my_windowResize();
//adding keyboard n mouse-touch etc later
myanim();// yo.. kicks off animation
}
//windows stuff n check .___0 auto runs -> when window is rescaled
function check_my_windowResize()
{
var c=document.getElementById('nim0'); // select my canvas
//set canvas size
//!! if canvas not set. it will autosize 300x100sumthing headache 'n bug search
c.width = anim_w <<0;
c.height = anim_h <<0;
// doing canvas css in javascript for the quick moment
// & scale my canvas to the window fullscreen for the moment
// you can adjust the xy scale and position if you want
// with javascript dynamic / on the fly
// make bigger bitmap landscape scrollers etc
c.style.width= window.innerWidth+'px';
c.style.height= window.innerHeight +'px';
c.style.backgroundColor = "#001";
c.style.position = 'fixed';
c.style.imageRendering = 'pixelated';
c.style.left=0+'px';
c.style.top= 0+'px';
c.style.cursor='crosshair';
}
// my own get random number functions
function get_ran(num)
{
return( Math.random()*num );
}
function get_ran_int(num)
{
return( (Math.random()*num)<<0 );
}
// runs at 60fps.. don't stress the browser!
function myanim()
{
requestAnimationFrame(myanim); // auto check
//reset // new block position color etc.
if(get_ran(1)<0.03 || do_init==true)
{
do_init=false; // startup init
// here we go again // fine-tuning phase
// set number of pixels draw each 60 fps tick
bettertimes= 80000;// + get_ran(50000)<<0; // pixi dots
// scale blocks // draw only in this part of cube-area
// i use window-size as 3d model reference for the moment
xmin=get_ran(anim_w);
xmax= xmin+get_ran(156);
if(xmax>=anim_w){xmax=anim_w; }
ymin=get_ran(anim_h);
ymax=ymin+get_ran(101);
if(ymax>=anim_h){ymax=anim_h;}
zmin=14+get_ran(7); // z depth
zmax=zmin+0.1+get_ran(11);
col_r=get_ran(255); //red
col_g=0;
col_b=0;
if (get_ran(1)<0.7) //or go grey
{
col_g=col_r;
col_b=col_r;
}
my_bright=0.1+get_ran(1.2);
my_fade=1;// fade now linked to the z1 value
// keep colors, fades, brights etc. floats!
// only last minute convert them to 0-255 int rgb
}
// go draw a lot of pixels - every frame
// you can change this .____.
for (var ii = 0; ii < bettertimes; ii++)
{
var scale=0.017; // scale zoom in - out
// 3d model scale - is still linked to image-window size atm
// get a new random x, y and z position
var range=xmax-xmin; // new x o__. 200-50=150
x1 = xmin+get_ran(range);
// get a random position between xmin-xmax
var range=ymax-ymin; // new y
y1 = ymin+get_ran(range);
var range=zmax-zmin; // new z
z1 = zmin+get_ran(range);
// simple xyz to xy conversion
// passed around irc. late 90s
//not sure who's og on this
// and i added all kinda extras
var my_cam=2.5; // you can change this .___.
if(z1== -my_cam){z1+=0.0001;} //error check no divide by 0!
var camz=1/(my_cam+z1);
var halfw=anim_w/2; // check image width and height
var halfh=anim_h/2;
var nx= Math.round( halfw + (scale*(x1-halfw)*camz*anim_w ) );
var ny= Math.round( halfh + (scale*(y1-halfh)*camz*anim_h ) );
//q 'n dirty seamless drawing hack now
//- never ever go out of screen or array! with bitmap graphics
// keep drawing position in check
while(nx<0){ nx+=anim_w;}
while(ny<0){ ny+=anim_h;}
while(nx>= anim_w){nx-=anim_w;}
while(ny>= anim_h){ny-=anim_h;}
var pixpos=( (ny<<0)*anim_w)+(nx<<0); // get pixel position buffer
if (z1< pix_z[pixpos]) // check zbuffer if no pixel drawn closer?!
{
var newfade=my_fade+((z1-14)*7);// +more transparent with z now
var deel=my_bright+newfade;
pix_r[pixpos]= ( (pix_r[pixpos]*newfade) + (col_r*my_bright) ) /deel <<0;
pix_g[pixpos]= ( (pix_g[pixpos]*newfade) + (col_g*my_bright) ) /deel <<0;
pix_b[pixpos]= ( (pix_b[pixpos]*newfade) + (col_b*my_bright) ) /deel <<0;
pix_z[pixpos]=z1; // new z position hard
}
}
// drawing all the pixels to the screen
// is biggest slowdown and bottleneck
// you can think of smarter ways to make fps better
// but a first simple one..
// you can skip drawing every x-frames at 60fps
frame_runner++; // global runner
if(frame_runner<0){frame_runner=0;} // against -minus overflow check
var frameskip=20; // skip xxx frames for faster drawing-calc
if(frame_runner%frameskip == 0 || frameskip==0) // 20 60
{
var c=document.getElementById('nim0');
var ctx= c.getContext("2d");
var img1 = ctx.createImageData(anim_w,anim_h);
// dump my rgb buffer to screen // got loads of pixels .____o
for (var i = 0,p=0,b=0; i < anim_w*anim_h; i++)
{
// dump my bitmap buffer to the screen
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
// note: <<0 is same as Math.floor()
// makes it an int [no floating point stuff]
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0);
}
}
// for bresenham bitmap line routines etc. see
//https://rosettacode.org/wiki/Bitmap/Bresenham%27s_line_algorithm#JavaScript
// you also can use the bresenham line routine
// for making your own triangle [x1-x2 horizontal scanline] fillers.
</script>
</head>
<body>
<canvas id="nim0"></canvas>
</body>
</html>
soft 3d engine basic example
could run on all devices .__. no fancy graphic card needed
.___.
browser drawing and animation..
see it running on my home base
https://elout.home.xs4all.nl/goingfullscreen003c/
no wallets needed - javascript animation
https://elout.home.xs4all.nl/goingfullscreen003c/
part 005 o__.
...................................................
going fullscreen 003i
...................................................
draw some noisy pixelcubes in 3D
before going further. drawing lines brushes .. etc
i want to add some extra's i really need and want
prepare my drawing engine pixelbombing machine.. better and more flexible
. added a keyboard check: [s-key: save image]
. a simple fps counter [first start for ui on top]
. also scaling and showing the image now in the correct ratio
.__o maybe next version i go even deeper on screen rendering
smooth-sample the image much more better.. when drawning to the screen
even mouse zooms or image bitmap scrollers =_____=
<html><head>
<script>
// we going full-screen v.003i
// wip softcore 3d engine 'n javascript template
// still tuning a bit. before source release
// added s-key for saving an image
// quick window ratio scaling
// can be done even much faster with increase fps
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
// some globals i use everywhere and favourites
// image width and height !!
var image_w= 1920 *2 <<0; //hd *2
var image_h= 1080 *2 <<0;
var doc_name="going__fullscreen003i"; // document title and save name
var show_fps= false; //true;// false;// show fps on top html ui layer
// tech rgb buffers - Uint8ClampedArray between 0-255 also faster n lower on mem
var pix_r = new Uint8ClampedArray(image_w*image_h); //red
var pix_g = new Uint8ClampedArray(image_w*image_h); //green
var pix_b = new Uint8ClampedArray(image_w*image_h); //blue
var pix_z = new Array(image_w*image_h); //my z buffer
var frame_runner=0; // global frame counter
var farfaraway=1000000; // z init distance
var save_image=false; // s save image key
// dirty fps counter - auto-triggers timer_fps() every 1sec
var my_timer=setInterval(function(){timer_fps()},1000);
var counter_fps=0;
var timeCurrent, timeLast = Date.now();
// now some globals for my drawing and animation
var x1=0, y1=0, z1=0;
var col_r=0,col_g=0,col_b=0; // red green blue
var my_bright=1;
var my_fade=1;
//box draw inbetween here
var xmin=0, xmax=0;
var ymin=0, ymax=0;
var zmin=0, zmax=0;
var bettertimes=24.7; // yo how much pixel?!
var do_init=true; // for first round init run
var tele_x=0; // translate x y z
var tele_y=0;
var tele_z=0;
var scale_x=1; // scale x y z
var scale_y=1;
var scale_z=1;
// this starts it all and kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
// do here your first init stuff
document.title = doc_name; // set document title
//clear my rgbz buffer and screen
var num_pixels= image_w*image_h;
var grey=255;
fill_array(pix_r,num_pixels,grey);// red
fill_array(pix_g,num_pixels,grey);// green
fill_array(pix_b,num_pixels,grey);// blue
fill_array(pix_z,num_pixels,farfaraway);// init z-buffer with far far away number
// set-check for window resizing - auto matic
window.addEventListener( 'resize', check_my_windowResize, false );
check_my_windowResize();
//adding keyboard check - s save image key
document.addEventListener('keyup', function(event)
{
//alert('yo: '+event.code);
if (event.code == 'KeyS')
{
save_image=true;
}
});
myanim();// yo.. kicks off animation
}
//windows stuff n check .___0 auto runs -> when window is rescaled
function check_my_windowResize()
{
// do css in javascript
document.body.style.backgroundColor = "rgb(0, 0, 0)"; // set background color you can even animate it
var c=document.getElementById('my_canvas'); // select my canvas
//set canvas size
//!! if your canvas not set !! it will autosize the canvas size to 300x100 sumthing
c.width = image_w <<0;
c.height = image_h <<0;
var size_x=0;
var size_y=0;
var browser_w= Math.round(window.innerWidth); // get browser width and height in ints!
var browser_h= Math.round(window.innerHeight);
var pix_screen_left=0;
var pix_screen_top=0;
// canvas smaller then browser screen? position it nice the middle
if (image_w <= browser_w && image_h <= browser_h)
{
c.style.width= image_w +'px';
c.style.height= image_h +'px';
pix_screen_left= (browser_w/2) - (image_w/2) <<0;// center it nice
pix_screen_top= (browser_h/2) - (image_h/2) <<0;
//c.style.left=pix_screen_left+'px';
//c.style.top=pix_screen_top+'px';
}
else // image is bigger then browser screen!
{
var pix_screen_w= browser_w; // do for image wider then screen
var newratio= (browser_w/image_w);
var pix_screen_h = (image_h*newratio)<<0;
var pix_screen_left=0;
var pix_screen_top=((browser_h - pix_screen_h)/2) <<0; // center it on height
if (pix_screen_h > browser_h) // image is higher then browser screen.. re-center canvas on width
{
pix_screen_h = browser_h;
newratio=(browser_h/image_h);
pix_screen_top=0;
pix_screen_w=(image_w*newratio)<<0;
pix_screen_left=((browser_w - pix_screen_w)/2) <<0;
}
c.style.width= pix_screen_w +'px';
c.style.height= pix_screen_h +'px';
}
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
// still gotta fix better scaling and faster on screen drawing fps.. something for next example
// some extra css fun stuff
c.style.position = 'fixed'; // needed against nasty scrollbars now
c.style.imageRendering = 'pixelated'; // blur or sharp?
c.style.cursor='crosshair';
// do the fps ui on top
var u=document.getElementById('uiblock');
u.style.backgroundColor = "#fff7"; // rgb alpha
u.style.position = 'fixed';
u.style.left= 10+'px';
u.style.top = 10+'px';
u.style.font = "15px bold verdana, serif,arial";
// hide or show fps text block
if(show_fps==false){document.getElementById('uiblock').style.visibility = "hidden";}
else {document.getElementById('uiblock').style.visibility = "visible";}
}
// my own my random number functions at 1 place
// so i can change it easy when using other random generators
function get_ran(num)
{
return( Math.random()*num );
}
function get_ran_int(num)
{
return( (Math.random()*num)<<0 );
}
function get_ran_range(num) // get random between -num and +num
{
var ran=(Math.random()*(num*2) ) -num;
return( ran );
}
// dirty fps
function timer_fps()
{
timeCurrent = Date.now();
if(timeCurrent > timeLast)
{
timeLast = timeCurrent;
if (show_fps==true)
{
set_msg('uiblock', '.__0 fps: '+counter_fps+' =____= ');
}
counter_fps=0;
}
}
//dynamic write html text in javascript
function set_msg(div, msg){document.getElementById(div).innerHTML = msg;}
function go_msg(div, msg) {document.getElementById(div).innerHTML += msg;}
// fill an array
function fill_array(buf,size,value)
{
for (var i=0; i < size; i++){buf[i]=value;}
}
// runs at 60fps.. don't stress the browser!
// here happens the drawing
function myanim()
{
requestAnimationFrame(myanim); // auto check needed!
if (show_fps==true){counter_fps++;}// dirty fps counter
// make new block
if(get_ran(1)<0.051 || do_init==true)
{
// here we go again // fine-tuning phase
// set number of pixels draw each 60 fps tick
bettertimes= 150000;// watch fps! // pixi dots
scale_x=0.8; // model scale zoom in - out
scale_y=0.8; // adjust by hand due ratio now
scale_z=0.8; //
// scale blocks // draw only in this part of cube-area
// init 3d model between -0.5 and 0.5 for the moment
xmin=get_ran(1)-0.5;
xmax=get_ran(1)-0.5;
if(xmin>xmax) // flip
{
var temp=xmin;
xmin=xmax;
xmax=temp;
}
ymin=get_ran(1)-0.5;
ymax=get_ran(1)-0.5;
if(ymin>ymax) // flip
{
var temp=ymin;
ymin=ymax;
ymax=temp;
}
zmin=get_ran(1)-0.5; // z depth
zmax=get_ran(1)-0.5; // z depth
if(zmin>zmax) // flip
{
var temp=zmin;
zmin=zmax;
zmax=temp;
}
col_r=get_ran(255); //red
col_g=0; // green
col_b=0; // blue
if (get_ran(1)<0.94) //or go grey
{
col_g=col_r;
col_b=col_r;
}
my_bright=0.1+get_ran(1);
my_fade=1;
// keep colors, fades, brights etc. floats!
// only last minute I convert them to 0-255 int rgb
// teleport block around random grid get new block position
if(get_ran(1)<0.7 || do_init==true)
{
tele_z= 7.5; // z dont go too close to camera
tele_x= get_ran_range(10)/2 <<0;
tele_y= get_ran_range(5) <<0;
}
do_init=false; // first startup init done
}
// go draw a lot of pixels - every frame
// you can change this .____.
for (var ii = 0; ii < bettertimes; ii++)
{
// make a new random block dot
// get a random x position between xmin-xmax
var range=xmax-xmin;
x1 = xmin+get_ran(range);
var range=ymax-ymin; // new y
y1 = ymin+get_ran(range);
var range=zmax-zmin; // new z
z1 = zmin+get_ran(range);
// 3d to 2d screen calulation next
var halfw=image_w/2; // check canvas image width and height
var halfh=image_h/2;
// scale and translate xyz in 3d first
var nx= (scale_x*x1)+tele_x;
var ny= (scale_y*y1)+tele_y;
var nz= (scale_z*z1)+tele_z;
// simple 3d to 2d calc
// xyz to xy-screen conversion
// passed around irc. late 90s
// not sure who's og on this
// changed it over the years
var my_cam=2 ; // zoom - iso you can change this .___.
if(nz== -my_cam){nz+=0.0001;} //error check no divide by 0!
var camz=1/(my_cam+nz); //!!! z1 in the mix
var nx= halfw + ((nx*camz)*image_w);
var ny= halfh + ((ny*camz)*image_h);
var nfade= my_fade + ((nz-tele_z+0.5)*3); // fade based on z now
// now draw my pixel
draw_nmix_pixel001(nx,ny,nz, // x y z
col_r,col_g,col_b, // r g b
nfade,my_bright, // fade bright
image_w,image_h,pix_r,pix_g,pix_b,pix_z);
}
// tech
// now drawing all the pixels to the screen
// is biggest slowdown and bottleneck
// you can think of smarter ways to make fps better
// but a first simple one..
// you can skip drawing every x-frames at 60fps
frame_runner++; // global runner keep track of # frames drawn
if(frame_runner<0){frame_runner=0;} // against -minus overflow check
var frameskip=30; // skip xxx frames for faster drawing-calc
if(frame_runner%frameskip == 0 || frameskip==0) // 20 60
{
var c=document.getElementById('my_canvas');
var ctx= c.getContext("2d");
var img1 = ctx.createImageData(image_w,image_h);
// dump my rgb buffer to screen // got loads of pixels .____o
for (var i = 0,p=0,b=0; i < image_w*image_h; i++)
{
// dump my bitmap buffer to the screen
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
// note: <<0 is same as Math.floor()
// makes it an int [no floating point stuff]
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // canvas written/updated to screen
if (save_image==true) // saving image part
{
var imagename= doc_name+'.png'; //
var my_download = document.createElement('a'); // auto fake button
my_download.setAttribute('download', imagename);
var mcanvas = document.getElementById('my_canvas');
mcanvas.toBlob(function(blob) {
var url = URL.createObjectURL(blob);
my_download.setAttribute('href', url);
my_download.click();
});
save_image=false;
}
}
}
function draw_nmix_pixel001(x,y,z,r,g,b,fade,bright,w,h,buf_r,buf_g,buf_b,buf_z)
{
// q 'n dirty seamless drawing hack now
//- never ever go out of screen or array! with bitmap graphics
// keep drawing position in check - still error check here now
while(x<0){ x+=w;}
while(y<0){ y+=h;}
while(x>= w){x-=w;}
while(y>= h){y-=h;}
// you can also decide just.. not to draw pixel when out of bounds
var deel= bright+fade; // avarage it out
var pixpos=( (y<<0)*w<<0)+(x<<0); // get pixel position buffer make sure int !
if (z < buf_z[pixpos]) // check zbuffer if no pixel drawn closer?!
{
buf_r[pixpos]= ( (buf_r[pixpos]*fade) + (r*bright) ) /deel <<0;
buf_g[pixpos]= ( (buf_g[pixpos]*fade) + (g*bright) ) /deel <<0;
buf_b[pixpos]= ( (buf_b[pixpos]*fade) + (b*bright) ) /deel <<0;
buf_z[pixpos]=z; // update new z position hard
}
}
</script>
</head>
<body>
<canvas id="my_canvas"></canvas>
<div id="uiblock">0__. ui on top =_______=</div>
</body>
</html>
see it running on https://elout.home.xs4all.nl/goingfullscreen003i/
[no wallets needed] javascript animation-drawing in a browser
see it running on https://elout.home.xs4all.nl/goingfullscreen003i/ [no wallets needed] javascript animation-drawing in a browser
https://elout.home.xs4all.nl/goingfullscreen003i/
part 006 o__.
...................................................
going fullscreen 003n
...................................................
we going full-screen v.003n
added big working screen to smaller browser screen downscaler
for better fps, and a better drawn and sampled screen-browser image result
<html><head>
<script>
// bitrunners
// we going full-screen v.003n
// wip softcore 3d engine 'n javascript template
// still tuning a bit. before source release
// added s-key for saving an image
// quick window ratio scaling
// can be done even much faster with increase fps
// minimal javascript template elout 32025
// bitmap graphics drawing vanilla javascript
// underground resistance - learn how to code
// some globals i use everywhere and favourites
// image width and height !! watch your memory you can use!
var image_w= 1920* 2 <<0; //hd *2 my big working-drawing picture
var image_h= 1080* 2 <<0;
var doc_name="going__fullscreen003n"; // document title and save name
var show_fps= true;// false;// show fps on top html ui layer
// tech stuff next my rgb buffers - Uint8ClampedArray between 0-255 also faster n lower on mem
var pix_r = new Uint8ClampedArray(); //red
var pix_g = new Uint8ClampedArray(); //green
var pix_b = new Uint8ClampedArray(); //blue
var pix_z = new Array(); //my z buffer
// canvas scale down image based on browserscreen
var pix_screen_r = new Uint8ClampedArray(); //red
var pix_screen_g = new Uint8ClampedArray(); //green
var pix_screen_b = new Uint8ClampedArray(); //blue
var x_step = new Array(); // array with block size for highres to lowres/screenres smoothing
var y_step = new Array();
var render_complete=false; // for scanline renderer
var yline_pos=0;// scanline position
var yline_blocksize=64;// vertical scanline stepper
// position canvas based on browser-screen
var pix_screen_w=0;
var pix_screen_h=0;
var pix_screen_left=0;
var pix_screen_top=0;
var frame_runner=0; // global frame counter
var farfaraway=1000000; // z init distance
var save_image=false; // s save image key
// dirty fps counter - auto-triggers timer_fps() every 1sec
var my_timer=setInterval(function(){timer_fps()},1000);
var counter_fps=0;
var timeCurrent, timeLast = Date.now();
// precalculated random buffer
var my_randombufsize=10000;
var my_randombuff=new Array(my_randombufsize);
var my_random_step=1;
var my_random_pos=0;
// now some globals for my drawing and animation
var x1=0, y1=0, z1=0;
var col_r=0,col_g=0,col_b=0; // red green blue
var my_bright=1;
var my_fade=1;
//box draw inbetween here
var xmin=0, xmax=0;
var ymin=0, ymax=0;
var zmin=0, zmax=0;
var bettertimes=24.7; // pixels 24/7 yo how much pixel?!
var do_init=true; // for first round init run
var tele_x=0; // translate x y z
var tele_y=0;
var tele_z=0;
var scale_x=1; // scale x y z
var scale_y=1;
var scale_z=1;
var rendermode=1; // fullscreen or screen scaled image?
// this starts it all and kicks off.. when page is loaded!
window.addEventListener('load',init_my_stuff, false );
function init_my_stuff()
{
// do here your first init stuff
document.title = doc_name; // set document title
var num_pixels= image_w*image_h;
pix_r = new Uint8ClampedArray(num_pixels); //red
pix_g = new Uint8ClampedArray(num_pixels); //green
pix_b = new Uint8ClampedArray(num_pixels); //blue
pix_z = new Array(num_pixels); //my z buffer
//clear my rgbz buffer and screen
var grey=220; // startup background color
fill_array(pix_r,num_pixels,grey);// red
fill_array(pix_g,num_pixels,grey);// green
fill_array(pix_b,num_pixels,grey);// blue
fill_array(pix_z,num_pixels,farfaraway);// init z-buffer with far far away number
// set-check for window resizing - auto matic
window.addEventListener( 'resize', check_my_windowResize, false );
check_my_windowResize();
//adding keyboard check - s save image key
document.addEventListener('keyup', function(event)
{
//alert('yo: '+event.code);
if (event.code == 'KeyS')
{
console.log( 'key s' ); // text-info to console
save_image=true;
rendermode=0;
}
});
myanim();// yo.. kicks off animation
}
//windows stuff n check .___0 auto runs -> when window is rescaled
function check_my_windowResize()
{
// do css in javascript
document.body.style.backgroundColor = "rgb(0, 0, 0)"; // set background color.. you can even animate it
var c=document.getElementById('my_canvas'); // select my canvas
//set canvas size
//!! if your canvas not set !! it will autosize the canvas size to 300x100 sumthing
c.width = image_w <<0;
c.height = image_h <<0;
var size_x=0;
var size_y=0;
var browser_w= Math.round(window.innerWidth); // get browser width and height in ints!
var browser_h= Math.round(window.innerHeight);
// canvas smaller then browser screen? position it nice the middle
if (image_w <= browser_w && image_h <= browser_h)
{
pix_screen_w=image_w;
pix_screen_h=image_h;
c.style.width= image_w +'px';
c.style.height= image_h +'px';
pix_screen_left=((browser_w - pix_screen_w)/2) <<0;
pix_screen_top= ((browser_h - pix_screen_h)/2) <<0; // center it on height and width
}
else // image is bigger then browser screen!
{
pix_screen_w= browser_w; // do for image wider then screen
var newratio= (browser_w/image_w);
pix_screen_h = (image_h*newratio)<<0;
pix_screen_left=0;
pix_screen_top=((browser_h - pix_screen_h)/2) <<0; // center it on height
if (pix_screen_h > browser_h) // image is higher then browser screen.. re-center canvas on width
{
pix_screen_h = browser_h;
newratio=(browser_h/image_h);
pix_screen_top=0;
pix_screen_w=(image_w*newratio)<<0;
pix_screen_left=((browser_w - pix_screen_w)/2) <<0;
}
c.style.width= pix_screen_w +'px';
c.style.height= pix_screen_h +'px';
}
// getting smaller scaled screen canvas ready
console.log(pix_screen_w+' '+pix_screen_h); // text-info to console
//create a new lower res image based on the browser window screensizer
pix_screen_r = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //red
pix_screen_g = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //green
pix_screen_b = new Uint8ClampedArray(pix_screen_w*pix_screen_h); //blue
var stepr_x = (image_w / pix_screen_w); // get pre-calculated block-size for downscaling
var stepr_y = (image_h / pix_screen_h);
x_step = new Array(pix_screen_w*pix_screen_h); // clear it again
y_step = new Array(pix_screen_w*pix_screen_h);
// important .. calculate here the blocksize area when smoothing down highres-lowscreenres
// pre-calculate sample block size for smoothing highres image to lower res screen image
for (var j = 0; j < pix_screen_h; j++)
{
for (var i = 0; i <pix_screen_w; i++)
{
var p1=(j*pix_screen_w)+i;
var ii =(i*stepr_x)<<0;
var ii2=((i+1)*stepr_x)<<0;
var jj=(j*stepr_y)<<0;
var jj2=((j+1)*stepr_y)<<0;
x_step[p1] = ii2-ii;
y_step[p1] = jj2-jj;
}
}
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
// still gotta fix better scaling and faster on screen drawing fps.. something for next example
// some extra css fun stuff
c.style.position = 'fixed'; // needed against nasty scrollbars now
c.style.imageRendering = 'pixelated'; // blur or sharp?
c.style.cursor='crosshair';
// do the fps ui on top
var u=document.getElementById('uiblock');
u.style.backgroundColor = "#fff7"; // rgb alpha
u.style.position = 'fixed';
u.style.left= 10+'px';
u.style.top = 10+'px';
u.style.font = "15px bold verdana, serif,arial";
// hide or show fps text block
if(show_fps==false){document.getElementById('uiblock').style.visibility = "hidden";}
else {document.getElementById('uiblock').style.visibility = "visible";}
}
// my own my random number functions at 1 place
// so i can change it easy when using other random generators
function get_ran(num)
{
return( Math.random()*num );
}
function get_ran_int(num)
{
return( (Math.random()*num)<<0 );
}
function get_ran_range(num) // get random between -num and +num
{
var ran=(Math.random()*(num*2) ) -num;
return( ran );
}
// store circle points in an big or small array between -1 and +1
function create_circle(cirlepoints,mcos,msin)
{
for(var i=0; i<cirlepoints; i++)
{
mcos[i]=( Math.cos ( i*360/nsize * Math.PI / 180));
msin[i]=( Math.sin ( i*360/nsize * Math.PI / 180));
}
}
// dirty fps
function timer_fps()
{
timeCurrent = Date.now();
if(timeCurrent > timeLast)
{
timeLast = timeCurrent;
if (show_fps==true)
{
set_msg('uiblock', 'o__. fps: '+counter_fps);
}
counter_fps=0;
}
}
//dynamic write html text in javascript
function set_msg(div, msg){document.getElementById(div).innerHTML = msg;}
function go_msg(div, msg) {document.getElementById(div).innerHTML += msg;}
// fill an array
function fill_array(buf,size,value)
{
for (var i=0; i < size; i++){buf[i]=value;}
}
// scale bigger picture to smaller screensize image with smoothing
function scaledown_image_(source_r, source_g, source_b,
image_w, image_h,
pix_screen_r,pix_screen_g, pix_screen_b,
pix_screen_w,pix_screen_h,
x_step, y_step) // step buffer sample block for smoothing
{
var stepr_x = (image_w / pix_screen_w);
var stepr_y = (image_h / pix_screen_h);
// scanline rendering-calculating now // do it in little steps against fps drops
render_complete=false; //render complete? global.. also needed for saving and thumb-screenshot
var lastlines=false;
var newy=yline_pos + yline_blocksize;
if( newy > pix_screen_h-1)
{
newy = pix_screen_h;
lastlines=true;
}
//convert my bigger higher res picture i`m drawing
//scale n' smooth them down ..
//so it looks good on ya browser screen 'n resolution
for (var j = yline_pos; j < newy; j++)
{
var p3=(j*pix_screen_w);
for (var i = 0; i < pix_screen_w; i++)
{
var p0=p3+i;
var ii=(i*stepr_x)<<0;
var jj=(j*stepr_y)<<0;
var p2=(jj*image_w)+ii;
var r1=0,g1=0,b1=0, dc=0;
for (var cj = 0; cj < (y_step[p0]); cj++) // calculate new rgb pixel based on bigger block
{
var p1= cj*image_w;
for (var ci = 0; ci < (x_step[p0]); ci++)
{
var tpos=(p2+ci) + p1;
r1 += source_r[tpos];
g1 += source_g[tpos];
b1 += source_b[tpos];
dc++;
}
}
pix_screen_r[p0]= (r1/dc)<<0;
pix_screen_g[p0]= (g1/dc)<<0;
pix_screen_b[p0]= (b1/dc)<<0;
}
}
if(lastlines==true)
{
render_complete=true;
yline_pos=0;
}
else{yline_pos=newy;}
}
// draw pixel r,g,b,z including fading and bright
function draw_nmix_pixel001(x,y,z,r,g,b,fade,bright,w,h,buf_r,buf_g,buf_b,buf_z)
{
while(x<0){ x+=w;} // q 'n dirty seamless drawing hack now
while(y<0){ y+=h;} // faster if you already pre-check first.
while(x>= w){x-=w;}// if you draw in the screen // then you can skip this part
while(y>= h){y-=h;}// or do this.. when pixels or line-parts go out of bounds-screen
var deel= bright+fade; // avarage it out
var pixpos=( (y<<0)*w<<0)+(x<<0); // get pixel position buffer make sure they are int !
if (z < buf_z[pixpos]) // check zbuffer if no pixel drawn closer?!
{
buf_r[pixpos]= ( (buf_r[pixpos]*fade) + (r*bright) ) /deel <<0;
buf_g[pixpos]= ( (buf_g[pixpos]*fade) + (g*bright) ) /deel <<0;
buf_b[pixpos]= ( (buf_b[pixpos]*fade) + (b*bright) ) /deel <<0;
buf_z[pixpos]=z; // update new z position hard
}
}
// runs at 60fps.. don't stress the browser!
// here happens the drawing
function myanim()
{
requestAnimationFrame(myanim); // auto check needed!
if (show_fps==true){counter_fps++;}// dirty fps counter
// make new block
if(get_ran(1)<0.1 || do_init==true)
{
// here we go again // fine-tuning phase
// set number of pixels draw each 60 fps tick
bettertimes= 101100;// watch fps! // how mucho pixi dots
scale_x=0.8; // model scale zoom in - out
scale_y=0.8; // adjust by hand due ratio now
scale_z=0.8; //
// scale blocks // draw only in this part of cube-area
// init 3d model between -0.5 and 0.5 for the moment
xmin=get_ran(1)-0.5;
xmax=get_ran(1)-0.5;
if(xmin>xmax) // flip
{
var temp=xmin;
xmin=xmax;
xmax=temp;
}
ymin=get_ran(1)-0.5;
ymax=get_ran(1)-0.5;
if(ymin>ymax) // flip
{
var temp=ymin;
ymin=ymax;
ymax=temp;
}
zmin=get_ran(1)-0.5; // z depth
zmax=get_ran(1)-0.5; // z depth
if(zmin>zmax) // flip
{
var temp=zmin;
zmin=zmax;
zmax=temp;
}
col_r=get_ran(255); //red
col_g=0; // green
col_b=0; // blue
if (get_ran(1)<0.94) //or go grey
{
col_g=col_r;
col_b=col_r;
}
my_bright=0.1+get_ran(1);
my_fade=2;
// keep colors, fades, brights etc. floats!
// only last minute I convert them to 0-255 int rgb
// teleport block around random grid get new block position
if(get_ran(1)<0.7 || do_init==true)
{
tele_z= 3.5; // z dont go too close to camera
tele_x= get_ran_range(6)/2 <<0;
tele_y= get_ran_range(3) <<0;
}
do_init=false; // first startup init done
}
// go draw a lot of pixels - every frame
// you can change this .____.
var min=0.5;
var max=0.5;
var xrange=xmax-xmin;
var yrange=ymax-ymin;
var zrange=zmax-zmin;
for (var ii = 0; ii < bettertimes; ii++) // draw them pixels
{
// draw new random block / dot area
// get a random x position between xmin-xmax
x1 = xmin + get_ran(xrange);
y1 = ymin + get_ran(yrange);
z1 = zmin + get_ran(zrange);
// 3d to 2d screen calulation next
var halfw=image_w/2; // check canvas image width and height
var halfh=image_h/2;
// scale and translate xyz in 3d first
var nx= (scale_x*x1)+tele_x;
var ny= (scale_y*y1)+tele_y;
var nz= (scale_z*z1)+tele_z;
// simple 3d to 2d calc
// xyz to xy-screen conversion
// passed around irc. late 90s
// not sure who's og on this
// changed it over the years
var my_cam=2 ; // zoom - iso you can change this .___.
if(nz== -my_cam){nz+=0.0001;} //error check no divide by 0!
var camz=1/(my_cam+nz); //!!! z1 in the mix
var nx= halfw + ((nx*camz)*image_w);
var ny= halfh + ((ny*camz)*image_h);
var nfade= my_fade + ((nz-tele_z+0.5)*7); // fade based on z now
// now draw my pixel
draw_nmix_pixel001(nx,ny,nz, // x y z
col_r,col_g,col_b, // r g b
nfade,my_bright, // fade bright
image_w,image_h,pix_r,pix_g,pix_b,pix_z);
}// end draw pixels better times
if (get_ran(1)<0.1)
{
console.log(min+' '+max);
}
// draw to screen tech
// drawing all the pixels to the screen
// is biggest slowdown and bottleneck
// you can think of smarter ways to make the fps better / more smooth
// but a first simple one..
// you can skip drawing every x-frames at 60fps
frame_runner++; // global runner keep track of # frames drawn
if(frame_runner<0){frame_runner=0;} // against -minus overflow check
var frameskip= 10; // skip xxx frames for faster drawing-calc
if(frame_runner%frameskip == 0 || frameskip==0) // 20 60
{
//var rendermode=1;
var c=document.getElementById('my_canvas');
var ctx= c.getContext("2d");
if(rendermode==1)
{
//set canvas size
//!! if your canvas not set !! it will autosize the canvas size to 300x100 sumthing
c.width = pix_screen_w <<0; // use a smaller screen.. as big as browser screen
c.height = pix_screen_h <<0;// for drawing the results
c.style.width= pix_screen_w +'px';
c.style.height= pix_screen_h +'px';
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
//scale-smooth my bigger higher res // to browser size screen
if(image_w<=pix_screen_w && image_h<=pix_screen_h) // show original no smoothing needed
{
var img1 = ctx.createImageData(pix_screen_w,pix_screen_h);
for (var i = 0,p=0,b=0; i < pix_screen_w*pix_screen_h; i++)
{
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // canvas written/updated to screen
}
else
{
// calculate the smoothing in steps-scanlines
scaledown_image_(pix_r, pix_g, pix_b,
image_w, image_h,
pix_screen_r,pix_screen_g, pix_screen_b,
pix_screen_w,pix_screen_h,
x_step, y_step);
var img1 = ctx.createImageData(pix_screen_w,pix_screen_h);
for (var i = 0,p=0,b=0; i < pix_screen_w*pix_screen_h; i++)
{
img1.data[p++] = pix_screen_r[b] <<0;//red
img1.data[p++] = pix_screen_g[b] <<0;//green
img1.data[p++] = pix_screen_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // write new canvas to screen
}
}
if(rendermode==0) // write big canvas to the screen.. also used for saving images
{
c.width = image_w <<0;
c.height = image_h <<0;
c.style.width= pix_screen_w +'px'; //pix_screen_w -- scale the big canvas .. to the screen width css
c.style.height= pix_screen_h +'px'; //pix_screen_h
c.style.left=pix_screen_left+'px'; // position the canvas
c.style.top= pix_screen_top+'px';
var img1 = ctx.createImageData(image_w,image_h);
// dump my rgb buffer to screen // got loads of pixels .____o
for (var i = 0,p=0,b=0; i < image_w*image_h; i++)
{
// dump my bitmap buffer to the screen
img1.data[p++] = pix_r[b] <<0;//red
img1.data[p++] = pix_g[b] <<0;//green
img1.data[p++] = pix_b[b] <<0;//blue
img1.data[p++] = 255; // alpha
// note: <<0 is same as Math.floor()
// makes it an int [no floating point stuff]
b++; // keeps track of pixel position
}
ctx.putImageData(img1, 0, 0); // canvas written/updated to screen
console.log( 'saving' ); // text-info to console
if (save_image==true) // saving image part
{
console.log( 'image' ); // text-info to console
var imagename= doc_name+'.png'; //
var my_download = document.createElement('a'); // auto fake button
my_download.setAttribute('download', imagename);
var mcanvas = document.getElementById('my_canvas');
mcanvas.toBlob(function(blob) {
var url = URL.createObjectURL(blob);
my_download.setAttribute('href', url);
my_download.click();
});
save_image=false;
}
rendermode=1;
}// render mode
}// frameskip
}
</script>
</head>
<body>
<canvas id="my_canvas"></canvas>
<div id="uiblock">0__. =_______=</div>
</body>
</html>