
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
This is a module that parses SimCity 2000 save files (*.SC2)
After the file is parsed, the parser returns a map of coordinates to tile info objects. See comments and save file documentation for more information about what each property is.
The struct looks like:
{
tiles: [
{
alt: 50,
building: 0,
conductive: false,
piped: false,
powersupplied: false,
saltwater: false,
terrain: {
slope: [0,0,0,0],
waterLevel: 0
},
underground: {
slope: [0,0,0,0],
subway: true
},
water: false,
watercover: false,
watersupplied: false,
zone: {
bottomLeft: false,
bottomRight: false,
topLeft: false,
topRight: false,
type: 0
}
}
],
cityName: "Cool City",
daysElapsed: 0,
founded: 34,
money: 0,
population: 255
}
Pass a typed array of bytes to the parse function like this:
let sc2kparser = require('sc2kparser');
// get file bytes somehow
let bytes = new Uint8Array(...);
let struct = sc2kparser.parse(bytes);
console.log(struct);
Here is an easy way to get a sc2k save file in the browser:
document.body.addEventListener('dragover', function(event) {
event.preventDefault();
event.stopPropagation();
}, false);
document.body.addEventListener('drop', function(event) {
event.preventDefault();
event.stopPropagation();
let file = event.dataTransfer.files[0];
let fileReader = new FileReader();
fileReader.onload = function(e) {
let bytes = new Uint8Array(e.target.result);
let struct = sc2kparser.parse(bytes);
console.log(struct);
};
fileReader.readAsArrayBuffer(file);
}, false);
Thanks to David Moews for his documentation of the file format. (simcity-2000-info.txt)
ISC
FAQs
SimCity 2000 save file parser
The npm package sc2kparser receives a total of 0 weekly downloads. As such, sc2kparser popularity was classified as not popular.
We found that sc2kparser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.