This commit is contained in:
Joel Wetzell
2026-07-13 14:15:47 -05:00
parent 466228fb4a
commit 68db557090
7 changed files with 12 additions and 15 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// recreation of psn_client.cpp example from https://github.com/vyv/psn-cpp
const dgram = require('dgram');
const { Decoder } = require('../dist/cjs');
const dgram = require('node:dgram');
const { Decoder } = require('@jwetzell/posistagenet');
const client = dgram.createSocket('udp4');
const decoder = new Decoder();
+3 -3
View File
@@ -1,6 +1,6 @@
// recreation of psn_server.cpp example from https://github.com/vyv/psn-cpp
const dgram = require('dgram');
const { Encoder, Tracker } = require('../dist/cjs');
const dgram = require('node:dgram');
const { Encoder, Tracker } = require('@jwetzell/posistagenet');
const client = dgram.createSocket('udp4');
const encoder = new Encoder('Test PSN Server', 2, 0);
@@ -25,7 +25,7 @@ const distFromSun = [
let timestamp = 0;
setInterval(() => {
orbits.forEach((orbit, index) => {
orbits.forEach((_, index) => {
const a = 1.0 / orbits[index];
const b = distFromSun[index];
const x = timestamp;