Oxygen Basic

Programming => Example Code => Topic started by: Patrice Terrier on January 22, 2015, 10:30:58 AM

Title: Wavefront object viewer
Post by: Patrice Terrier on January 22, 2015, 10:30:58 AM
The whole project has been moved to its own dedicated server here. (http://www.objreader.com)

...



Title: Re: Wavefront object viewer
Post by: Frankolinox on January 23, 2015, 01:34:17 AM
thank you patrice I will check it next days.. and perhaps I will get an idea to load wavefront object data with oxygen too :)

I've translated over the last years some (more winapi/gui + openGL) examples from powerbasic to oxygenbasic and I was wondering why it's not possible to load *.MTL files  with oxygen that's my intention for next weeks/month..

regards, frank
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 24, 2015, 04:11:10 AM
Thanks again, Patrice.

Work in progress:  :)

Code: OxygenBasic
  1. /*
  2.  
  3.   http://en.wikipedia.org/wiki/Wavefront_.obj_file
  4.  
  5.   Hunter and Dog Model
  6.   http://www.turbosquid.com/3d-models/free-scan-statue-hunter-dog-3d-model/791511
  7.  
  8. */
  9.  
  10.   #compact
  11.  '#file "t.exe"
  12.  % filename "t.exe"
  13.   % Title "STL VIEWER (F1 Help  F5 Render)"
  14.  '% WindowOpacity 240 'max 255
  15. '% Animated
  16.  % ScaleUp
  17.  '% PlaceCentral
  18. '% AnchorCentral
  19. '% NoEscape
  20.  % ColorCodedPick
  21.   '
  22.  % SymbolTerm 47 '- /' self delimited symbols
  23.  
  24.   includepath "$/inc/"
  25.  'include     "RTL64.inc"
  26.  include     "ConsoleG.inc"
  27.   include     "ParseUtil.inc"
  28.  
  29.   'STRUCTURES
  30.  '==========
  31.  type Vertex3d float x,y,z
  32.   type Vertex4d float x,y,z,w
  33.   '
  34.  string ObjFilename ' loaded file
  35.  string status      ' info about file
  36.  string er          ' info about errors
  37.  float  smin        ' min scalar size (incl negatives)
  38.  float  smax        ' max scalar size
  39.  sys    minmax      ' flag for smin and smax
  40.  string d           'BUFFER FOR DATA TEXT
  41.  sys    i           'SOURCE STRING INDEX
  42.  sys    p           'SOURCE STRING POINTER
  43.  float  c
  44.   '
  45.  macro ReadVal(v)
  46.   ================
  47.   'READ NUMBERS DIRECTLY FROM STL STRING
  48.  skiplspace d,i
  49.   v=valat p+i
  50.   StepWord d,i 'READY FOR NEXT WORD
  51.  if minmax then
  52.     if v<smin then smin=v
  53.     if v>smax then smax=v
  54.   end if
  55.   end macro
  56.   '
  57.  sub ReadVertex3D(vertex3d*ve)
  58.   =============================
  59.   readval ve.x
  60.   readval ve.y
  61.   'CHECK FOR OPTIONAL VALUE
  62.  skiplspace d,i
  63.   if ascb>32 then
  64.     readval ve.z
  65.   else
  66.     ve.z=0.0
  67.   end if
  68.   'ITR OPTIONAL VERTEX COLORS
  69.   end sub              
  70.   '
  71.  sub ReadVertex4D(vertex4d*ve)
  72.   =============================
  73.   readval ve.x
  74.   readval ve.y
  75.   readval ve.z
  76.   'CHECK FOR OPTIONAL VERTEX
  77.  skiplspace d,i
  78.   if ascb>32 then
  79.     readval ve.w
  80.   else
  81.     ve.w=1.0
  82.   end if
  83.   'ITR OPTIONAL VERTEX COLORS
  84.  end sub
  85.   '
  86.  macro RenderVertex
  87.   ==================
  88.   @f=pu[k] : if @f then glTexCoord2fv f
  89.   @f=pn[k] : if @f then glNormal3fv   f
  90.   @f=pm[k] : if @f then glVertex3fv   f
  91.   end macro
  92.   '
  93.  macro ReadFace()
  94.   ================
  95.   j=1
  96.   vj=1
  97.   sg=0
  98.   do
  99.     skiplspace d,i
  100.     select ascb
  101.     case 0  to 31 : exit do 'END OF LINE
  102.    case 45       : sg=1 : i=sttw+1    'MAKE VERTEX INDEX RELATIVE
  103.    case 47       : vj++    'ADDITIONAL INDEX
  104.    case 46,48 to 57 :      'NUMBERS
  105.      vn=valat p+i
  106.       if sg then
  107.         vn=vim[vj]-vn+1 'RELATIVE TO ABSOLUTE INDEX
  108.      end if
  109.       select vj
  110.       case 1 : pm[j]=@vtm[vn] : j++
  111.       case 2 : pu[j]=@vtu[vn]
  112.       case 3 : pn[j]=@vtn[vn]
  113.       end select
  114.       vi=0
  115.       sg=0
  116.     end select
  117.     if j>5 then 'LIMIT TO QUAD
  118.      endline d,i
  119.       exit do
  120.     else
  121.       stepword d,i
  122.     end if
  123.   end do
  124.   j-=1
  125.   end macro
  126.   '
  127.  sub SurfaceNormal(vertex4d*n, sys*pm)
  128.   =====================================
  129.   'see OpenGlSceneFrame.inc
  130.  'assumes triangle points are defined anticlockwise
  131.  vector u,v
  132.   vector p1 at pm[1]
  133.   vector p2 at pm[2]
  134.   vector p3 at pm[3]
  135.   VectorDiff(u,p1,p2)
  136.   VectorDiff(v,p1,p3)
  137.   n.x=(u.y*v.z)-(u.z*v.y)
  138.   n.y=(u.z*v.x)-(u.x*v.z)
  139.   n.z=(u.x*v.y)-(u.y*v.x)
  140.   end sub
  141.   '
  142.  macro RenderFace()
  143.   ==================
  144.   ReadFace
  145.   select j
  146.   case 3  :
  147.     glBegin GL_TRIANGLES
  148.     if cn=0 then
  149.       SurfaceNormal vfn,pm
  150.       @f=@vfn : glNormal3fv f
  151.     end if
  152.     for k=1 to 3
  153.       RenderVertex
  154.     next
  155.     glEnd
  156.   case 4  :
  157.     glBegin GL_QUADS
  158.     if cn=0 then
  159.       SurfaceNormal vfn,pm
  160.       @f=@vfn : glNormal3fv f
  161.    end if
  162.     for k=1 to 4
  163.       RenderVertex
  164.     next
  165.     glEnd
  166.   case else :
  167.     'ITR NOT SUPPORTED
  168.  end select
  169.   end macro
  170.   '
  171.  macro ignore()
  172.   ==============
  173.   :
  174.   end macro
  175.   '
  176.  macro CountData()
  177.   =================
  178.   i=1
  179.   le=len d
  180.   cm=0 : cu=0 : cn=0 : cp=0 : cf=0
  181.   do
  182.     StepWord d,i
  183.     if i>=le then exit do 'NO MORE WORDS
  184.    select ascb
  185.     case "v"
  186.       @b=p+sttw+1
  187.       select b
  188.       case "#"  : 'SKIP COMMENT
  189.      case 9,32 : cm++
  190.       case "t"  : cu++
  191.       case "n"  : cn++
  192.       case "p"  : cp++
  193.       end select
  194.     case "f" : cf++ 'COLLECT OR PASS TO OPENGL
  195.    end select
  196.     EndLine d,i
  197.   end do
  198.   end macro
  199.   '
  200.  macro ReadLines()
  201.   =================
  202.   i=1
  203.   smin=0 : smax=0
  204.   do
  205.     StepWord d,i
  206.     if i>=le then exit do 'NO MORE WORDS
  207.    select ascb
  208.     case "v"
  209.       @b=p+sttw+1
  210.       select b
  211.       case "#"  : ignore   'SKIP COMMENT
  212.      case 9,32 : minmax=1 :
  213.                 : vim[1]++ : ReadVertex4D vtm[vim[1]]
  214.                 : minmax=0
  215.       case "t"  : vim[2]++ : ReadVertex3D vtu[vim[2]]
  216.       case "n"  : vim[3]++ : ReadVertex4D vtn[vim[3]]
  217.       case "p"  : vim[4]++ : ReadVertex4D vtp[vim[4]]
  218.       end select
  219.     case "f" : RenderFace : 'COLLECT OR PASS TO OPENGL
  220.    case "m" : ignore 'mtllib
  221.    case "u" : ignore 'usemtl
  222.    case "o" : ignore 'OBJECTS
  223.    case "g" : ignore 'GROUPS
  224.    end select
  225.     EndLine d,i
  226.   end do
  227.   end macro
  228.   '
  229.  macro FreeBuffers()
  230.   ===================
  231.   if @vtm then FreeMemory @vtm
  232.   if @vtu then FreeMemory @vtu
  233.   if @vtn then FreeMemory @vtn
  234.   if @vtp then FreeMemory @vtp
  235.   end macro
  236.   '
  237.  macro NewBuffers()
  238.   ==================
  239.   FreeBuffers
  240.   @vtm = GetMemory cm*sizeof(Vertex4D)
  241.   @vtu = GetMemory cu*sizeof(Vertex3D)
  242.   @vtn = GetMemory cn*sizeof(Vertex4D)
  243.   @vtn = GetMemory cp*sizeof(Vertex4D)
  244.   end macro
  245.   '
  246.  
  247.   function RenderObj()
  248.   ====================
  249.   '
  250.  sys    j,k         'INDEXES AND ITERATORS
  251.  sys    m,n,q       'GENERIC
  252.  sys    sg          'NEG SIGN FLAG FOR RELATIVE VERTEX INDEX
  253.  sys    vj          'VERTEX ARRAY SELECTOR
  254.  sys    vn          'VERTEX INDEX
  255.  float  *f          'FOR GL DATA POINTER
  256.  float  v           'GENERIC
  257.  byte   *b          'SOURCE STRING BYTE READER
  258.  sys    pm[4]       'POINTER TO VERTEX
  259.  sys    pn[4]       'POINTER TO NORMAL
  260.  sys    pp[4]       'POINTER TO PARAMETRIC VECTOR / ITR
  261.  sys    pu[4]       'POINTER TO TEX COORD
  262.  sys    vim[3]      'MAX VERTEX COUNT FOR MAINS,TEXTURES,NORMALS
  263.  sys cf,cm,cu,cn,cp 'COUNTERS
  264.  sys    t1,t2       'TIMERS
  265.  '
  266.  t1=GetTickCount
  267.   '
  268.  Vertex4d vfn       'DEFAULT FACE NORMAL
  269.  Vertex4d *vtm      'FOR GLVERTEX
  270.  Vertex3d *vtu      'FOR GLTEXCOORD
  271.  Vertex4d *vtn      'FOR GLNORMAL
  272.  Vertex4d *vtp      'FOR PARAMETRIC VECTOR
  273.  '
  274.  GetFile ObjFileName,d
  275.   le=len d
  276.   if not le then
  277.     er="Problem accessing file " ObjFileName
  278.     jmp fwd done
  279.   end if
  280.   p=strptr(d)-1
  281.   @b=p 'SOURCE BYTES
  282.  CountData
  283.   string sp="  " ' or tab
  284.  if not cf then
  285.     jmp fwd done
  286.   end if
  287.   NewBuffers
  288.   ReadLines
  289.   FreeBuffers
  290.   done:
  291.   t2=GetTickCount
  292.   status= _
  293.   "Faces: " sp cf sp _
  294.   "Vert:  " sp cm sp _
  295.   "Tex:   " sp cu sp _
  296.   "Norm:  " sp cn sp _
  297.   "Scalar:" sp str(smax-smin,4) sp _
  298.   "mSec:" sp str(t2-t1) sp _
  299.   ""
  300.   if er then status=er
  301.   er=""
  302.   end function
  303.   '
  304.  
  305.   function BuildForm(sys fun) as sys
  306.   '=================================
  307.  '
  308.  'FOR SINGLE OBJECT IN ONE LIST
  309.  '
  310.  static sys list
  311.   if not fun then return 0
  312.   list = CompileList list
  313.   call fun
  314.   glEndList
  315.   return list
  316.   end function
  317.  
  318.   function main()
  319.   ===============
  320.   '
  321.  static sys    shape
  322.   static string inputs="hunter.obj"
  323.  
  324.   cls 0,0.20,0.20
  325.   picksetup
  326.  
  327.   shading
  328.   pushstate
  329.   static MoveableObject mover
  330.   if not mover.id then
  331.     mover.set 0x10000,0,0,0,0
  332.     mover.a.y =180
  333.     mover.aa.y=180
  334.   end if
  335.   sys dt=15
  336.   move dt,-dt*1.5,-dt -1
  337.   mover.act
  338.   'GoldMaterial.act
  339.  'SilverMaterial.act
  340.  'RedShinyMaterial.act
  341.  WhiteShinyMaterial.act
  342.   'go sphere
  343.  float f=smax-smin
  344.   if f then scale 1.25*dt/f
  345.   'scale 1,1,-1.0 'REVERSE Z
  346.  go shape
  347.   popstate
  348.   '
  349.  'LINE INPUT
  350.  '
  351.  flat
  352.   PushState
  353.   color .20,.80,.00,.88
  354.   Scale 1.0
  355.   print "File: "
  356.   color .80,.80,.00,.88
  357.   a=input inputs
  358.   if key(0x74) 'F5
  359.    Objfilename=inputs
  360.     shape=BuildForm(@RenderObj)
  361.     key(0x74)=0 'single shot
  362.  end if
  363.   scale .75
  364.   printl status
  365.   PopState
  366.   printl
  367.   printl
  368.   printl
  369.   '
  370.  '
  371.  shading 'opposite of flat
  372.  '
  373.  '
  374.  'F1 HELP
  375.  '
  376.  if key[0x70]
  377.     flat
  378.     pushstate
  379.     move 20,0
  380.     color .9,.9,.9
  381.     scale  1.5,1.0
  382.     printl "Active Keys:"
  383.     printl
  384.     scale  1/1.5,1.0
  385.     printl "Esc"    tab "Exit"
  386.     printl "Ctrl-P" tab "Take snapshot"
  387.     printl "F1 This help panel"
  388.     printl "F5 Exec function"
  389.     printl
  390.     scale 1.5,1.0
  391.     printl "Mouse:"
  392.     scale 1/1.5,1.0
  393.     printl "Point to Object, then"
  394.     printl "Left button to Rotate"
  395.     printl "Right button to Move"
  396.     popstate
  397.   end if
  398.   picklabel 0
  399.   lastkey=0
  400.   lastchar=0
  401.  
  402.   end function
  403.  
  404.   EndScript
  405.  


