phantasmal-world/9.45d9dbb969cbcc6d1ab8.js

1 line
17 KiB
JavaScript
Raw Normal View History

2020-01-29 20:24:47 +08:00
(window.webpackJsonp=window.webpackJsonp||[]).push([[9],{"/UnV":function(t,e,i){"use strict";i.d(e,"a",(function(){return h}));var s=i("rwco"),r=i("BAAx"),n=i("5cb6");const o=s.a.get("core/data_formats/parsing/afs"),u=5457473;function h(t){const e=Object(r.b)(o);if(t.bytes_left<8)return e.add_problem(n.b.Error,"AFS archive is corrupted.","Too small to be an AFS archive.").failure();if(t.u32()!==u)return e.add_problem(n.b.Error,"AFS archive is corrupted.","Magic bytes not present.").failure();const i=t.u16();t.seek(2);const s=[];for(let r=1;r<=i;r++){if(t.bytes_left<8){e.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 i=t.u32(),o=t.u32();if(i>t.size)e.add_problem(n.b.Warning,`AFS file entry ${r} is invalid.`,`Invalid file offset ${i} for entry ${r}.`);else if(i+o>t.size)e.add_problem(n.b.Warning,`AFS file entry ${r} is invalid.`,`File size ${o} (offset: ${i}) of entry ${r} too large.`);else{const e=t.position;t.seek_start(i),s.push(t.array_buffer(o)),t.seek_start(e)}}return e.success(s)}},"/Wax":function(t,e,i){"use strict";i.d(e,"a",(function(){return r}));var s=i("9dYx");class r extends s.a{constructor(t,e,i=0,s=t.size-i){if(i<0||i>t.size)throw new Error(`Offset ${i} is out of bounds.`);if(s<0||i+s>t.size)throw new Error(`Size ${s} is out of bounds.`);super(e,i),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 e=this.offset+this.position,i=new r(this.buffer,this.endianness,e,t);return this._position+=t,i}ensure_size(t,e=this.position){const i=e+t-this._size;i>0&&(this._size+=i,this.buffer.size<this.offset+this._size&&(this.buffer.size=this.offset+this._size))}}},"9Ykw":function(t,e,i){"use strict";i.d(e,"a",(function(){return u})),i.d(e,"b",(function(){return h}));var s=i("BAAx"),r=i("rwco"),n=i("5cb6");const o=r.a.get("core/data_formats/parsing/iff");function u(t,e=!1){return a(t,e,[],(t,e,i)=>({type:e,data:t.take(i)}))}function h(t,e=!1){return a(t,e,[],(t,e,i)=>({type:e,size:i}))}function a(t,e,i,r){const u=Object(s.b)(o);let h=!1;for(;t.bytes_left>=8;){const s=t.u32(),o=t.position,a=t.u32();if(a>t.bytes_left){h=!0,e||u.add_problem(0===i.length?n.b.Error:n.b.Warning,"Invalid IFF format.",`Size ${a} was too large (only ${t.bytes_left} bytes left) at position ${o}.`);break}i.push(r(t,s,a))}return h&&0===i.length?u.failure():u.success(i)}},"9dYx":function(t,e,i){"use strict";var s=i("bcBH");class r{constructor(t,e){this._position=0,this.endianness=t,this.offset=e}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 th