162 lines
4.0 KiB
Haxe
162 lines
4.0 KiB
Haxe
package lime.utils;
|
|
|
|
#if (js && !doc_gen)
|
|
#if haxe4
|
|
import js.lib.Uint8Array as JSUInt8Array;
|
|
import js.lib.Uint32Array as JSUInt32Array;
|
|
#else
|
|
import js.html.Uint8Array as JSUInt8Array;
|
|
import js.html.Uint32Array as JSUInt32Array;
|
|
#end
|
|
@:forward
|
|
abstract UInt32Array(JSUInt32Array) from JSUInt32Array to JSUInt32Array/* to ArrayBufferView*/
|
|
{
|
|
public inline static var BYTES_PER_ELEMENT:Int = 4;
|
|
|
|
@:generic
|
|
public inline function new<T>(?elements:Int, ?array:Array<T>, #if openfl ?vector:openfl.Vector<Int>, #end ?view:ArrayBufferView, ?buffer:ArrayBuffer,
|
|
?byteoffset:Int = 0, ?len:Null<Int>)
|
|
{
|
|
if (elements != null)
|
|
{
|
|
this = new JSUInt32Array(elements);
|
|
}
|
|
else if (array != null)
|
|
{
|
|
this = new JSUInt32Array(untyped array);
|
|
#if (openfl && commonjs)
|
|
}
|
|
else if (vector != null)
|
|
{
|
|
this = new JSUInt32Array(untyped (vector));
|
|
#elseif openfl
|
|
}
|
|
else if (vector != null)
|
|
{
|
|
this = new JSUInt32Array(untyped untyped (vector).__array);
|
|
#end
|
|
}
|
|
else if (view != null)
|
|
{
|
|
this = new JSUInt32Array(untyped view);
|
|
}
|
|
else if (buffer != null)
|
|
{
|
|
if (len == null)
|
|
{
|
|
this = new JSUInt32Array(buffer, byteoffset);
|
|
}
|
|
else
|
|
{
|
|
this = new JSUInt32Array(buffer, byteoffset, len);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this = null;
|
|
}
|
|
}
|
|
|
|
@:arrayAccess @:extern inline function __set(idx:Int, val:UInt):UInt
|
|
return this[idx] = val;
|
|
|
|
@:arrayAccess @:extern inline function __get(idx:Int):UInt
|
|
return this[idx];
|
|
|
|
// non spec haxe conversions
|
|
inline public static function fromBytes(bytes:haxe.io.Bytes, ?byteOffset:Int = 0, ?len:Int):UInt32Array
|
|
{
|
|
if (byteOffset == null) return new JSUInt32Array(cast bytes.getData());
|
|
if (len == null) return new JSUInt32Array(cast bytes.getData(), byteOffset);
|
|
return new JSUInt32Array(cast bytes.getData(), byteOffset, len);
|
|
}
|
|
|
|
inline public function toBytes():haxe.io.Bytes
|
|
{
|
|
return @:privateAccess new haxe.io.Bytes(cast new JSUInt8Array(this.buffer));
|
|
}
|
|
|
|
inline function toString()
|
|
return this != null ? 'UInt32Array [byteLength:${this.byteLength}, length:${this.length}]' : null;
|
|
}
|
|
#else
|
|
import lime.utils.ArrayBufferView;
|
|
|
|
@:forward
|
|
abstract UInt32Array(ArrayBufferView) from ArrayBufferView to ArrayBufferView
|
|
{
|
|
public inline static var BYTES_PER_ELEMENT:Int = 4;
|
|
|
|
public var length(get, never):Int;
|
|
|
|
@:generic
|
|
public inline function new<T>(?elements:Int, ?buffer:ArrayBuffer, ?array:Array<T>, #if openfl ?vector:openfl.Vector<Int>, #end ?view:ArrayBufferView,
|
|
?byteoffset:Int = 0, ?len:Null<Int>)
|
|
{
|
|
if (elements != null)
|
|
{
|
|
this = new ArrayBufferView(elements, Uint32);
|
|
}
|
|
else if (array != null)
|
|
{
|
|
this = new ArrayBufferView(0, Uint32).initArray(array);
|
|
#if openfl
|
|
}
|
|
else if (vector != null)
|
|
{
|
|
this = new ArrayBufferView(0, Uint32).initArray(untyped (vector).__array);
|
|
#end
|
|
}
|
|
else if (view != null)
|
|
{
|
|
this = new ArrayBufferView(0, Uint32).initTypedArray(view);
|
|
}
|
|
else if (buffer != null)
|
|
{
|
|
this = new ArrayBufferView(0, Uint32).initBuffer(buffer, byteoffset, len);
|
|
}
|
|
else
|
|
{
|
|
throw "Invalid constructor arguments for UInt32Array";
|
|
}
|
|
}
|
|
|
|
// Public API
|
|
public inline function subarray(begin:Int, end:Null<Int> = null):UInt32Array
|
|
return this.subarray(begin, end);
|
|
|
|
// non spec haxe conversions
|
|
inline public static function fromBytes(bytes:haxe.io.Bytes, ?byteOffset:Int = 0, ?len:Int):UInt32Array
|
|
{
|
|
return new UInt32Array(bytes, byteOffset, len);
|
|
}
|
|
|
|
inline public function toBytes():haxe.io.Bytes
|
|
{
|
|
return this.buffer;
|
|
}
|
|
|
|
// Internal
|
|
inline function get_length()
|
|
return this.length;
|
|
|
|
@:noCompletion
|
|
@:arrayAccess @:extern
|
|
public inline function __get(idx:Int)
|
|
{
|
|
return ArrayBufferIO.getUint32(this.buffer, this.byteOffset + (idx * BYTES_PER_ELEMENT));
|
|
}
|
|
|
|
@:noCompletion
|
|
@:arrayAccess @:extern
|
|
public inline function __set(idx:Int, val:UInt)
|
|
{
|
|
ArrayBufferIO.setUint32(this.buffer, this.byteOffset + (idx * BYTES_PER_ELEMENT), val);
|
|
return val;
|
|
}
|
|
|
|
inline function toString()
|
|
return this != null ? 'UInt32Array [byteLength:${this.byteLength}, length:${this.length}]' : null;
|
|
}
|
|
#end // !js
|