Tuesday, April 11, 2017

The_Four_Orbs_chung free rpg game using rpg_chung game engine

The_four_orbs_chung is a rpg text like game with 3D dungeon created with rpg_chung old fashion game engine .

you can find it here =>  https://sourceforge.net/projects/the-four-orbs/   

Friday, April 7, 2017

rpg_chung free rpg text interactive fiction like game

rpg_chung is a rpg text like game engine with 3D laby view and random dungeons maps generation. It is written in freebasic and can be compared as a game chatbot inspired from the first "the hobbit" game.

click here =>  https://sourceforge.net/projects/rpgchung/  (1.7Mo)

(01/04/2014) rpg_chung_french version added
(07/04/2017) TTS speech added

Thursday, March 23, 2017

displaymidi_chung show midi input port incoming notes on score like screen

displaymidi chung is a free small aplication that displays any incoming notes from the choozen midi input port on a score like screen .

you can find it there => https://sourceforge.net/projects/displaymidi-chung/?source=navbar


Thursday, January 12, 2017

flightcombat_chung_web realtime web google static maps / openstreetmap desktop flight / car simulator

flightcombat_chung_web is a free realtime google static maps imagery / openstreetmap realtime osm airports bridges and buildings web connected via httppost sockets desktop application  version of flightcombat_chung 3D flight / foot / car simulator .
fly in formation, give wingmen orders, start massive dogfight , or explore any place in the world with real satellite views and osm towns with messages from thousands worldwide airports with real names and radar display .

you can find it there => https://sourceforge.net/projects/flightcombatchu/files/web/  (download flightcombat_chung_web.zip file)

(09/10/2016) new combo menu added

other version, with full buildings contours data and enhanced car sim
                             =>  https://sourceforge.net/projects/flightcombatchu/files/web2/

note : if you have a firewall, it must allow web sockets

(02/12/2016) web2 officials, churches, hospitals, shops added
(18/12/2016) web2 gasstations & railstations added
(21/12/2016) full save / load scenary with osm
(25/12/2016) osm roads added
(11/01/2017) car autopilot added [P]key
(12/01/2017) lamps, forests, cows added










































Monday, December 26, 2016

myweb_launcher_chung desktop to web internet applcations launcher

myweb_launcher chung is a small program that allow you to launch and close some web html applications directly from the desktop to some browser (chrome, default, firefox, iexplore) even if it is not the default browser . ex : launch and close json_osm_chung from desktop to chrome even if firefox is your default browser .(chrome is faster for webgl apps)

=>  https://sourceforge.net/projects/myweb-launcher-chung/   

Friday, September 30, 2016

midipiano_chung_lite lite version of midipiano_chung

midipiano chung lite is a lite older but somehow better than more recent versions of midipiano_chung virtual standalone acoustic piano program , with more resonance .

=>  https://sourceforge.net/projects/midipiano-chung-lite/    

Wednesday, September 14, 2016

aquarium_chung free 3D openGL virtual aquarium

aquarium_chung is a free open source photorealistic 3D openGL virtual aquarium i have written in freebasic with fishes, plants and rocks, decors .You can also pilot a mini submarine among the fishes and explore vaste 3D undersea with terrain relief . runs well on a n3540 cpu computer (60fps) .
download here =>  https://sourceforge.net/projects/aquarium-chung/

video => http://www.dailymotion.com/video/x52zs3w   

(25/10/2016) sea version marine aquarium_chung2.zip added

























Friday, September 2, 2016

face3D_libertybasic liberty basic demo of gui_chung_dll and speak3D_chung_dll 3D talking avatars in openGL

face3D_libertybasic is a liberty basic demo of gui_chung_dll and speak3D_chung_dll dll versions of face3D talking avatars in openGL . Contains also an example of easy creating an openGL window from a liberty basic graphicbox using gui_chung_dll .

you can find it here =>  https://sourceforge.net/projects/face3dchung/files/libertybasic/    (1.9Mo)


Wednesday, June 29, 2016

simple utf8 to ansi string freebasic program

Have a problem displaying complex utf8 encoded strings ? Have a look at this small simple freebasic program which will do the work in most simple current cases

=>  http://chungswebsite.blogspot.fr/p/utf8-to-ansi.html 

Sunday, April 24, 2016

myCesiumflight html5 webgl Cesium flight simulator

myCesiumflight chung is a small Cesium engine based 3D webgl flight simulator written in html5, css and javascript . Fly anywhere in the world with photorealistic high resolution terrain imagery and elevation heightmaps . Uses cssscale to increase fps rate. (12 fps fullscreen on my notebook) . Fetchs openstreetmap infos to display airports on radar and generate airports radio messages .Also osm bridges and buildings save / reload on startup . Works on chrome & firefox , not edge .
may work no more due to Cesium changes

latest recent version =>  http://chungswebsite.blogspot.com/2020/06/mycesiumflight-osm-openstreetmap.html   

direct play online =>  myCesiumflight_chung.html      (nothing to install, webgl must be enabled)

find the source here => https://sourceforge.net/projects/mycesiumflight/

note : your browser must support html5 localstorage

(28/05/2016) realtime openstreetmap bridges added
(05/06/2016) realtime osm buildings added
(14/06/2016) shadows+save/load buildings on startup
(15/06/2016) ballon added






















Sunday, March 27, 2016

the bidimensional complex numbers nature of world