.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 24, 2015, 07:59:45 AM
Well, the oxy 64bit standalone is not perfect, but this will do for demonstration purposes. The load time for this model on my PC is around 2.3 seconds. I am using classical OpenGl. One of the CPU cores gets fully engaged whenever the model is moved.

I use 4 sample anti-aliasing, which is good for most applications.  The next task is to support materials with mtl files
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 24, 2015, 12:45:13 PM
Thanks Patrice,

On my rather ancient and diminutive NVidia GT9, I don't see any flickering or slowness. It runs as smooth as double cream. So I wonder what could be causing these problems.

I'm making a few more corrections. Harley is now working.


.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 25, 2015, 02:14:42 AM
Thanks for your observations, Mike. The world of 3d modellers is new territory for me, apart from some Daz, and the procedural POV-Ray, a few years ago.

I hope I have anticipated most syntax irregularities by using a full parser (inc/ParseUtil.inc), originally sequestered from Lispish :)

I think obj files would be adequate for 3d printing but is there a better modelling format, in your view, we can focus on?

PS: I'm working on a standard set of navigation and model manipulation control by mouse and keyboard. Left and right button functions are easily swapped.

Good luck with your land-line internet!

Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 25, 2015, 02:40:15 AM
Hi Patrice,

This is the multisampling configuration used in the code. Is there anything in it which might be disruptive to your graphics system?

