同一页面上有多个WebGL模型 [英] Multiple WebGL models on the same page

查看:124
本文介绍了同一页面上有多个WebGL模型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的研究实验室正在研究一个网页,其中显示了大约50个左右的3D模型的可滚动列表。我们的第一个想法是使用单独的THREE.js WebGL上下文来完成此操作,但是鉴于WebGL的架构,这似乎不可取,浏览器似乎将页面上下文的数量限制为大约2 ^ 4。



我不需要这些上下文来做任何令人印象深刻的事情:单个几何体只有几百个三角形,没有纹理,并且一次只有一个使用鼠标来旋转它的相机。



我可以说服WebGL按照浏览器不会抱怨的方式做我想做的事吗?我想也许有一个单一的大型几何体,所有我的个人模型排列在一起,并使用单独的视口分别显示一个模型。但似乎不支持。 (在同一个上下文中允许有多个视图,但这对我来说不是很有用。)

感谢您的任何想法!

解决方案

目前尚不清楚为什么你认为你需要多个webgl上下文。我猜是因为你想要一个像这样的列表

  1。 [img]描述
描述

2. [img]描述
描述

3. [img]描述
描述

或者什么? 有些想法


  1. 为屏幕创建一个足够大的画布,设置它的CSS,使其不会与页面的其余部分一起滚动。


  2. 制作屏幕外的webgl画布并使用canvas2d元素进行显示。



    对于每个模型渲染模型,然后调用

      someCanvas2DContextForElementN.drawImage(webGLcanvasElement,.. ); 


鉴于可能只有少数画布可见你只需要更新那些。实际上,回收它们可能是一个好主意。换句话说,而不是让12000个canvaes或12000个元素列表恰好适合屏幕并在滚动时更新它们。



就我个人而言,我可能会选择#1,如果我的网页设计允许它。似乎工作,见下文。






事实证明,这很容易。 我只是拿着这个绘制100个物体的样本,并一次绘制一个物体。

清理屏幕后开启剪刀测试

  gl。使能(gl.SCISSOR_TEST); 

然后,对于每个对象

  //获取我们想要的位置的元素
//绘制对象
var viewElement = obj.viewElement;

//获取相对于页面视口的位置
var rect = viewElement.getBoundingClientRect();

//检查它是否在屏幕外。如果这么跳过
if(rect.bottom< 0 || rect.top> gl.canvas.clientHeight ||
rect.right< 0 || rect.left> gl.canvas .clientWidth){
return; //它不在屏幕上
}

//设置视口
var width = rect.right - rect.left;
var height = rect.bottom - rect.top;
var left = rect.left;
var bottom = gl.canvas.clientHeight - rect.bottom - 1;

gl.viewport(left,bottom,width,height);
gl.scissor(left,bottom,width,height);

我不是100%确定是否需要添加1的宽度和高度。我想我应该看看。



在任何情况下,我都会为每个渲染对象计算一个新的投影矩阵,以使代码具有通用性。占位符div可以是不同的大小。



