Oxygen Basic

Programming => Example Code => Graphics => Topic started by: Emil_halim on April 23, 2013, 07:29:23 AM

Title: MagicProTest1
Post by: Emil_halim on April 23, 2013, 07:29:23 AM
Hi all,

Here is my first test of my MagicPro Library.

the demo will Open a screen 800*600 , then register a callback function that will run in the background of
window { it start 2d mode then set GPU shader program that draw things in back&white , then playing the movie in a background ,stop shader program ,return to 3D mode}

it set a Zip file and Media folder for holding our graphic Media , so MagicPro will search them when loading
any resource.

the doem will play my favoret song "Sandra - Infinite Kiss 2012" 

here is the source code
Code: [Select]
//****************************************//
//           ************                 //
//      ***MagicPro library***            //
//           ************                 //
//****************************************//

//includepath "$/inc/"
$ filename "MagicProTest2.exe"
#include "..\..\inc\RTL32.inc"

#include "MagicPro.inc"

sys cam,ogrehead,light,SPrg,Movie

void QueueStarted() , callback
{
Screen_Use2DView()
ML_StartShaderPrg(SPrg)
DrawMovieToScreen(Movie,0,0,800,600) 
ML_StopShaderPrg()
Screen_Stop2DView()
}

    Init("MagicPro Test #2")
    Graphics3D(800,600)
   
    defineQueueStarted(@QueueStarted)

    setMediaDir("ZipMedia.zip")
    setMediaDir("media")
   
    setAmbientLight(30.0,30.0,50.0)

    cam = CreateCamera   
    //CameraClsColor(cam,90.0,128.0,255.0)
    CameraRange(cam,1.0,1000.0)
   
    ogrehead = LoadMesh("ogrehead.mesh",0,"")
    PositionEntity(ogrehead,0.0,0.0,-150.0)
       
    light = CreateLight()
    PositionEntity(light,-200.0,200.0,50.0)
    LightColor(light,255.0,200.0,150.0)
   
    Movie = LoadMovie("Sandra - Infinite Kiss ( 2012 ).mpg")
    LoopMovie(Movie,true)
    RunMovie(Movie)
   
    SPrg = ML_CreateHLSLPrg()
    ML_EditPixelPrg(SPrg)
    ML_AddToPrg("sampler2D tex0;                                          ")
    ML_AddToPrg("float4   main(  float2 TexCoord : TEXCOORD0) : COLOR0    ")
    ML_AddToPrg("{                                                        ")
    ML_AddToPrg("       float4 col = tex2D( tex0, TexCoord );             ")
    ML_AddToPrg("       float  gry = col.r*0.299+col.g*0.587+col.b*0.184; ")
    ML_AddToPrg("       return float4(gry,gry,gry,col.a);                 ")
    ML_AddToPrg("}                                                        ")
    ML_CompilePixelPrg(SPrg,"main")
 
    while not OIS_isKeyDown(KC_ESCAPE)
     {
        DoEvents
       
        UpdateMovie(Movie)
     
        RenderWorld() 

    Sync()
     }
     
    DeleteMovie(Movie)
    EndGraphics()
   


X
Title: Re: MagicProTest1
Post by: Peter on April 24, 2013, 10:41:18 AM
Hi Emil,

This image looks good. Unfortunately I do not have the magicpro.inc.
I can not see how it runs in action! 
Title: Re: MagicProTest1
Post by: Emil_halim on April 24, 2013, 11:25:49 AM
Hi Peter,

MagicPro Library is a huge project. the only MagicPro.dll size is 6.927 MB.

any way the size of Zip working example is 46.8 Mb , i will try to upload and give you the link.
Title: Re: MagicProTest1
Post by: Peter on April 24, 2013, 11:43:25 AM
Quote
the size of Zip working example is 46.8 Mb

What, so much, is everything by you ?
Title: Re: MagicProTest1
Post by: Emil_halim on April 24, 2013, 12:44:00 PM

ofcourse not ,

here is the link http://www.4shared.com/zip/PXQJTXrM/MPtest2.html (http://www.4shared.com/zip/PXQJTXrM/MPtest2.html)

BTW MagicPro.inc is not completed yet , and MagicPro is still under development.
Title: Re: MagicProTest1
Post by: Emil_halim on April 24, 2013, 09:57:54 PM

Hi Peter ,