Code: OxygenBasic
  1.   function SelectMultiSample(sys ns)
  2.   ==================================
  3.   '
  4.  'IDENTIFY MULTISAMPLING FORMAT
  5.  'http://www.opengl.org/wiki/Creating_an_OpenGL_Context#Proper_Context_Creation
  6.  int attribs[]=
  7.   {
  8.     0x2001,1,      'WGL_DRAW_TO_WINDOW_ARB, GL_TRUE,
  9.    0x2010,1,      'WGL_SUPPORT_OPENGL_ARB, GL_TRUE,
  10.    0x2011,1,      'WGL_DOUBLE_BUFFER_ARB, GL_TRUE,
  11.    0x2013,0x202B, 'WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB,
  12.    0x2014,32,     'WGL_COLOR_BITS_ARB, 32,
  13.    0x2022,24,     'WGL_DEPTH_BITS_ARB, 24,
  14.    0x2023,8,      'WGL_STENCIL_BITS_ARB, 8,
  15.    0x2041,1,      'WGL_SAMPLE_BUFFERS_ARB, 1, //Number of buffers (must be 1 at time of writing)
  16.    0x2042,ns,     'WGL_SAMPLES_ARB, 4,        //Number of samples
  17.    0x0000,0       'terminate list
  18.  }
  19.   sys p,a,n
  20.   p=wglGetProcAddress "wglChoosePixelFormatARB"
  21.   if p
  22.     call p(hdc, &attribs, null, 1, &a, &n)
  23.     if n then pixelForm=a : return-1 'supporting multisample / antialias
  24.  end if
  25.   end function
  26.  
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 25, 2015, 07:07:58 PM
Have you ever encountered Collada? (Digital Asset and FX Exchange Schema)

It seems to cover everything that is conceivable!
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 26, 2015, 08:29:53 AM
Arc170 with its textures:

.
Title: Re: Wavefront object viewer
Post by: Frankolinox on January 26, 2015, 10:38:36 AM
hi charles, something doesn't work here with your objectviewer example, I cannot run the oxygen example because of this error:

"parseutil.inc", line 188, symbolterm "must use a const expression"
(see picture below)

does the example works for elder machines (32bit) too?

regards, frank

.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 26, 2015, 11:56:06 AM
Hi Frank,

I'm still making changes to various source utilities, which is why I'm not posting much code here.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 26, 2015, 03:42:33 PM

Hi Patrice, good luck!

I am using your pixel format ARB settings,, except for 24 bit depth buffer instead of 16. I hope it will improve performance on your nVidia. Currently using 4 samples.


Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 28, 2015, 01:47:38 PM
A little more progress..

.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 31, 2015, 04:32:16 AM
Hi Patrice,

Glad you were able to complete your C++ port.

The CVL/MKL functions. do not fit well into C languages. I left them out of OxygenBasic, because Array overlays, (absolute arrays in PB terms) perform the same operations much more efficiently.

For example
Code: OxygenBasic
  1. string s=nuls 1000 'buffer of 1000 null bytes
  2. long v at strptr(s)+64 'long array overlay at offset 64
  3. v[1]=4
  4. v[2]=8
  5.  