<使用数据库> <使用数据库>严格; / /使用twgl.js因为我很懒twgl.setAttributePrefix(a_); var m4 = twgl.m4; var gl = twgl.getWebGLContext(document.getElementById(c)); //编译着色器,链接程序,查找位置var programInfo = twgl.createProgramInfo(gl,[vs,fs]); //调用gl.creatBuffer,gl.bindBuffer,每个形状的gl.bufferData //用于位置,法线,texcoords var shapes = [twgl.primitives.createCubeBufferInfo(gl,2),twgl.primitives.createSphereBufferInfo(gl,1, (gl,2,2),twgl.primitives.createTruncatedConeBufferInfo(gl,1,0,2,24,1),twgl.primitives.createCresentBufferInfo(gl,1,1,0.5 (gl,1,2,24,2),twgl.primitives.createDiscBufferInfo(gl,1,24),twgl.primitives.createTorusBufferInfo(gl,1,0.4,24,2),twgl.primitives.createCylinderBufferInfo 12),];函数rand(min,max){return min + Math.random()*(max - min); } //共享值var lightWorldPosition = [1,8,-10]; var lightColor = [1,1,1,1]; var camera = m4.identity(); var view = m4.identity(); var viewProjection = m4.identity(); var tex = twgl.createTexture(gl,{min:gl.NEAREST,mag:gl.NEAREST,src:[255,255,255,255,192,192,192,255,192,192,192,255,255 ,255,255,255,],}); var randColor = function(){var color = [Math.random(),Math.random(),Math.random(),1];颜色[Math.random()* 3 | 0] = 1; //使至少1个明亮的返回颜色; }; var objects = []; var numObjects = 100; var list = document.getElementById(list); var listItemTemplate = document.getElementById(list-item-template)。text; for(var ii = 0; ii< numObjects; ++ ii){var listElement = document.createElement(div); listElement.innerHTML = listItemTemplate; listElement.className =list-item; var viewElement = listElement.querySelector(。view); var uniforms = {u_lightWorldPos:lightWorldPosition,u_lightColor:lightColor,u_diffuseMult:randColor(),u_specular:[1,1,1,1],u_shininess:50,u_specularFactor:1,u_diffuse:tex,u_viewInverse:camera,u_world:m4。 identity(),u_worldInverseTranspose:m4.identity(),u_worldViewProjection:m4.identity(),}; objects.push({ySpeed:rand(0.1,0.3),zSpeed:rand(0.1,0.3),uniforms:uniforms,viewElement:viewElement,programInfo:programInfo,bufferInfo:shapes [ii%shapes.length],}); list.appendChild(listElement); } var showRenderingArea = false;函数渲染(时间){时间* = 0.001; twgl.resizeCanvasToDisplaySize(gl.canvas); gl.enable(gl.DEPTH_TEST); gl.disable(gl.SCISSOR_TEST); gl.clearColor(0,0,0,0); gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); gl.enable(gl.SCISSOR_TEST); if(showRenderingArea){gl.clearColor(0,0,1,1); } var eye = [0,0,-8]; var target = [0,0,0]; var up = [0,1,0]; m4.lookAt(眼睛,目标,上,相机); m4.inverse(camera,view); objects.forEach(function(obj,ndx){var viewElement = obj.viewElement; // get viewElement's position var rect = viewElement.getBoundingClientRect(); if(rect.bottom< 0 || rect.top> gl.canvas .clientHeight || rect.right< 0 || rect.left> gl.canvas.clientWidth){return; //它不在屏幕上} var width = rect.right - rect.left; var height = rect.bottom - rect.top; var left = rect.left; var bottom = gl.canvas.clientHeight - rect.bottom - 1; gl.viewport(left,bottom,width,height); gl.scissor(left,bottom,width,height ); if(showRenderingArea){gl.clear(gl.COLOR_BUFFER_BIT);} var projection = m4.perspective(30 * Math.PI / 180,width / height,0.5,100); m4.multiply(view,projection,viewProjection ); var uni = obj.uniforms; var world = uni.u_world; m4.identity(world); m4.rotateY(world,time * obj.ySpeed,世界); m4.rotateZ(world,time * obj.zSpeed,world); m4.transpose(m4.inverse(world,uni.u_worldInverseTranspose),uni.u_worldInverseTranspose); m4.multiply(uni.u_world,viewProjection,uni.u_worldViewProjection); gl.useProgram(obj.programInfo.program); //调用gl.bindBuffer,gl.enableVertexAttribArray,gl.vertexAttribPointer twgl.setBuffersAndAttributes(gl,obj.programInfo,obj.bufferInfo); //调用gl.bindTexture,gl.activeTexture,gl.uniformXXX twgl.setUniforms(obj.programInfo,uni); //调用gl.drawArrays或gl.drawElements twgl.drawBufferInfo(gl,gl.TRIANGLES,obj.bufferInfo); }); } if(true){//动画var renderContinuously = function(time){render(time); requestAnimationFrame(renderContinuously); } requestAnimationFrame(renderContinuously); } else {var requestId; var renderRequest = function(time){render(time); requestId = undefined; } //如果有动画var queueRender = function(){if(!requestId){requestId = requestAnimationFrame(renderRequest); }} window.addEventListener('resize',queueRender); window.addEventListener('scroll',queueRender); queueRender(); }

