1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
/*
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if(!dojo._hasResource["dojox.gfx3d.scheduler"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.gfx3d.scheduler"] = true;
dojo.provide("dojox.gfx3d.scheduler");
dojo.provide("dojox.gfx3d.drawer");
dojo.require("dojox.gfx3d.vector");
dojo.mixin(dojox.gfx3d.scheduler, {
zOrder: function(buffer, order){
order = order ? order : dojox.gfx3d.scheduler.order;
buffer.sort(function(a, b){
return order(b) - order(a);
});
return buffer;
},
bsp: function(buffer, outline){
// console.debug("BSP scheduler");
outline = outline ? outline : dojox.gfx3d.scheduler.outline;
var p = new dojox.gfx3d.scheduler.BinarySearchTree(buffer[0], outline);
dojo.forEach(buffer.slice(1), function(item){ p.add(item, outline); });
return p.iterate(outline);
},
// default implementation
order: function(it){
return it.getZOrder();
},
outline: function(it){
return it.getOutline();
}
});
dojo.declare("dojox.gfx3d.scheduler.BinarySearchTree", null, {
constructor: function(obj, outline){
// summary: build the binary search tree, using binary space partition algorithm.
// The idea is for any polygon, for example, (a, b, c), the space is divided by
// the plane into two space: plus and minus.
//
// for any arbitary vertex p, if(p - a) dotProduct n = 0, p is inside the plane,
// > 0, p is in the plus space, vice versa for minus space.
// n is the normal vector that is perpendicular the plate, defined as:
// n = ( b - a) crossProduct ( c - a )
//
// in this implementation, n is declared as normal, ,a is declared as orient.
//
// obj: object: dojox.gfx3d.Object
this.plus = null;
this.minus = null;
this.object = obj;
var o = outline(obj);
this.orient = o[0];
this.normal = dojox.gfx3d.vector.normalize(o);
},
add: function(obj, outline){
var epsilon = 0.5,
o = outline(obj),
v = dojox.gfx3d.vector,
n = this.normal,
a = this.orient,
BST = dojox.gfx3d.scheduler.BinarySearchTree;
if(
dojo.every(o, function(item){
return Math.floor(epsilon + v.dotProduct(n, v.substract(item, a))) <= 0;
})
){
if(this.minus){
this.minus.add(obj, outline);
}else{
this.minus = new BST(obj, outline);
}
}else if(
dojo.every(o, function(item){
return Math.floor(epsilon + v.dotProduct(n, v.substract(item, a))) >= 0;
})
){
if(this.plus){
this.plus.add(obj, outline);
} else {
this.plus = new BST(obj, outline);
}
}else{
/*
dojo.forEach(o, function(item){
console.debug(v.dotProduct(n, v.substract(item, a)));
});
*/
throw "The case: polygon cross siblings' plate is not implemneted yet";
}
},
iterate: function(outline){
var epsilon = 0.5;
var v = dojox.gfx3d.vector;
var sorted = [];
var subs = null;
// FIXME: using Infinity here?
var view = {x: 0, y: 0, z: -10000};
if(Math.floor( epsilon + v.dotProduct(this.normal, v.substract(view, this.orient))) <= 0){
subs = [this.plus, this.minus];
}else{
subs = [this.minus, this.plus];
}
if(subs[0]){
sorted = sorted.concat(subs[0].iterate());
}
sorted.push(this.object);
if(subs[1]){
sorted = sorted.concat(subs[1].iterate());
}
return sorted;
}
});
dojo.mixin(dojox.gfx3d.drawer, {
conservative: function(todos, objects, viewport){
// console.debug('conservative draw');
dojo.forEach(this.objects, function(item){
item.destroy();
});
dojo.forEach(objects, function(item){
item.draw(viewport.lighting);
});
},
chart: function(todos, objects, viewport){
// NOTE: ondemand may require the todos' objects to use setShape
// to redraw themselves to maintain the z-order.
// console.debug('chart draw');
dojo.forEach(this.todos, function(item){
item.draw(viewport.lighting);
});
}
// More aggrasive optimization may re-order the DOM nodes using the order
// of objects, and only elements of todos call setShape.
});
}
|