Wondered why modern physics uses bidimensional complex numbers fourier transforms and waves probability bidimensional complex density functions.( why not one dimension, or 3,4 ?).
In fact it is due to the mathematical property that any function f(t) f(x) or f(x,y,z,t) can be decomposed as a sum of cos cosinus and sin sinus , which can be described as a sum of harmonics : cosinus with amplitude and phase (2 dimensions) for each frequency ,  amplitude*cos(twopi*frequency*t +phase)  which is fourier sum.
And so the nature of world is due to maths. 

Saturday, March 26, 2016

html5 pointillés dotted broken lines draw in canvas

heres an example of how to draw dooted broken lines (lignes pointillé) in html5 javascript canvas

  var contextx=0,contexty=0,contextpattern=0;
function context_moveTo(x,y){
  context.moveTo(x,y);
  contextx=x;contexty=y;
}
function context_lineTo(x,y){
  if(contextpattern==0){context.lineTo(x,y);}
  else if(contextpattern==2){
     var dr=20,dx=(x-contextx),dy=(y-contexty),dn=Math.sqrt(dx*dx+dy*dy)/dr;
     for(var i=0;i<dn;i++){context.moveTo(contextx+i*dx/dn,contexty+i*dy/dn);
           context.lineTo(contextx+i*dx/dn+dx*11/(dr*dn),contexty+i*dy/dn+dy*11/(dr*dn));}
     }
  else{
     var dr=10,dx=(x-contextx),dy=(y-contexty),dn=Math.sqrt(dx*dx+dy*dy)/dr;
     for(var i=0;i<dn;i++){context.moveTo(contextx+i*dx/dn,contexty+i*dy/dn);
           context.lineTo(contextx+i*dx/dn+dx*6/(dr*dn),contexty+i*dy/dn+dy*6/(dr*dn));}
     }
contextx=x;contexty=y;
}

Thursday, March 24, 2016

communicate with html iframe child window

how to easily interact communication between html parent window and child iframe window ?
use html5 localStorage if both parent and child window are in the same folder.
you can find a javascript example in my osm car sim json_osm_webcarsimheight_shadow and mystreetview

=>  http://chungswebsite.blogspot.fr/search/label/json_osm_chung     (free open source) 

Wednesday, March 9, 2016

woman3D_chung erotical nude art version of face3D_chung

woman 3D chung is an erotic nude art viewer version of face3D_chung openGL 3D avatar model creation program. ( beautifull not porn )

for 15+ years old,
personnal use only => https://womanchung.blogspot.pt/search/label/woman3D_chung         

(27/12/2016) sounds, automove added
(17/01/2018) morphobj3DS_woman version added

Thursday, February 25, 2016

2000 light years from earth

2015 light years from earth , there is not a piece of causality photon from Jesus nor from any more recent people , and the universe is million times larger. So , are men's god for man or for the universe ? or rather consider it as a worldwide shared parapsychological entity

Monday, January 25, 2016

read_chung free text to speech txt book reader with 3D avatar

read chung is a small txt reader with 70 multilingual tts text to speech voices from responsivevoice and yandextranslate and animated 3D face avatar written in html5 , javascript and uses jsc3D .
open source, no adds popups.

play it here =>  https://chungkn1400.github.io/read_chung/read_chung/read_chung_helene.html

                 =>  https://chungkn1400.github.io/read_chung/read_chung/read_chung_anne.html

                 =>  https://chungkn1400.github.io/read_chung/read_chung/read_chung_sigourney.html 

you can download it there =>  https://sourceforge.net/projects/read-chung/   (source)

find txt ebooks here => https://www.google.fr/search?q=download+txt+ebook

(15/02/2016) txt ansi format support added (default is utf-8)

Monday, December 21, 2015

3D talking avatar faces free open source chatbot game

look at my new chatbot 3D talking avatars faces i created with latest updated face3D_chung
(anne,carol,clementine,elise,evie,helene,nathalie,sasha,sigourney,sophie,valerie)

=>  https://chungkn1400.github.io/chatbot_chung_small/chatbot_chung_web/chatbot_large_iframe.html

(25/12/2015) talk3D_chung simple example of using obj models created with face3D_chung added

=>  http://chungswebsite.blogspot.fr/2014/06/face3dchung-free-3d-obj-model-with.html   


Sunday, November 29, 2015

grass nature scenary demo openGL with cross_car_chung

tips : in cross_car_chung (freeware) you can set the nature scenary grass height with ctrl+G keys and also change the grass texture (see combo)

=> cross_car_chung

=>  http://chungswebsite.blogspot.fr/p/forestchung.html  (grass + forest_chung + webgl)
 

  

Sunday, August 2, 2015

mywebglflightspace free webgl 3D space flight simulator

mywebglflightspace chung is a free webgl 3D space flight simulator with shaders written in html5 and javascript. Every single spot in the sky is an explorable stellar system with real coordinates and color from hipparcos database query (1000 nearest stars) . Explore distant nebula s .You can also shoot at other spaceships and destroy them .Can run on a small netbook.

play here => mywebglflightspace.html   

source code and files  =>  https://sourceforge.net/projects/mywebglflightspace-chung/  (20Mo)

(06/08/2015) I key : stars info (name, type)
(10/08/2015) spaceship explosions added
(11/08/2015) proxy radar added
(13/08/2015) htmlaudio support added (for iexplorer, webaudio otherwise)
(15/08/2015) load/save games menu added (source available)
(20/08/2015) export/import gamesaves to file added