have you successfully downloaded it , or should i upload it to an other one?
Title: Re: MagicProTest1
Post by: JRS on April 24, 2013, 10:59:45 PM
It would be nice to upload it somewhere that doesn't install a new web search toolbar or becomes malware.

Title: Re: MagicProTest1
Post by: Peter on April 25, 2013, 01:21:47 AM
Hi Emil,

Quote
have you successfully downloaded it

No, I wanted no iLivid application or what it is.
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 08:52:13 AM

Ok , here is an other link http://bcxdx.spoilerspace.com/Oxy/MPtest2.zip (http://bcxdx.spoilerspace.com/Oxy/MPtest2.zip)
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 09:02:24 AM
Hi all,

here is second demo, it uses an other shader program called MskPrg , that will draw the movie in normal
color but with a mask that taken from red component of an other image. that movie will draw in Mouse
x & y coordinates. and over the black& white movie.

with MagicPro there is no end of your imagination. just imagine and let MagicPro does it. 

here is the code   
Code: [Select]
//****************************************//
//           ************                 //
//      ***MagicPro library***            //
//           ************                 //
//****************************************//

//includepath "$/inc/"
$ filename "MagicProTest4.exe"
#include "..\..\inc\RTL32.inc"

#include "MagicPro.inc"

sys cam,ogrehead,light,SPrg,MskPrg,mskId,Movie,hgeSprite,MousX,MousY

void QueueStarted() , callback
{
Screen_Use2DView()
ML_StartShaderPrg(SPrg)
DrawMovieToScreen(Movie,0,0,800,600) 
ML_StartShaderPrg(MskPrg)
ML_SetTexture(Image_GetPointer(mskId),1)
hgeSprite_Render(hgeSprite,MousX,MousY)
ML_StopShaderPrg()
Screen_Stop2DView()
}

    Init("MagicPro Test #4")
    Graphics3D(800,600)
   
    defineQueueStarted(@QueueStarted)

    setMediaDir("ZipMedia.zip")
    setMediaDir("media")
   
    setAmbientLight(30.0,30.0,50.0)

    cam = CreateCamera   
    CameraRange(cam,1.0,1000.0)
   
    ogrehead = LoadMesh("ogrehead.mesh",0,"")
    PositionEntity(ogrehead,0.0,0.0,-150.0)
       
    light = CreateLight()
    PositionEntity(light,-200.0,200.0,50.0)
    LightColor(light,255.0,200.0,150.0)
   
    Movie = LoadMovie("Sandra - Infinite Kiss ( 2012 ).mpg")
    LoopMovie(Movie,true)
    RunMovie(Movie)
   
    SPrg = ML_CreateHLSLPrg()
    ML_EditPixelPrg(SPrg)
    ML_AddToPrg("sampler2D tex0;                                          ")
    ML_AddToPrg("float4   main(  float2 TexCoord : TEXCOORD0) : COLOR0    ")
    ML_AddToPrg("{                                                        ")
    ML_AddToPrg("       float4 col = tex2D( tex0, TexCoord );             ")
    ML_AddToPrg("       float  gry = col.r*0.299+col.g*0.587+col.b*0.184; ")
    ML_AddToPrg("       return float4(gry,gry,gry,col.a);                 ")
    ML_AddToPrg("}                                                        ")
    ML_CompilePixelPrg(SPrg,"main")
   
    sys id = GetImageIDOfMovie(Movie)
    single imgh = Image_GetHeight id 
    single imgw = Image_GetWidth id 
    hgeSprite = make_hgeSprite(id,0.0,0.0,imgw,imgh)
   
    mskId = Image_GetFreeID()
    Image_load ( mskId , "irr_media/lightFalloff.png")
    MskPrg = ML_CreateHLSLPrg()
    ML_EditPixelPrg(MskPrg)
    ML_AddToPrg("sampler2D tex0;                                          ")
    ML_AddToPrg("sampler2D tex1;                                          ")
    ML_AddToPrg("float4   main(  float2 TexCoord : TEXCOORD0) : COLOR0    ")
    ML_AddToPrg("{                                                        ")
    ML_AddToPrg("       float4 c1 = tex2D( tex0, TexCoord );              ")
    ML_AddToPrg("       float4 c2 = tex2D( tex1, TexCoord );              ")
    ML_AddToPrg("       return float4(c1.r,c1.g,c1.b,c2.r);               ")
    ML_AddToPrg("}                                                        ")
    ML_CompilePixelPrg(MskPrg,"main")
   
    while not OIS_isKeyDown(KC_ESCAPE)
     {
        DoEvents
       
        MousX = OIS_mouseX()
       
        MousY = OIS_mouseY()
       
        UpdateMovie(Movie)
     
        RenderWorld() 

    Sync()
     }
     
    DeleteMovie(Movie)
    EndGraphics()
 