I'm waiting for WebGl to mature before diving in - seen a few flops in the past such as vrml and x3d. But, with solid backing, I hope it will stay.


Title: Re: Wavefront object viewer
Post by: Frankolinox on January 31, 2015, 11:12:29 AM
hi charles, I've tried the new "objectviewer.o2bas" example. the example runs but when I am trying to render example (F5) I've got an error with "gxo2.exe" and abort the application.

regards, frank

.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on January 31, 2015, 10:59:25 PM
Hi Frank,

From your screen shot, I notice that the cursor seems to cover the first character of the filename. What hardware are you using?

Are you able to load any of the other models?

I am using Patrice's Obj viewer opengl pixel format, with multisamples set to 4

from winutil.inc
Code: OxygenBasic
  1.   {
  2.     0x2001,01,     'WGL_DRAW_TO_WINDOW_ARB, GL_TRUE,
  3.    0x2010,01,     'WGL_SUPPORT_OPENGL_ARB, GL_TRUE,
  4.    0x2011,01,     'WGL_DOUBLE_BUFFER_ARB, GL_TRUE,
  5.   '0x2013,0x202B, 'WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB,
  6.    0x2014,24,     'WGL_COLOR_BITS_ARB, 24,
  7.    0x201B,08,     'WGL_ALPHA_BITS_ARB, 08,
  8.    0x2022,24,     'WGL_DEPTH_BITS_ARB, 24,
  9.    0x2023,08,     'WGL_STENCIL_BITS_ARB, 08,
  10.    0x2041,01,     'WGL_SAMPLE_BUFFERS_ARB, 01, //Number of buffers (must be 1 at time of writing)
  11.    0x2042,ns,     'WGL_SAMPLES_ARB, 04,        //Number of samples
  12.    0x0000,00      'terminate list
  13.  }
  14.  



.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 01, 2015, 02:25:19 PM
Hi Mike,

My viewer currently has no respect for filepaths in retrieving mtl and texture files. I think this accounts for your results with Arc170 and R2D2. But good news that the graphics work on all those different systems. Thank you!




With regard to OxyScheme, I have been trying to resolve some semantic inconsistencies in O2 obtaining addresses. The @ operator should always be used when the address of a function/variable/label is required, but not otherwise.

Thus:

Line 96
  FILE* _iob = __p__iob()
equiv at syntax
  FILE _iob at __p__iob()

Line 178 & 179
  quad    num_ivalue(sys p) at @num_ivalue_asm
  double  num_rvalue(sys p) at @num_rvalue_asm

Line 471
  ! function atoll        (char* a) as quad at @atoll_asm


Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 01, 2015, 04:17:12 PM
Hi Patrice,

I have very skeletal examples using Vertex buffer objects and shaders. To compile in 64 bit code, I had to ensure that all my integer array buffers were 32 bit (especially for glGenBuffers(..) ).

After that, I was able to compile, link and run your vertex shader in a 64 bit binary.  - I used text files for the vertex and fragment shaders, rather than inline strings.

So OpenGL must be the innocent party and the problem lies somewhere with C++

vertex shader in plain text
Code: [Select]
#version 110
varying vec3 normal;
void main()
{
  normal = normalize(gl_NormalMatrix * gl_Normal);
  gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
  gl_TexCoord[0] = gl_MultiTexCoord0;
}
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 14, 2015, 05:15:06 AM
Very smooth!

I have not yet managed to render ironman. Even if materials and lighting are suppressed, my Object viewer will not show the main surface.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 14, 2015, 09:51:45 AM

Quote
Would you like to look at my (VISUAL STUDIO) C++ 64-bit version source code, may be that could help you ?

Yes please, Patrice :)

I will also try out some smaller models. It is hard to do diagnostics on such huge data.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 15, 2015, 02:49:35 PM
Thanks Patrice, I will study tomorrow - (Monday).
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 24, 2015, 04:19:19 AM
Hi Patrice,

Chrome is quite tricky to render. Since none of my neighbours own a Cadillac, I went off to study my bathroom taps :). Perhaps the best way is have high specular light and s streaky texture to serve as a pseudo-reflective surface.

To get a simple profile of Opengl's specular effects, I made a chart of spheres . The top row uses 100% specular material, with shininess values going 1 2 4 8 16 ..256.

The following rows reduce specular material in favour of diffuse material.

ProjectsA/OpenglCns/Shininess1.o2bas
Code: OxygenBasic
  1.   % Title "Sphere Mapping Demo"
  2.   % Animated
  3.   % ScaleUp
  4.  '% PlaceCentral
  5. '% AnchorCentral
  6.  include "$\inc\ConsoleG.inc"
  7.  
  8.  
  9.   sub main()
  10.   ==========
  11.   static sys   imgn,res,wi,ht
  12.   static sys   defmat,m
  13.   static float angx,angy
  14.   static float ma[13] 'for material
  15.  static float amb,namb
  16.   float f1,f2,f3
  17.   if not defmat
  18.     defmat=1
  19.     amb=.0
  20.     namb=1.0-amb
  21.     ma[1]={amb,amb,amb,1.} 'ambient
  22.  end if
  23.   cls 0,.0,0
  24.   pushstate
  25.   move -2,3,-4.0
  26.   shading
  27.   for j=1 to 8
  28.     pushstate
  29.     move 0,-4*j
  30.     m=1
  31.     for i=1 to 8
  32.       pushstate
  33.       move 4.1*i
  34.       scale 2
  35.       rotateY angY
  36.       f1=namb*j/8
  37.       f2=namb-f1
  38.       f3=m
  39.       m+=m 'log scale 1 2 4 8 16 .. 256
  40.      ma[5]={f1,f1,f1,1} 'diffuse
  41.      ma[9]={f2,f2,f2,1} 'specular
  42.      ma[13]=f3 'shininess
  43.      material ma
  44.       go sphere
  45.       popstate
  46.     next
  47.     popstate
  48.   next
  49.   popstate
  50.   angx+=.100 : if angx>=360 then angx-=360
  51.   angy+=.125 : if angy>=360 then angy-=360
  52.   end sub 'main
  53.  
  54.   EndScript
  55.  



.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 24, 2015, 02:11:58 PM
Patrice,

I can smell the chrome polish and the car wax :)

Must discover the secrets of mapping reflections over a curved surface..
Title: Re: Wavefront object viewer
Post by: Charles Pegge on February 26, 2015, 04:07:16 AM

