2019-10-07 20:02:28 +08:00
|
|
|
/**
|
|
|
|
* @author tcode2k16 [tcode2k16@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2019
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Operation from "../Operation.mjs";
|
|
|
|
import Utils from "../Utils.mjs";
|
|
|
|
import ieee754 from "ieee754";
|
|
|
|
import {DELIM_OPTIONS} from "../lib/Delim.mjs";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* From Float operation
|
|
|
|
*/
|
|
|
|
class FromFloat extends Operation {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FromFloat constructor
|
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.name = "From Float";
|
|
|
|
this.module = "Default";
|
2024-04-05 18:10:57 +01:00
|
|
|
this.description = "Convert from IEEE754 Floating Point Numbers";
|
|
|
|
this.infoURL = "https://wikipedia.org/wiki/IEEE_754";
|
2019-10-07 20:02:28 +08:00
|
|
|
this.inputType = "string";
|
|
|
|
this.outputType = "byteArray";
|
|
|
|
this.args = [
|
|
|
|
{
|
|
|
|
"name": "Endianness",
|
|
|
|
"type": "option",
|
|
|
|
"value": [
|
|
|
|
"Big Endian",
|
|
|
|
"Little Endian"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Size",
|
|
|
|
"type": "option",
|
|
|
|
"value": [
|
|
|
|
"Float (4 bytes)",
|
|
|
|
"Double (8 bytes)"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Delimiter",
|
|
|
|
"type": "option",
|
|
|
|
"value": DELIM_OPTIONS
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} input
|
|
|
|
* @param {Object[]} args
|
|
|
|
* @returns {byteArray}
|
|
|
|
*/
|
|
|
|
run(input, args) {
|
|
|
|
if (input.length === 0) return [];
|
|
|
|
|
|
|
|
const [endianness, size, delimiterName] = args;
|
|
|
|
const delim = Utils.charRep(delimiterName || "Space");
|
|
|
|
const byteSize = size === "Double (8 bytes)" ? 8 : 4;
|
|
|
|
const isLE = endianness === "Little Endian";
|
|
|
|
const mLen = byteSize === 4 ? 23 : 52;
|
|
|
|
const floats = input.split(delim);
|
|
|
|
|
|
|
|
const output = new Array(floats.length*byteSize);
|
|
|
|
for (let i = 0; i < floats.length; i++) {
|
|
|
|
ieee754.write(output, parseFloat(floats[i]), i*byteSize, isLE, mLen, byteSize);
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FromFloat;
|