Changeset 19885


Ignore:
Timestamp:
12/12/15 19:37:37 (9 years ago)
Author:
dlcheng
Message:

CHG (javascript): Preliminary movie implementation for transient plots.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/plot_unit.js

    r19875 r19885  
    1515        var ymin,ymax;
    1616        var zmin,zmax;
    17         var datamin,datamax;
     17        var datamin,datamax,datadelta;
    1818        var scale;
    1919
    2020        //Process data and model
    21         var meshresults = processmesh(md,data,options);
     21        var meshresults;
     22        if (data["1"] instanceof Float64Array) {
     23                meshresults = processmesh(md,data["1"],options);
     24        }
     25        else {
     26                meshresults = processmesh(md,data,options);
     27        }
    2228        var x = meshresults[0];
    2329        var y = meshresults[1];
     
    2733        var isplanet = meshresults[5];
    2834       
    29         var dataresults = processdata(md,data,options);
    30         var data2 = dataresults[0];
    31         var datatype = dataresults[1];
     35        var dataresults, data2, datatype;
     36        if (data["1"] instanceof Float64Array) {
     37                dataresults = processdata(md,data["1"],options);
     38                data2 = dataresults[0];
     39                datatype = dataresults[1];
     40        }
     41        else {
     42                dataresults = processdata(md,data,options);
     43                data2 = dataresults[0];
     44                datatype = dataresults[1];
     45        }
    3246        //}}}
    3347
     
    4559        zmin = zlim[0];
    4660        zmax = zlim[1];
    47         var caxis= options.getfieldvalue('caxis',[ArrayMin(data),ArrayMax(data)]);
    48         datamin = caxis[0];
    49         datamax = caxis[1];
     61        var caxis;
    5062
    5163        //Compute scaling:
     
    6173        node["drawOrder"] = 0;
    6274               
    63         //some defaults:
    64         texcoords.itemSize = 2;
    65 
    6675        switch(datatype){
    6776
     
    115124                       
    116125                                vertices.itemSize = 3;
    117                                 var cmap=options.getfieldvalue('cmap','jet');   
    118                                 for(var i = 0; i < x.length; i++){
    119                                         vertices[vertices.length] = x[i];
    120                                         vertices[vertices.length] = y[i];
    121                                         vertices[vertices.length] = z[i];
    122 
    123                                         texcoords[texcoords.length] = 0.5;
    124                                         texcoords[texcoords.length] = (data[i] - datamin) / (datamax - datamin);
     126                                var cmap=options.getfieldvalue('cmap','jet');
     127                                //If handling movie data, compute vertices once and texcoords for each movie frame
     128                                if (data["1"] instanceof Float64Array) {
     129                                        for(var i = 0; i < x.length; i++){
     130                                                vertices[vertices.length] = x[i];
     131                                                vertices[vertices.length] = y[i];
     132                                                vertices[vertices.length] = z[i];
     133                                        }       
     134
     135                                        var datasubarray;
     136                                        for(var i = 0; i < data.length-1; i++){
     137                                                //Prevent evaluation of datasubarray min/max if caxis exists
     138                                                datasubarray = data[String(i+1)];
     139                                                if (options.exist('caxis')) {
     140                                                        caxis = options.getfieldvalue('caxis');
     141                                                }
     142                                                else {
     143                                                        caxis = [ArrayMin(datasubarray),ArrayMax(datasubarray)];
     144                                                }
     145                                                datamin = caxis[0];
     146                                                datamax = caxis[1];
     147                                                datadelta = datamax - datamin;
     148                                               
     149                                                //Precalculate arrays for each datasubarray
     150                                                texcoords[i] = [];
     151                                                texcoords[i].itemSize = 2;
     152                                                for(var j = 0; j < x.length; j++){
     153                                                        texcoords[i][texcoords[i].length] = 0.5;
     154                                                        texcoords[i][texcoords[i].length] = (datasubarray[j] - datamin) / datadelta;
     155                                                }
     156                                        }
     157                                       
     158                                        //Initialize movie loop
     159                                        node["movieInterval"] = 1000 / options.getfieldvalue('moviefps',5);
     160                                        node["movieLength"] = data.length;
     161                                        node["movieFrame"] = 0;
     162                                        node["movieHandler"] = function () {
     163                                                        node["movieFrame"] = (node["movieFrame"] + 1) % (node["movieLength"]-1);
     164                                                        var array = [node["arrays"][0],node["arrays"][1][node["movieFrame"]],node["arrays"][2]];
     165                                                        node["buffers"] = initBuffers(gl,array);
     166                                                        if (true) {
     167                                                                setTimeout(node["movieHandler"], node["movieInterval"]);
     168                                                        }
     169                                                };
     170                                        setTimeout(node["movieHandler"], node["movieInterval"]);
    125171                                }
    126                                
     172                                else {
     173                                        caxis = options.getfieldvalue('caxis',[ArrayMin(data),ArrayMax(data)]);
     174                                        datamin = caxis[0];
     175                                        datamax = caxis[1];
     176                                        datadelta = datamax - datamin;
     177                                        texcoords.itemSize = 2;
     178                                        for(var i = 0; i < x.length; i++){
     179                                                vertices[vertices.length] = x[i];
     180                                                vertices[vertices.length] = y[i];
     181                                                vertices[vertices.length] = z[i];
     182
     183                                                texcoords[texcoords.length] = 0.5;
     184                                                texcoords[texcoords.length] = (data[i] - datamin) / datadelta;
     185                                        }
     186                                }
     187
    127188                                //linearize the elements array:
    128189                                indices = indices.concat.apply(indices, elements);
     
    149210       
    150211        /*Initalize buffers: */
    151         node["arrays"] = [vertices, texcoords, indices];
    152         node["buffers"] = initBuffers(gl,node["arrays"]);
     212        if (data["1"] instanceof Float64Array) {
     213                node["arrays"] = [vertices, texcoords, indices];
     214                node["buffers"] = initBuffers(gl,[node["arrays"][0],node["arrays"][1][0],node["arrays"][2]]);
     215        }
     216        else {
     217                node["arrays"] = [vertices, texcoords, indices];
     218                node["buffers"] = initBuffers(gl,node["arrays"]);
     219        }
    153220}
Note: See TracChangeset for help on using the changeset viewer.