With regard to creating environments for these models with reflective surfaces:

Cube Map OpenGL Tutorial

(http://www.nvidia.com/docs/IO/1101/guts.jpg)

http://www.nvidia.com/object/cube_map_ogl_tutorial.html
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 01, 2015, 02:57:42 PM
Hi Mike,

Do you have any material on cubic reflection mapping? Then the face of the Cadillac owner may be reflected in the windscreen and chrome fittings :)

I am currently hacking my way into OpenGl shaders.

Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 02, 2015, 02:21:27 AM

Many thanks for the references, Mike.

It take an awesome amount of code to put up a few pixels :)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 05, 2015, 05:02:52 AM
Getting to grips with shaders:

This one looks very useful, for me at least, since it combines texture, and ambient,diffuse and specular lighting.

Code: OxygenBasic
  1.   '
  2.  'MULTIPLE LIGHT SHADER
  3.  '=====================
  4.  '
  5.  vs[4]=
  6.   "
  7.   varying vec3 vN;
  8.   varying vec3 v;
  9.   varying vec2 texCoord;
  10.   void main(void)  
  11.   {    
  12.     texCoord = gl_MultiTexCoord0;
  13.     v  = vec3(gl_ModelViewMatrix * gl_Vertex);      
  14.     vN = normalize(gl_NormalMatrix * gl_Normal);
  15.     gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;  
  16.   }
  17.   "
  18.   fs[4]=
  19.   "
  20.   uniform sampler2D textureUnit;
  21.   varying vec3 vN;
  22.   varying vec3 v;
  23.   varying vec2 texCoord;
  24.   #define MAX_LIGHTS 3
  25.   void main (void)
  26.   {
  27.     vec3 N = normalize(vN);
  28.     vec4 finalColor = vec4(0.1, 0.4, 0.0, 0.0);
  29.    
  30.     for (int i=0;i<MAX_LIGHTS;i++)
  31.     {
  32.       vec3 L = normalize(gl_LightSource[i].position.xyz - v);
  33.       vec3 E = normalize(-v); // we are in Eye Coordinates, so EyePos is (0,0,0)
  34.       vec3 R = normalize(-reflect(L,N));
  35.    
  36.       //calculate Ambient Term:
  37.       vec4 Iamb = gl_FrontLightProduct[i].ambient;
  38.       //calculate Diffuse Term:
  39.       vec4 Idiff = gl_FrontLightProduct[i].diffuse * max(dot(N,L), 0.0);
  40.       Idiff = clamp(Idiff, 0.0, 1.0);
  41.    
  42.       // calculate Specular Term:
  43.       vec4 Ispec = gl_FrontLightProduct[i].specular
  44.              * pow(max(dot(R,E),0.0),0.3*gl_FrontMaterial.shininess);
  45.       Ispec = clamp(Ispec, 0.0, 1.0);
  46.    
  47.       finalColor +=
  48.         Iamb
  49.       + Idiff
  50.       + Ispec;
  51.     }
  52.     // write Total Color:
  53.     gl_FragColor = gl_FrontLightModelProduct.sceneColor + finalColor
  54.     * texture2D(textureUnit, texCoord).rgba;
  55.   }
  56.   "
  57.   '
  58.  


  SkyBox shaders can be used for a 360 degree background in all directions.

 
Code: OxygenBasic
  1.   '
  2.  'SKYBOX SHADER
  3.  '=============
  4.  '
  5.  vs[8]=
  6.   "
  7.   #version 120
  8.   void main()
  9.   {
  10.     gl_TexCoord[0].stp = gl_Vertex.xyz;
  11.     gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
  12.   }
  13.   "
  14.   fs[8]=
  15.   "
  16.   #version 120
  17.   uniform samplerCube CubeMap;
  18.   void main()
  19.   {
  20.     gl_FragColor = textureCube(CubeMap, gl_TexCoord[0].stp);
  21.   }
  22.   "
  23.   '
  24.  '
  25.  


.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 08, 2015, 02:16:27 PM

Chrome and Glass could be enhanced by reflection, as well as specular effects. I am currently venturing into cubic reflection mapping to see what the possibilties are:




.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 11, 2015, 01:44:57 PM
Thanks Patrice.

I think that in real transparent surfaces, most of what we see is reflections and refractions. transparency is usually the minor component.

(http://blog.asiahotels.com/wp-content/uploads/2009/03/glasses.jpg)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 20, 2015, 01:39:23 PM

I'm intrigued by the Lara hair texture. The algorithm for generating hair would be applicable to a multitude of other challenging textures.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 21, 2015, 02:05:36 AM
Yes, I get the alpha mask aspect. In Oxygen's Opengl frame work, the Snapshot utility will make any uniform background transparent, and save the image as a png file. Ctrl-Shift-P

I was more interested in the primary hair texture, and whether it can be convincingly synthesised, with some sine waves and a Perlin noise generator :)


.
Title: Re: Wavefront object viewer
Post by: Frankolinox on March 21, 2015, 03:51:30 AM
Noise generator is good for texture purpose.. ten years ago i wrote a nurbs script for a 3d application to simulate hairs.. they interpolate the hair density and thickness.. but i can remember you have done already good grass example for oxygen so far as I can remember.. if i find my scrpt i can send a screenshot too :) via smartphone.. regards frank
Title: Re: Wavefront object viewer
Post by: Frankolinox on March 21, 2015, 06:53:22 AM
two images from my old nurbs project works with a simple "nurbshelper.js" (javascript) in similar cases ;). might be possible to creat such a tool for oxygenbasic too with a request editor for nurbs properties too.. unfortunately I haven't found yet the script.. very old file ones saved on usb stick

nice weekend, frank

.
Title: Re: Wavefront object viewer
Post by: Aurel on March 24, 2015, 01:31:07 PM
Quote
See this article, there is not one single answer about this topic.
http://www.codeproject.com/Articles/224754/Guide-to-Win-Memory-DC.

that is why i am confused about DC things to
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 26, 2015, 02:33:32 PM
Combining models :)

I wonder if there is a way to make Daz3D/Poser figures look more natural. Perhaps they are defined too precisely, compared to the real thing. Texture noise?