* {box-sizing:border-box; -moz-box-sizing:border-box; } body {font-family:monospace;保证金:0; } canvas {width:100vw;身高:100vh; } #c {position:fixed; } #outer {width:100%; z-index:2;位置:绝对; top:0px; } #content {margin:auto;填充:2em; } #b {width:100%; text-align:center; } .list-item {border:1px纯黑色;保证金:2em;填充:1em;宽度:200px;显示:inline-block; } .list-item .view {width:100px; height:100px;向左飘浮;保证金:0 1em 1em 0; } .list-item .description {padding-left:2em; } @media唯一的屏幕和(最大宽度:500px){#content {width:100%; } .list-item {margin:0.5em; } .list-item .description {padding-left:0em; }}

< script src =// twgljs。组织/ DIST / twgl-full.min.js>< /脚本> <身体GT; < canvas id =c>< / canvas> < div id =outer> < div id =content> < div id =b>项目清单< / div> < div id =list>< / div> < / DIV> < / DIV> < /体> < script id =list-item-templatetype =notjs> < div class =view>< / div> < div class =description> Lorem ipsum dolor sit amet,conse ctetur adipi scing elit。 < / DIV> < /脚本> < script id =vstype =notjs> uniform mat4 u_worldViewProjection; uniform vec3 u_lightWorldPos; uniform mat4 u_world; uniform mat4 u_viewInverse; uniform mat4 u_worldInverseTranspose;属性vec4 a_position;属性vec3 a_normal;属性vec2 a_texcoord;变化vec4 v_position ;改变vec2 v_texCoord;改变vec3 v_normal;改变vec3 v_surfaceToLight;改变vec3 v_surfaceToView; void main(){v_texCoord = a_texcoord; v_position =(u_worldViewProjection * a_position); v_normal =(u_worldInverseTranspose * vec4(a_normal,0))。xyz; v_surfaceToLight = u_lightWorldPos - (u_world * a_position).xyz; v_surfaceToView =(u_viewInverse [3] - (u_world * a_position))。xyz; gl_Position = v_position;}< / script> < script id =fstype =notjs> precision mediump float; vec4 v_position; vec2 v_texCoord; vec3 v_normal; vec3 v_surfaceToLight; vec3 v_surfaceToView; uniform vec4 u_lightColor; uniform vec4 u_diffuseMult; uniform sampler2D u_diffuse ; uniform vec4 u_specular; uniform float u_shininess; uniform float u_specularFactor; vec4 lit(float l,float h,float m){return vec4(1.0,abs(l),// max(1,0),(l> 0.0 )?pow(max(0.0,h),m):0.0,1.0);} void main(){vec4 diffuseColor = texture2D(u_diffuse,v_texCoord)* u_diffuseMult; vec3 a_normal = normalize(v_normal); vec3 surfaceToLight = normalize(v_surfaceToLight); vec3 surfaceToView = normalize(v_surfaceToView); vec3 halfVector = normalize(surfaceToLight + surfaceToView); vec4 litR =点亮(点(a_normal,surfaceToLight),点(a_normal,halfVector),u_shininess); vec4 outColor = vec4((u_lightColor *(diffuseColor * litR.y + u_specular * litR.z * u_specularFactor))。rgb,diffuseColor.a); gl_FragColor = outColor;}< / script>

b
$ b

如果你有手机,你可以在这里看到一个类似的全屏幕


My research lab is working on a webpage that displays a long scrollable list of 3d models, about 50 or so. Our first idea was to do this with separate THREE.js WebGL contexts, but it seems this isn't advisable given the architecture of WebGL, and browsers seem to limit the number of contexts on a page to about 2^4.

I don't need these contexts to do anything very impressive: the individual geometries only have a few hundred triangles, with no textures, and only one at a time ever animates when using the mouse to rotate its camera.