X
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 09:03:55 AM
Quote
Ok , here is an other link

Thanks!

It seems everything you click on these days comes with junk in the trunk.
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 09:09:49 AM

Hi John,

did it download and worked with you?
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 09:11:47 AM
Yes to the first part of your question and working on the second part.  :D
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 10:26:51 AM
I'm getting a DLL mismatch error when you have provided a more current version than what the error dialog is asking for.



X
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 10:33:04 AM
John,

I see that your system uses and required an older version of D3DX9.

you have 2 solutions , 1- download this dll form net  D3DX9_35.dll
2- rename D3DX9_42.dll that in zip to  D3DX9_35.dll
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 10:46:44 AM
Took your advice and renamed the DLL. Where I'm at now.





X
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 10:55:28 AM

ok , does the one comes with zip work with you ? , if yes that will be strange thing.

any way here is version 35 got it from net try it.

X
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 11:22:46 AM
I placed the DLL in both the working and WinXP/System32 directories and I'm still getting the error dialog from my last post.

Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 11:31:58 AM

ok , does version d3dx9_42 still  in the folder of exe. my be it cause this error , so make a copy of d3dx9_35  then rename it to d3dx9_42.

BTW , you did not answered my question , does the original one worked with you?   
 
Title: Re: MagicProTest1
Post by: JRS on April 25, 2013, 01:04:31 PM
Quote
BTW , you did not answered my question , does the original one worked with you?

1. Unzip original MagicPro zip into a directory and ran it. Said it was missing an earlier version of the DLL.

2. You had me rename the supplied DLL to the earlier version number and retry.

3. I then tried the DLL you sent with no positive results.

Quote
so make a copy of d3dx9_35  then rename it to d3dx9_42.