(http://assets.nydailynews.com/polopoly_fs/1.1421242.1416842263!/img/httpImage/image.jpg_gen/derivatives/gallery_1200/paris-hilton-paris-electric-christmas-holiday-party.jpg)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 27, 2015, 11:13:16 PM
Quantino

Salt water Powered Car

https://www.youtube.com/watch?v=ERTIB-VlyL8
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 28, 2015, 07:01:42 PM
(http://www.oyonale.com/images/3D/grandrue_est_gris.jpg)

(http://www.oyonale.com/images/3D/grandrue_est_gris_detail_01.jpg)

(http://www.oyonale.com/images/3D/grandrue_est_gris_detail_07.jpg)

Gilles Tran / 2003 / POV-Ray

http://www.oyonale.com
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 29, 2015, 03:39:18 AM
Hi Mike,

How far can one go with ray-tracing, with the aid of shaders? Some of those POV-Rays scenes take hours, if not days to render, not taking advantage of graphics hardware acceleration.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 29, 2015, 11:06:23 AM

Thanks for the info, Mike.

Unfortunately, I don't have the spare capacity to pursue Ray-Tracing at present, but you have some very interesting Opengl, on your forum, (http://www.fbsl.net/phpbb2/viewforum.php?f=36
) which I hope to follow up soon.

What format would you recommend as an alternative to OBJ ? - Depending on expressive potential, and availability of models.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 30, 2015, 10:16:41 AM

Mike,

My effort at half-float block conversion, without lookup tables: (about 4 nanoseconds on my PC).

Code: OxygenBasic
  1.  
  2. 'HALF-FLOATS
  3. ============
  4.  
  5. 'IEE 754
  6. 'http://en.wikipedia.org/wiki/Single-precision_floating-point_format
  7. 'http://en.wikipedia.org/wiki/Half-precision_floating-point_format
  8.  
  9. sub FloatToHalfFloat(sys pf,ph,n)
  10. =================================
  11. {
  12. 'USE OF REGISTERS:
  13. 'edx sign transform
  14. 'eax exponent transform
  15. 'ecx significand transform
  16. 'esi source pointer
  17. 'edi dest pointer
  18. '
  19. mov esi,pf
  20. mov edi,ph
  21. (
  22.   dec dword n
  23.   jl exit
  24.   mov ecx,[esi]
  25.   mov edx,ecx
  26.   mov eax,ecx
  27.   and edx,0x80000000 'mask sign bit
  28.  shr ecx,0x0d       'reduce significand 23 bits to 10bits
  29.  shr edx,0x10       'shove sign bit down 16
  30.  shr eax,0x17       'shove exponent down 23
  31.  and ecx,0x3ff      'mask significand 10 bits
  32.  and eax,0xff       'mask exponent 8 bits
  33.  sub eax,0x70       'adjust exponent bias -112 == (15-127)
  34.  shl eax,0x0a       'place exponent 10 bits up
  35.  or  eax,ecx
  36.   or  eax,edx
  37.   mov [edi],ax
  38.   add esi,4
  39.   add edi,2
  40.   repeat
  41. )  
  42. }
  43.  
  44. sub HalfFloatToFloat(sys ph,pf,n)
  45. =================================
  46. {
  47. 'USE OF REGISTERS:
  48. 'edx sign transform
  49. 'eax exponent transform
  50. 'ecx significand transform
  51. 'esi source pointer
  52. 'edi dest pointer
  53. '
  54. mov esi,ph
  55. mov edi,pf
  56. (
  57.   dec dword n
  58.   jl exit
  59.   mov ecx,[esi]
  60.   mov edx,ecx
  61.   mov eax,ecx
  62.   and edx,0x8000    'mask sign bit
  63.  shl ecx,0x0d      'expand significand 10 bits to 23bits
  64.  shl edx,0x10      'shove sign bit up 16
  65.  shr eax,0x0a      'shove exponent down 10
  66.  and ecx,0x7fffff  'mask 23 bit significand
  67.  and eax,0x1f      'mask exponent 5 bits
  68.  add eax,0x70      'adjust exponent bias +112 == (127-15)
  69.  shl eax,0x17      'place exponent 23 bits up
  70.  or eax,ecx
  71.   or eax,edx
  72.   mov [edi],eax
  73.   add esi,2
  74.   add edi,4
  75.   repeat
  76. )  
  77. }
  78.  
  79.  
  80.  
  81.  
  82. string ShowFloatBits(float f)
  83. =============================
  84. {
  85. string c, s=space 32
  86. sys k,i
  87. cast float k=f
  88. for i = 1 to 32
  89.   if k and 0x80000000 then
  90.     c="1"
  91.   else
  92.     c="0"
  93.   end if
  94.   mid s,i,c
  95.   k=k << 1
  96. next
  97. return mid(s,1,1)+"  "+mid(s,2,8)+"  "+mid(s,10,8)+"  "+mid(s,18,8)+"  "+mid(s,26,7)+"  "
  98. }
  99.  
  100. string ShowHalfFloatBits(sys h)
  101. ===============================
  102. {
  103. string c, s=space 16
  104. sys k,i
  105. k=h
  106. for i = 1 to 16
  107.   if k and 0x8000 then
  108.     c="1"
  109.   else
  110.     c="0"
  111.   end if
  112.   mid s,i,c
  113.   k=k << 1
  114. next
  115. return mid(s,1,1)+"  "+mid(s,2,5)+"  "+mid(s,7,10)+"  "
  116. }
  117.  
  118.  
  119.  
  120.  
  121. 'TESTS
  122. '=====
  123.  
  124. ! GetTickCount lib "kernel32.dll" ()   as sys
  125.  
  126. 'print ShowFloatBits 1.5
  127. 'print ShowFloatBits -2.5
  128.  
  129. % asz 2e7 'size of conversion arrays
  130.  
  131. short hf[asz]
  132. float sf[asz]
  133. sf[1]=-1.5
  134. 'print ShowFloat sf[1]
  135. 'print sf[1]
  136. 'FloatToHalfFloat @sf,@hf,1
  137. 'print showHalfFloat hf[1]
  138. 'HalfFloatToFloat @hf,@sf,1
  139. 'print sf[1]
  140.  
  141. print "Start"
  142. t1=GetTickCount
  143. FloatToHalfFloat @sf,@hf,asz
  144. t2=GetTickCount
  145.  
  146. print str( (1e6/asz) * (t2-t1),1) " nanoseconds per float conversion"
  147.  
  148.  
Title: Re: Wavefront object viewer
Post by: Charles Pegge on March 31, 2015, 02:50:38 AM

As proof of concept: ByteFloats: exponent 4 bits mantissa 3 bits :)

Code: OxygenBasic
  1.  
  2. 'BYTE-FLOATS
  3. ============
  4.  
  5. 'http://en.wikipedia.org/wiki/Minifloat
  6. 'related: IEE 754
  7. 'http://en.wikipedia.org/wiki/Single-precision_floating-point_format
  8. 'http://en.wikipedia.org/wiki/Half-precision_floating-point_format
  9.  
  10. sub FloatToByteFloat(sys pf,ph,n)
  11. =================================
  12. {
  13. 'USE OF REGISTERS:
  14. 'edx sign transform
  15. 'eax exponent transform
  16. 'ecx significand transform
  17. 'esi source pointer
  18. 'edi dest pointer
  19. '
  20. mov esi,pf
  21. mov edi,ph
  22. (
  23.   dec dword n
  24.   jl exit
  25.   mov ecx,[esi]
  26.   mov edx,ecx
  27.   mov eax,ecx
  28.   and edx,0x80000000 'mask sign bit
  29.  shr ecx,0x14       'reduce significand 23 bits to 3 bits 20==(23-3)
  30.  shr edx,0x18       'shove sign bit down 24
  31.  shr eax,0x17       'shove exponent down 23
  32.  and ecx,0x07       'mask significand 3 bits
  33.  and eax,0x0f       'mask exponent 4 bits
  34.  sub eax,0x78       'adjust exponent bias -120 == (7-127)
  35.  shl eax,0x03       'place exponent 3 bits up
  36.  or  eax,ecx
  37.   or  eax,edx
  38.   mov [edi],al
  39.   add esi,4
  40.   inc edi
  41.   repeat
  42. )  
  43. }
  44.  
  45. sub ByteFloatToFloat(sys ph,pf,n)
  46. =================================
  47. {
  48. 'USE OF REGISTERS:
  49. 'edx sign transform
  50. 'eax exponent transform
  51. 'ecx significand transform
  52. 'esi source pointer
  53. 'edi dest pointer
  54. '
  55. mov esi,ph
  56. mov edi,pf
  57. (
  58.   dec dword n
  59.   jl exit
  60.   mov cl,[esi]
  61.   mov edx,ecx
  62.   mov eax,ecx
  63.   and edx,0x80      'mask sign bit
  64.  shl ecx,0x14      'expand significand 3 bits to 23bits (23-3)
  65.  shl edx,0x18      'shove sign bit up 24
  66.  shr eax,0x03      'shove exponent down 3
  67.  and ecx,0x7fffff  'mask 23 bit significand
  68.  and eax,0x0f      'mask exponent 4 bits
  69.  add eax,0x78      'adjust exponent bias  120 == (127-7)
  70.  shl eax,0x17      'place exponent 23 bits up
  71.  or eax,ecx
  72.   or eax,edx
  73.   mov [edi],eax
  74.   inc esi
  75.   add edi,4
  76.   repeat
  77. )  
  78. }
  79.  
  80.  
  81.  
  82.  
  83. string ShowFloatBits(float f)
  84. =============================
  85. {
  86. string c, s=space 32
  87. sys k,i
  88. cast float k=f
  89. for i = 1 to 32
  90.   if k and 0x80000000 then
  91.     c="1"
  92.   else
  93.     c="0"
  94.   end if
  95.   mid s,i,c
  96.   k=k << 1
  97. next
  98. return mid(s,1,1)+"  "+mid(s,2,8)+"  "+mid(s,10,8)+"  "+mid(s,18,8)+"  "+mid(s,26,7)+"  "
  99. }
  100.  
  101. string ShowByteFloatBits(sys h)
  102. ===============================
  103. {
  104. string c, s=space 8
  105. sys k,i
  106. k=h
  107. for i = 1 to 8
  108.   if k and 0x80 then
  109.     c="1"
  110.   else
  111.     c="0"
  112.   end if
  113.   mid s,i,c
  114.   k=k << 1
  115. next
  116. return mid(s,1,1)+"  "+mid(s,2,4)+"  "+mid(s,6,3)+"  "
  117. }
  118.  
  119.  
  120.  
  121.  
  122. 'TESTS
  123. '=====
  124.  
  125.  
  126. 'print ShowFloatBits 1.5
  127. 'print ShowFloatBits -2.5
  128.  
  129. % asz 2e7 'size of conversion arrays
  130.  
  131. byte bf[asz]
  132. float sf[asz]
  133. sf[1]=-1.5
  134.  
  135. print ShowFloatBits sf[1]
  136. 'print sf[1]
  137. FloatToByteFloat @sf,@bf,1
  138. print showByteFloatBits bf[1]
  139. ByteFloatToFloat @bf,@sf,1
  140. print showFloatBits sf[1]
  141. print sf[1]
  142.  
  143.  
  144. ! GetTickCount lib "kernel32.dll" ()   as sys
  145. 'print "Start"
  146. 't1=GetTickCount
  147. 'FloatToHalfFloat @sf,@bf,asz
  148. 't2=GetTickCount
  149.  
  150. 'print str( (1e6/asz) * (t2-t1),1) " nanoseconds per float conversion"
  151.  
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 01, 2015, 10:19:03 PM
Thanks for testing, Mike.

Yes, I see 0, infinity, and NAN make a simple transform impossible. The LUTs have it!

PS:

This function includes conditional blocks for processing 0 and infinity. But it costs an additional 15% in processing time, assuming an even distribution of 0.0 values.

Code: OxygenBasic
  1. sub FloatToHalfFloat(sys pf,ph,n)
  2. =================================
  3. {
  4. 'USE OF REGISTERS:
  5. 'edx sign transform
  6. 'eax exponent transform
  7. 'ecx significand transform
  8. 'esi source pointer
  9. 'edi dest pointer
  10. '
  11. mov esi,pf
  12. mov edi,ph
  13. (
  14.   dec dword n
  15.   jl exit
  16.   mov ecx,[esi]
  17.   mov edx,ecx
  18.   mov eax,ecx
  19.   and edx,0x80000000 'mask sign bit
  20.  shr edx,0x10       'shove sign bit down 16
  21.  (
  22.    'TEST FOR 0
  23.   test eax,0x7fffffff
  24.    jnz exit
  25.    jmp fwd nzero
  26.   )
  27.   shr eax,0x17       'shove exponent down 23
  28.  and eax,0xff       'mask exponent 8 bits
  29.  shr ecx,0x0d       'reduce significand 23 bits to 10 bits
  30.  sub eax,0x70       'adjust exponent bias -112 == (15-127)
  31.  (
  32.     'TEST FOR OVERFLOW / INFINITY / NAN
  33.    cmp eax,0x1f
  34.     jle exit
  35.     mov eax,0x1f
  36.   )  
  37.   shl eax,0x0a       'place exponent 10 bits up
  38.  and ecx,0x3ff      'mask significand 10 bits
  39.  or  eax,ecx
  40.   nzero:
  41.   or  eax,edx
  42.   mov [edi],ax
  43.   add esi,4
  44.   add edi,2
  45.   repeat
  46. )  
  47. }
  48.  
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 02, 2015, 04:48:57 AM

Clamps for both zero and infinity are required, further diminishing performance. Is it worth pursuing, I wonder.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 03, 2015, 06:01:36 AM
Hi Mike,

Before I start filling my demos with half-floats, do all graphics cards support them? - not just an nVidia thing.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 03, 2015, 06:50:34 AM

Thanks Mike, I'll confine it to a few demos.

I also came across a brief discussion here:

http://forum.unity3d.com/threads/using-half-format-floating-point-on-pc.259845/

PS Your interiors remind me of the hall in Mentmore Towers:

http://theinfounderground.com/smf/index.php?topic=10708.0

(http://farm4.static.flickr.com/3301/3610810359_30d1414f00.jpg)

Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 28, 2015, 12:05:58 PM
Hi Patrice and Mike,

Please continue posting here. It is of general interest and I do try to follow. :)

Have you considered introducing shadow-casting into the Object Viewer? I have been researching this subject, though the material on the web seems to be rather thin.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 28, 2015, 12:52:07 PM

This is the most promising material on shadows, I have come across so far:

http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-16-shadow-mapping/
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 30, 2015, 12:18:44 AM

Hi Mike,

The shadow technique is for whole-scene shadow casting, including all objects. I have used it in the past, but not with glsl. It relies on building a depth buffer map taken from the perspective of the light source, then comparing it (via transform) with the depth buffer from the perspective of the viewer. If the depth values are less, then the pixels are in shadow, and toned accordingly.

Without further treatment, this produces hard-edged shadows.

But ambient occlusion looks very interesting, and offers more natural shading

http://http.developer.nvidia.com/GPUGems3/gpugems3_ch12.html

(http://communities.bentley.com/cfs-filesystemfile.ashx/__key/CommunityServer-Components-PostAttachments/00-00-13-29-97/lobby01_5F00_ambient_5F00_occlusion_5F00_edges.jpg_2D00_500x400.jpg)


I am also looking at its (almost) opposite: radiosity, where scenes are shaded using ligh reflected from all the surfaces in the environment. Reflected light naturally takes on the colour of each surface it is radiated from. It produces very subtle shading, but quite a challeng to emulate in real-time!

(https://richardpage.files.wordpress.com/2008/01/room-radiosity.jpg)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on April 30, 2015, 10:32:50 AM
There's a real-time Radiosity demo, using WebGL: interesting use of progressive rendering. - makes my GPU fan go Vroom!

http://madebyevan.com/webgl-path-tracing/
Title: Re: Wavefront object viewer
Post by: Charles Pegge on June 16, 2015, 09:34:23 AM
That sounds very painful! I wish you speedy recovery, Patrice.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on June 17, 2015, 11:01:42 AM

Entertainment from the 60s

The Avengers:

https://www.youtube.com/watch?v=wofXXHtsAcE
Title: Re: Wavefront object viewer
Post by: Arnold on June 18, 2015, 12:02:50 AM
I never heard from The Avangers. But "Mit Schirm, Charme und Melone"  was really fascinating at that time. In almost the same manner as 007.
Title: Re: Wavefront object viewer
Post by: Charles Pegge on July 12, 2015, 05:40:35 PM
Hi Mike,

Visual Meditation - Wilderness Healing

https://www.youtube.com/watch?v=2CFPUdeA2G8

:)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on August 07, 2015, 12:15:13 AM

product review:

http://www.cnet.com/products/microsoft-surface-3/

Do you use it with a keyboard, Patrice?
Title: Re: Wavefront object viewer
Post by: Charles Pegge on October 24, 2015, 07:18:42 AM
Awesome... :o

Does it have any interiors?

Large Motherships could have cabins with bathrooms en-suite, and bars, restaurants, swimming pools, biomes containing gardens vinyards and orchards.  8)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on November 06, 2015, 03:34:44 AM
Mike,

My cousins in Zimbabwe told me that the US dollar is now their standard currency. (I suspect their economy is largely controlled by China now). So Belarus imust be one of the last to deploy hyperinflation!
Title: Re: Wavefront object viewer
Post by: Aurel on November 07, 2015, 06:07:36 AM
Interesting ....
nobody else respond to this topic... ::)
Title: Re: Wavefront object viewer
Post by: Aurel on November 07, 2015, 10:40:52 AM
Sorry Mike ...Patrice, don't get me wrong i like that pictures
but is this object viewer written in Oxygen ?
anyway just continue...great images  :D
Title: Re: Wavefront object viewer
Post by: Mike Lobanovsky on December 07, 2015, 10:22:21 PM
I guess this is going to be my final update here, so I just wanted to finish it off on a positive note: :)