Can I persuade WebGL to do what I want in a way that the browser won't complain about? I thought perhaps of having a single big geometry with all my individual models lined up next to each other, and separate canvases with viewports showing just one model each. But it seems that isn't supported. (Multiple views are allowed in the same context, but that's not very useful for me.)

Thanks for any ideas!

解决方案

It's not clear why you think you need multiple webgl contexts. I'm guessing because you want a list like this

1. [img] description
         description

2. [img] description
         description

3. [img] description
         description

Or something?

Some ideas

  1. make one canvas big enough for the screen, set its CSS so it doesn't scroll with the rest of the page. Draw the models aligned with whatever other HTML you want that does scroll.

  2. make an offscreen webgl canvas and use canvas2d elements to display.

    For each model render the model and then call

    someCanvas2DContextForElementN.drawImage(webGLcanvasElement, ...);
    

Given there are probably only ever a few canvases visible you only need to update those ones. In fact it's probably a good idea to recycle them. In other words, rather than make 12000 canvaes or a 12000 element list make just enough to fit on the screen and update them as you scroll.

Personally I'd probably pick #1 if my page design allowed it. Seems to work, see below.


It turned out to be really easy. I just took this sample that was drawing 100 objects and made it draw one object at a time.

After clearing the screen turn on the scissor test

gl.enable(gl.SCISSOR_TEST);

Then, for each object

// get the element that is a place holder for where we want to
// draw the object
var viewElement = obj.viewElement;

// get its position relative to the page's viewport
var rect = viewElement.getBoundingClientRect();

// check if it's offscreen. If so skip it
if (rect.bottom < 0 || rect.top  > gl.canvas.clientHeight ||
    rect.right  < 0 || rect.left > gl.canvas.clientWidth) {
  return;  // it's off screen
}

// set the viewport
var width  = rect.right - rect.left;
var height = rect.bottom - rect.top;
var left   = rect.left;
var bottom = gl.canvas.clientHeight - rect.bottom - 1;

gl.viewport(left, bottom, width, height);
gl.scissor(left, bottom, width, height);

I'm not 100% sure if I need to add 1 the width and height or not. I suppose I should look that up.

In any case I compute a new projection matrix for every rendered object just to make the code generic. The placeholder divs could be different sizes.

"use strict";
// using twgl.js because I'm lazy
    twgl.setAttributePrefix("a_");
    var m4 = twgl.m4;
    var gl = twgl.getWebGLContext(document.getElementById("c"));
    // compiles shaders, links program, looks up locations
    var programInfo = twgl.createProgramInfo(gl, ["vs", "fs"]);

    // calls gl.creatBuffer, gl.bindBuffer, gl.bufferData for each shape
    // for positions, normals, texcoords
    var shapes = [
      twgl.primitives.createCubeBufferInfo(gl, 2),
      twgl.primitives.createSphereBufferInfo(gl, 1, 24, 12),
      twgl.primitives.createPlaneBufferInfo(gl, 2, 2),
      twgl.primitives.createTruncatedConeBufferInfo(gl, 1, 0, 2, 24, 1),
      twgl.primitives.createCresentBufferInfo(gl, 1, 1, 0.5, 0.1, 24),
      twgl.primitives.createCylinderBufferInfo(gl, 1, 2, 24, 2),
      twgl.primitives.createDiscBufferInfo(gl, 1, 24),
      twgl.primitives.createTorusBufferInfo(gl, 1, 0.4, 24, 12),
    ];

    function rand(min, max) {
      return min + Math.random() * (max - min);
    }

    // Shared values
    var lightWorldPosition = [1, 8, -10];
    var lightColor = [1, 1, 1, 1];
    var camera = m4.identity();
    var view = m4.identity();
    var viewProjection = m4.identity();

    var tex = twgl.createTexture(gl, {
      min: gl.NEAREST,
      mag: gl.NEAREST,
      src: [
        255, 255, 255, 255,
        192, 192, 192, 255,
        192, 192, 192, 255,
        255, 255, 255, 255,
      ],
    });
        
    var randColor = function() {
        var color = [Math.random(), Math.random(), Math.random(), 1];
        color[Math.random() * 3 | 0] = 1; // make at least 1 bright
        return color;
    };

    var objects = [];
    var numObjects = 100;
    var list = document.getElementById("list");
    var listItemTemplate = document.getElementById("list-item-template").text;
    for (var ii = 0; ii < numObjects; ++ii) {
      var listElement = document.createElement("div");
      listElement.innerHTML = listItemTemplate;
      listElement.className = "list-item";
      var viewElement = listElement.querySelector(".view");
      var uniforms = {
        u_lightWorldPos: lightWorldPosition,
        u_lightColor: lightColor,
        u_diffuseMult: randColor(),
        u_specular: [1, 1, 1, 1],
        u_shininess: 50,
        u_specularFactor: 1,
        u_diffuse: tex,
        u_viewInverse: camera,
        u_world: m4.identity(),
        u_worldInverseTranspose: m4.identity(),
        u_worldViewProjection: m4.identity(),
      };
      objects.push({
        ySpeed: rand(0.1, 0.3),
        zSpeed: rand(0.1, 0.3),
        uniforms: uniforms,
        viewElement: viewElement,
        programInfo: programInfo,
        bufferInfo: shapes[ii % shapes.length],
      });
      list.appendChild(listElement);
    }

    var showRenderingArea = false;

    function render(time) {
      time *= 0.001;      
      twgl.resizeCanvasToDisplaySize(gl.canvas);

      gl.enable(gl.DEPTH_TEST);
      gl.disable(gl.SCISSOR_TEST);
      gl.clearColor(0, 0, 0, 0);
      gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
      gl.enable(gl.SCISSOR_TEST);

      if (showRenderingArea) {
        gl.clearColor(0, 0, 1, 1);
      }

      var eye = [0, 0, -8];
      var target = [0, 0, 0];
      var up = [0, 1, 0];

      m4.lookAt(eye, target, up, camera);
      m4.inverse(camera, view);

      objects.forEach(function(obj, ndx) {
        var viewElement = obj.viewElement;
        // get viewElement's position
        var rect = viewElement.getBoundingClientRect();
        if (rect.bottom < 0 || rect.top  > gl.canvas.clientHeight ||
            rect.right  < 0 || rect.left > gl.canvas.clientWidth) {
          return;  // it's off screen
        }

        var width  = rect.right - rect.left;
        var height = rect.bottom - rect.top;
        var left   = rect.left;
        var bottom = gl.canvas.clientHeight - rect.bottom - 1;

        gl.viewport(left, bottom, width, height);
        gl.scissor(left, bottom, width, height);

        if (showRenderingArea) {
          gl.clear(gl.COLOR_BUFFER_BIT);
        }

        var projection = m4.perspective(30 * Math.PI / 180, width / height, 0.5, 100);
        m4.multiply(view, projection, viewProjection);

        var uni = obj.uniforms;
        var world = uni.u_world;
        m4.identity(world);
        m4.rotateY(world, time * obj.ySpeed, world);
        m4.rotateZ(world, time * obj.zSpeed, world);
        m4.transpose(m4.inverse(world, uni.u_worldInverseTranspose), uni.u_worldInverseTranspose);
        m4.multiply(uni.u_world, viewProjection, uni.u_worldViewProjection);

        gl.useProgram(obj.programInfo.program);
        // calls gl.bindBuffer, gl.enableVertexAttribArray, gl.vertexAttribPointer
        twgl.setBuffersAndAttributes(gl, obj.programInfo, obj.bufferInfo);
        // calls gl.bindTexture, gl.activeTexture, gl.uniformXXX
        twgl.setUniforms(obj.programInfo, uni);
        // calls gl.drawArrays or gl.drawElements
        twgl.drawBufferInfo(gl, gl.TRIANGLES, obj.bufferInfo);
      });
    }

    if (true) { // animated
        var renderContinuously = function(time) {
            render(time);
            requestAnimationFrame(renderContinuously);
        }
        requestAnimationFrame(renderContinuously);
    } else {
        var requestId;
        var renderRequest = function(time) {
            render(time);
            requestId = undefined;
        }
        // If animated
        var queueRender = function() {
            if (!requestId) {
              requestId = requestAnimationFrame(renderRequest);
            }
        }

        window.addEventListener('resize', queueRender);
        window.addEventListener('scroll', queueRender);

        queueRender();
    }

* {
          box-sizing: border-box;
          -moz-box-sizing: border-box;
      }
      body {
        font-family: monospace;
        margin: 0;
      }
      canvas {
        width: 100vw;
        height: 100vh;
      }
      #c {
          position: fixed;
      }
      #outer {
          width: 100%;
          z-index: 2;
          position: absolute;
          top: 0px;
      }
      #content {
          margin: auto;
          padding: 2em;
      }
      #b {
        width: 100%;
        text-align: center;
      }
      .list-item {
          border: 1px solid black;
          margin: 2em;
          padding: 1em;
          width: 200px;
          display: inline-block;
      }
      .list-item .view {
          width: 100px;
          height: 100px;
          float: left;
          margin: 0 1em 1em 0;
      }
      .list-item .description {
          padding-left: 2em;
      }

      @media only screen and (max-width : 500px) {
          #content {
              width: 100%;
          }
          .list-item {
              margin: 0.5em;
          }
          .list-item .description {
              padding-left: 0em;
          }
      }

