tilfluktsrom/pwa/node_modules/es-abstract/helpers/valueToFloat16Bytes.js
Ole-Morten Duesund e8428de775 Add progressive web app companion for cross-platform access
Vite + TypeScript PWA that mirrors the Android app's core features:
- Pre-processed shelter data (build-time UTM33N→WGS84 conversion)
- Leaflet map with shelter markers, user location, and offline tiles
- Canvas compass arrow (ported from DirectionArrowView.kt)
- IndexedDB shelter cache with 7-day staleness check
- Service worker with CacheFirst tiles and precached app shell
- i18n for en, nb, nn (ported from Android strings.xml)
- iOS/Android compass handling with low-pass filter
- Respects user map interaction (no auto-snap on pan/zoom)
- Build revision cache-breaker for reliable SW updates

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 17:41:38 +01:00

73 lines
1.7 KiB
JavaScript

'use strict';
var $abs = require('math-intrinsics/abs');
var $floor = require('math-intrinsics/floor');
var $pow = require('math-intrinsics/pow');
var isFinite = require('math-intrinsics/isFinite');
var isNaN = require('math-intrinsics/isNaN');
var isNegativeZero = require('math-intrinsics/isNegativeZero');
var maxFiniteFloat16 = 65504; // 2**16 - 2**5
module.exports = function valueToFloat16Bytes(value, isLittleEndian) {
// NaN → exponent=all-ones, mantissa MSB=1 → 0x7e00
if (isNaN(value)) {
return isLittleEndian
? [0x00, 0x7e]
: [0x7e, 0x00];
}
var leastSig;
// ±0 → just the sign bit
if (value === 0) {
leastSig = isNegativeZero(value) ? 0x80 : 0x00;
return isLittleEndian
? [0x00, leastSig]
: [leastSig, 0x00];
}
// ±∞ → exponent=all-ones, mantissa=0 → 0x7c00 or 0xfc00
if ($abs(value) > maxFiniteFloat16 || !isFinite(value)) {
leastSig = value < 0 ? 0xfc : 0x7c;
return isLittleEndian
? [0x00, leastSig]
: [leastSig, 0x00];
}
var sign = value < 0 ? 1 : 0;
value = $abs(value); // eslint-disable-line no-param-reassign
// normalize to [1,2)
var exponent = 0;
while (value >= 2) {
exponent += 1;
value /= 2; // eslint-disable-line no-param-reassign
}
while (value < 1) {
exponent -= 1;
value *= 2; // eslint-disable-line no-param-reassign
}
// build mantissa (10 bits)
var mantissa = value - 1;
mantissa *= $pow(2, 10) + 0.5;
mantissa = $floor(mantissa);
// apply bias (15) and shift into place
exponent += 15;
exponent <<= 10;
// pack sign, exponent, mantissa
var result = (sign << 15) | exponent | mantissa;
// split into two bytes
var byte0 = result & 0xFF;
result >>= 8;
var byte1 = result & 0xFF;
return isLittleEndian
? [byte0, byte1]
: [byte1, byte0];
};