.
Title: Re: Wavefront object viewer
Post by: Mike Lobanovsky on December 08, 2015, 11:32:47 AM
Never thought harakiri could be so satisfying. Now anyone of the O2 community who would venture into OBJ modeling, texturing and 3D rendering have a fair chance of stepping on their own rakes again all along the winding road from the NeHe tutorials. Bon voyage, fellas!

And gratifying too. After a 30 minutes' ride in the way back machine I'm now some 400 messages younger.

Anyway, thanks for putting up with us for so long! :)
Title: Re: Wavefront object viewer
Post by: Charles Pegge on December 10, 2015, 03:20:59 AM
This has been a very specialised topic but I hope you will be able to extend your audience at Josés. Please let us know your final destination :)
Title: Re: Wavefront object viewer
Post by: Patrice Terrier on December 10, 2015, 04:47:13 AM
Charles, John,

Thanks to both of you to have hosted this thread here, for a while.

Because this topic could become as much popular as my BassBox thread on José Roca's forum, it makes sense for me to have it hosted on my own server where i could have full control on everything, and also no size limitation. Especially because once the new models will be made available for download, they will probably attract a huge number of peoples from world wide.

I shall start first with a 200 Gb server with FTP facilities to copy the larges files from/to a fast server located in the UK.

Thank you again!

...
Title: Re: Wavefront object viewer
Post by: Patrice Terrier on January 25, 2016, 05:51:58 AM
The dedicated ObjReader.com forum, is being updated with new models and the latest ObjReader64 version.

...