<script src="//twgljs.org/dist/twgl-full.min.js"></script>
  <body>
    <canvas id="c"></canvas>
    <div id="outer">
      <div id="content">
        <div id="b">item list</div>
        <div id="list"></div>
      </div>
    </div>
  </body>
  <script id="list-item-template" type="notjs">
    <div class="view"></div>
    <div class="description">Lorem ipsum dolor sit amet, conse ctetur adipi scing elit. </div>
  </script>
  <script id="vs" type="notjs">
uniform mat4 u_worldViewProjection;
uniform vec3 u_lightWorldPos;
uniform mat4 u_world;
uniform mat4 u_viewInverse;
uniform mat4 u_worldInverseTranspose;

attribute vec4 a_position;
attribute vec3 a_normal;
attribute vec2 a_texcoord;

varying vec4 v_position;
varying vec2 v_texCoord;
varying vec3 v_normal;
varying vec3 v_surfaceToLight;
varying vec3 v_surfaceToView;

void main() {
  v_texCoord = a_texcoord;
  v_position = (u_worldViewProjection * a_position);
  v_normal = (u_worldInverseTranspose * vec4(a_normal, 0)).xyz;
  v_surfaceToLight = u_lightWorldPos - (u_world * a_position).xyz;
  v_surfaceToView = (u_viewInverse[3] - (u_world * a_position)).xyz;
  gl_Position = v_position;
}
  </script>
  <script id="fs" type="notjs">
