|
1 |
| - |
2 |
| -export const moreWork = []; |
3 |
| -const requiredImages = []; |
4 | 1 | // can count required and retreived for a progresss bar indicator...
|
5 |
| -const pendingLoad = []; |
6 | 2 | let didWork = false;
|
7 | 3 | let useOrigin = null;
|
8 | 4 |
|
9 |
| -//------------------------ Image Library --------------------------------- |
10 |
| -export function newImage(src) { |
11 |
| - var i = new Image(); |
12 |
| - var timeout; |
13 |
| - if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin ) |
14 |
| - src = useOrigin + src; |
15 |
| - i.crossOrigin = "Anonymous"; |
16 |
| - i.onerror = (err)=>{ |
17 |
| - console.log( "ERROR:", err ); |
18 |
| - |
19 |
| - } |
20 |
| - i.onload = ()=>{ |
21 |
| - var pl = pendingLoad; |
22 |
| - const rii = requiredImages.indexOf( i ); |
23 |
| - if( rii >= 0 ) |
24 |
| - requiredImages.splice( rii,1); |
25 |
| - |
26 |
| - if( pl.length ) { |
27 |
| - var pi = pl.shift(); |
28 |
| - requiredImages.push( pi.i ); |
29 |
| - //console.log( "loading:", pi.src ); |
30 |
| - window.lastImage = pi.i; |
31 |
| - pi.i.src = pi.src; |
32 |
| - tick(); |
33 |
| - pendingLoad = pl; |
34 |
| - //return; |
35 |
| - } |
36 |
| - |
37 |
| - if( requiredImages.length == 0 ) |
38 |
| - doWork(); |
39 |
| - }; |
40 |
| - i.onerror = ()=>{ |
41 |
| - console.log( "Error result; removing item" ); |
42 |
| - const rii = requiredImages.indexOf( i ); |
43 |
| - if( rii >= 0 ) |
44 |
| - requiredImages.splice( rii,1); |
45 |
| - if( requiredImages.length == 0 ) |
46 |
| - doWork(); |
47 |
| - |
48 |
| - } |
49 |
| - |
50 |
| - //if( pendingLoad.length ) { pendingLoad.push( {i:i,src:src} ); return i; } |
51 |
| - //if( requiredImages.length ) { pendingLoad.push({i:i,src:src}); return i; } |
52 |
| - i.src = src; |
| 5 | +let pending = []; |
53 | 6 |
|
54 |
| - if( requiredImages.length == 0 ) { |
55 |
| - if( didWork ) console.log( "Clearing that we did work already"); |
56 |
| - didWork = false; |
57 |
| - } |
58 |
| - requiredImages.push( i ); |
59 |
| - |
60 |
| - return i; |
| 7 | +export async function wait() { |
| 8 | + await Promise.all( pending ); |
61 | 9 | }
|
62 | 10 |
|
| 11 | +//------------------------ Image Library --------------------------------- |
63 | 12 |
|
64 | 13 | export function getImage(src) {
|
65 | 14 | return new Promise( (res,rej)=>{
|
66 |
| - var i = new Image(); |
| 15 | + const i = new Image(); |
| 16 | + let resi; |
| 17 | + let pi = new Promise( (res,rej)=>{ |
| 18 | + resi = i; |
| 19 | + } ); |
| 20 | + if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin ) |
| 21 | + src = useOrigin + src; |
| 22 | + i.crossOrigin = "Anonymous"; |
| 23 | + i.onload = ()=>{ |
| 24 | + const idx = pending.find( p=>p===pi ); |
| 25 | + if( idx >= 0 ) pending.splice( idx, 1 ); |
| 26 | + res( i ); |
| 27 | + }; |
| 28 | + i.onerror = ()=>{ |
| 29 | + const idx = pending.find( p=>p===pi ); |
| 30 | + if( idx >= 0 ) pending.splice( idx, 1 ); |
| 31 | + rej( src, i ); |
| 32 | + } |
| 33 | + i.src = src; |
| 34 | + pending.push(pi); |
| 35 | + } ); |
| 36 | +} |
| 37 | + |
| 38 | +export function getSound(src) { |
| 39 | + return new Promise( (res,rej)=>{ |
| 40 | + var i = document.createElement( "AUDIO" ); |
67 | 41 | if( src[0] !== '/' && src.substring(0,4)!='http' && useOrigin )
|
68 | 42 | src = useOrigin + src;
|
69 | 43 | i.crossOrigin = "Anonymous";
|
@@ -121,32 +95,6 @@ export function newVideo(src) {
|
121 | 95 | return i;
|
122 | 96 | }
|
123 | 97 |
|
124 |
| -export function addWork( cb ) { |
125 |
| - if( !didWork && requiredImages.length ) |
126 |
| - moreWork.push(cb); |
127 |
| - else |
128 |
| - cb(); |
129 |
| -} |
130 |
| - |
131 |
| - |
132 |
| -async function doWork() { |
133 |
| - doOne(0); |
134 |
| - function doOne( n ){ |
135 |
| - if( n < moreWork.length ){ |
136 |
| - const w = moreWork[n]; |
137 |
| - const result = w(); |
138 |
| - if( result instanceof Promise ) |
139 |
| - result.then( ()=>{ |
140 |
| - doOne( n+1 ); |
141 |
| - }) |
142 |
| - else |
143 |
| - doOne( n+1 ); |
144 |
| - }else { |
145 |
| - moreWork.length = 0; |
146 |
| - didWork = true; |
147 |
| - } |
148 |
| - } |
149 |
| -} |
150 | 98 |
|
151 | 99 | export function setOrigin( origin ) {
|
152 | 100 | useOrigin = origin;
|
|
0 commit comments