phantasmal-world/10.10e1d06eef6963e28548.js

1 line
17 KiB
JavaScript
Raw Normal View History

2020-01-29 20:24:47 +08:00
(window.webpackJsonp=window.webpackJsonp||[]).push([[10],{"/UnV":function(t,i,e){"use strict";e.d(i,"a",(function(){return h}));var s=e("rwco"),r=e("BAAx"),n=e("5cb6");const o=s.a.get("core/data_formats/parsing/afs"),a=5457473;function h(t){const i=Object(r.b)(o);if(t.bytes_left<8)return i.add_problem(n.b.Error,"AFS archive is corrupted.","Too small to be an AFS archive.").failure();if(t.u32()!==a)return i.add_problem(n.b.Error,"AFS archive is corrupted.","Magic bytes not present.").failure();const e=t.u16();t.seek(2);const s=[];for(let r=1;r<=e;r++){if(t.bytes_left<8){i.add_problem(n.b.Warning,`AFS file entry ${r} is invalid.`,`Couldn't read file entry ${r}, only ${t.bytes_left} bytes left.`);break}const e=t.u32(),o=t.u32();if(e>t.size)i.add_problem(n.b.Warning,`AFS file entry ${r} is invalid.`,`Invalid file offset ${e} for entry ${r}.`);else if(e+o>t.size)i.add_problem(n.b.Warning,`AFS file entry ${r} is invalid.`,`File size ${o} (offset: ${e}) of entry ${r} too large.`);else{const i=t.position;t.seek_start(e),s.push(t.array_buffer(o)),t.seek_start(i)}}return i.success(s)}},"/Wax":function(t,i,e){"use strict";e.d(i,"a",(function(){return r}));var s=e("9dYx");class r extends s.a{constructor(t,i,e=0,s=t.size-e){if(e<0||e>t.size)throw new Error(`Offset ${e} is out of bounds.`);if(s<0||e+s>t.size)throw new Error(`Size ${s} is out of bounds.`);super(i,e),this.buffer=t,this._size=s}get size(){return this._size}set size(t){t>this._size?this.ensure_size(t-this.position):this._size=t}get backing_buffer(){return this.buffer.backing_buffer}get dv(){return this.buffer.view}take(t){this.check_size("size",t,t);const i=this.offset+this.position,e=new r(this.buffer,this.endianness,i,t);return this._position+=t,e}ensure_size(t,i=this.position){const e=i+t-this._size;e>0&&(this._size+=e,this.buffer.size<this.offset+this._size&&(this.buffer.size=this.offset+this._size))}}},"9dYx":function(t,i,e){"use strict";var s=e("bcBH");class r{constructor(t,i){this._position=0,this.endianness=t,this.offset=i}get position(){return this._position}get endianness(){return this.little_endian?s.a.Little:s.a.Big}set endianness(t){this.little_endian=t===s.a.Little}get bytes_left(){return this.size-this.position}seek(t){return this.seek_start(this.position+t)}seek_start(t){if(t<0||t>this.size)throw new Error(`Offset ${t} is out of bounds.`);return this._position=t,this}seek_end(t){if(t<0||t>this.size)throw new Error(`Offset ${t} is out of bounds.`);return this._position=this.size-t,this}u8(){return this.u8_at(this._position++)}u8_at(t){return this.check_offset(t,1),this.dv.getUint8(this.offset+t)}u16(){const t=this.u16_at(this.position);return this._position+=2,t}u16_at(t){return this.check_offset(t,2),this.dv.getUint16(this.offset+t,this.little_endian)}u32(){const t=this.u32_at(this.position);return this._position+=4,t}u32_at(t){return this.check_offset(t,4),this.dv.getUint32(this.offset+t,this.little_endian)}i8(){return this.i8_at(this._position++)}i8_at(t){return this.check_offset(t,1),this.dv.getInt8(this.offset+t)}i16(){const t=this.i16_at(this.position);return this._position+=2,t}i16_at(t){return this.check_offset(t,2),this.dv.getInt16(this.offset+t,this.little_endian)}i32(){const t=this.i32_at(this.position);return this._position+=4,t}i32_at(t){return this.check_offset(t,4),this.dv.getInt32(this.offset+t,this.little_endian)}f32(){const t=this.f32_at(this.position);return this._position+=4,t}f32_at(t){return this.check_offset(t,4),this.dv.getFloat32(this.offset+t,this.little_endian)}u8_array(t){this.check_size("n",t,t);const i=[];for(let e=0;e<t;++e)i.push(this.dv.getUint8(this.offset+this._position++));return i}u16_array(t){this.check_size("n",t,2*t);const i=[];for(let e=0;e<t;++e)i.push(this.dv.getUint16(this.offset+this.position,this.little_endian)),this._position+=2;return i}u32_array(t){this.check_size("n",t,4*t);const i=[];for(let e=0;e<t;++e)i.push(this.dv.getUint32(this.offset+this.position,this.little_endian)),this._position+=4;return i}i32_array(t){this.check_size("n",t,4*t);const i=[];for(let e=0;e<t;++e)i.push(this.dv.getInt32(this.offset+