precision mediump float;

varying vec4 v_position;
varying vec2 v_texCoord;
varying vec3 v_normal;
varying vec3 v_surfaceToLight;
varying vec3 v_surfaceToView;

uniform vec4 u_lightColor;
uniform vec4 u_diffuseMult;
uniform sampler2D u_diffuse;
uniform vec4 u_specular;
uniform float u_shininess;
uniform float u_specularFactor;

vec4 lit(float l ,float h, float m) {
  return vec4(1.0,
              abs(l),//max(l, 0.0),
              (l > 0.0) ? pow(max(0.0, h), m) : 0.0,
              1.0);
}

void main() {
  vec4 diffuseColor = texture2D(u_diffuse, v_texCoord) * u_diffuseMult;
  vec3 a_normal = normalize(v_normal);
  vec3 surfaceToLight = normalize(v_surfaceToLight);
  vec3 surfaceToView = normalize(v_surfaceToView);
  vec3 halfVector = normalize(surfaceToLight + surfaceToView);
  vec4 litR = lit(dot(a_normal, surfaceToLight),
                    dot(a_normal, halfVector), u_shininess);
  vec4 outColor = vec4((
  u_lightColor * (diffuseColor * litR.y +
                u_specular * litR.z * u_specularFactor)).rgb,
      diffuseColor.a);
  gl_FragColor = outColor;
}
  </script>

If you have a phone you can see a similar one fullscreen here.

这篇关于同一页面上有多个WebGL模型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