That returns me to asking for the _35 version.  :(
Title: Re: MagicProTest1
Post by: Emil_halim on April 25, 2013, 11:02:04 PM

sorry john , i was not clear enough in my last post.

here it is again.
1- erase d3dx9_42 from original   MagicPro zip
2- put d3dx9_35 that i sent in MagicPro folder
3- make an other copy of d3dx9_35 , so you have 2 dlls in the same time d3dx9_35  and copy of d3dx9_35.
4- rename the copy one to d3dx9_42 which needed by MagicPro

that is all , you system require d3dx9_35 and MagicPro needs d3dx9_42 which is incompatible with your
system , so we replace it by old one then rename it to  d3dx9_42 which MagicPro need .

good luck john.
Title: Re: MagicProTest1
Post by: Emil_halim on May 11, 2013, 12:05:40 PM
Hi all,

I was vanishing for a while , but i am here again.

Here is my latest test for MagicPro , it uses irrlicht for playing 2 3d objects , ninja (is a b3d file fromat) and
dragon (is a MD2 file format).

also uses indieLib for render indie 2d entity ( loading  octopus image in indie surface the assign it to
a 2d Entity)

Here is the source code of the demo , screen shot in the botton.

//****************************//
//           ************                  //
//      ***MagicPro library***             //
//           ************                  //
//****************************//

//includepath "$/inc/"
$ filename "INDtest1.exe"
#include "..\..\inc\RTL32.inc"

#include "MagicPro.inc"

sys cam,ogrehead,light,SPrg,MskPrg,mskId,Movie,hgeSprite,MousX,MousY
sys IND_Surf,IND_Entty2d


void QueueStarted() , callback
{
   Screen_Use2DView()
   ML_StartShaderPrg(SPrg)
   DrawMovieToScreen(Movie,0,0,1024,768) 
   ML_StartShaderPrg(MskPrg)
   ML_SetTexture(Image_GetPointer(mskId),1)
   hgeSprite_Render(hgeSprite,MousX,MousY)
   ML_SetTexture(0,1)
   ML_StopShaderPrg()
   IND_RenderEntities2d()
   Screen_Stop2DView()
}

void QueueMain() , callback
{   
     IrrDrawSceneEx(   RenderLights |  RenderDefaultObjects)
}

    Init("MagicPro IndieLib Test #1")
    Graphics3D(1024,768)
   
    defineQueueStarted(@QueueStarted)
    defineQueueMain(@QueueMain)

    setMediaDir("ZipMedia.zip")
    setMediaDir("media")
   
    setAmbientLight(30.0,30.0,50.0)

    cam = CreateCamera   
    CameraRange(cam,1.0,1000.0)
   
    ogrehead = LoadMesh("ogrehead.mesh",0,"")
    PositionEntity(ogrehead,0.0,0.0,-150.0)
           
    light = CreateLight()
    PositionEntity(light,-100.0,100.0,0.0)
    LightColor(light,255.0,200.0,150.0)
   
    Movie = LoadMovie("Sandra - Infinite Kiss ( 2012 ).mpg")
    LoopMovie(Movie,true)
    RunMovie(Movie)
   
    SPrg = ML_CreateHLSLPrg()
    ML_EditPixelPrg(SPrg)
    ML_AddToPrg("sampler2D tex0;                                          ")
    ML_AddToPrg("float4   main(  float2 TexCoord : TEXCOORD0) : COLOR0    ")
    ML_AddToPrg("{                                                        ")
    ML_AddToPrg("       float4 col = tex2D( tex0, TexCoord );             ")
    ML_AddToPrg("       float  gry = col.r*0.299+col.g*0.587+col.b*0.184; ")
    ML_AddToPrg("       return float4(gry,gry,gry,col.a);                 ")
    ML_AddToPrg("}                                                        ")
    ML_CompilePixelPrg(SPrg,"main")
   
    sys id = GetImageIDOfMovie(Movie)
    single imgh = Image_GetHeight id 
    single imgw = Image_GetWidth id 
    hgeSprite = make_hgeSprite(id,0.0,0.0,imgw,imgh)
   
    mskId = Image_GetFreeID()
    Image_load ( mskId , "irr_media/lightFalloff.png")
    MskPrg = ML_CreateHLSLPrg()
    ML_EditPixelPrg(MskPrg)
    ML_AddToPrg("sampler2D tex0;                                          ")
    ML_AddToPrg("sampler2D tex1;                                          ")
    ML_AddToPrg("float4   main(  float2 TexCoord : TEXCOORD0) : COLOR0    ")
    ML_AddToPrg("{                                                        ")
    ML_AddToPrg("       float4 c1 = tex2D( tex0, TexCoord );              ")
    ML_AddToPrg("       float4 c2 = tex2D( tex1, TexCoord );              ")
    ML_AddToPrg("       return float4(c1.r,c1.g,c1.b,c2.r);               ")
    ML_AddToPrg("}                                                        ")
    ML_CompilePixelPrg(MskPrg,"main")
   
    sys mesh,node,node2
    mesh = IrrGetMesh("irr_media/ninja.b3d",true)
    node = IrrAddMeshToScene(mesh)
    IrrSetNodePosition(node,0.0,0.0,-80.0)
    IrrSetNodeMaterialFlag(node,IRR_EMF_LIGHTING,true)
   
    mesh = IrrGetMesh("irr_media/dragon.md2",true)
    node2 = IrrAddMeshToScene(mesh)
    id = Image_GetFreeID()
    Image_load(id,"irr_media/dragon.bmp")
    sys IrrTxt = Image_GetIrrTexture(id)
    IrrSetNodeMaterialTexture( node2 ,IrrTxt)
    IrrSetNodePosition(node2,-30.0,0.0,-80.0)
    IrrSetNodeScale(node2,0.25,0.25,0.25)
    IrrSetNodeRotation(node2,0.0,-90.0,0.0)
   
    IrrSetAmbientLight(1.0,1.0,1.0) 
     
   
   
    IND_Surf = IND_NewSurface() 
    IND_SurfaceMgrAdd(IND_Surf, "octopus.png", IND_ALPHA, IND_32)
    IND_Entty2d = IND_NewEntity2d()
    IND_Entity2dMgrAdd(IND_Entty2d)
    IND_Entity2dSetSurface(IND_Entty2d,IND_Surf)
    IND_Entity2dSetPosition(IND_Entty2d,700.0, 270.0, 0)   
     
    while not OIS_isKeyDown(KC_ESCAPE)
     {
        DoEvents
       
        MousX = OIS_mouseX()
       
        MousY = OIS_mouseY()
       
         
        RenderWorld() 
       
       Sync()
     }
     
    DeleteMovie(Movie)
    EndGraphics() 

X