Files
nmslib/convert.go
Raum0x2A 284313eacc Updates and Fixes
**resource.go/assets.go**
*  renamed `resources.go` to `assets.go`
*  added dark glyphs - located in assets.go -> assets/glyphs/dark/
*  moved original glyphs - located in assets.go -> assets/glyph/light/

**glyphbanner.go**
* added option to make glyphs vertical and/or dark

**rpcg.go**
* Added a random portal code generator this function takes no args and returns a string

**README.md**
* Fixed some typos (probably more to be fixed)
* Added example of vertical portal banner
* Added list of options for banner creation
* Added example of ``nmslib.RndPortal()`` usage

**go.mod**
* updated go version to 1.16
2021-05-07 16:03:08 +00:00

135 lines
3.8 KiB
Go

package nmslib
import (
"errors"
"fmt"
"strconv"
"strings"
)
/*
Xainesworld Video: https://www.youtube.com/watch?v=xmZbkTahw4w
Fandom Wiki: https://nomanssky.fandom.com/wiki/Portal_address
*/
/*
P2gc - Portal code to galactic coordinates
Requires 1 var and returns 1 var string
var p string
Portal Glyph hex string 12 chars in len (ex. 006afa556c30)
Return var string
Galactic address (ex. 042F:0079:0D55:006A)
*/
func P2gc(p string) (gc string, err error) {
if len(p) == 12 { // Test if length of provided string is 12 chars long
//split sting into X, Y, Z and SSI, and convert coords as an array of intergers
// p[0:0] is not needed and will be ignored
var coord [4]int64
coord[1], err = strconv.ParseInt(p[4:6], 16, 16) // Y coordinate
if err != nil {
panic(err)
}
coord[2], err = strconv.ParseInt(p[6:9], 16, 16) // Z cooridnate
if err != nil {
panic(err)
}
coord[3], err = strconv.ParseInt(p[9:12], 16, 16) // X coordinate
if err != nil {
panic(err)
}
coord[0], err = strconv.ParseInt(p[1:4], 16, 16) // SSI (Star System Identifier)
if err != nil {
panic(err)
}
// apply shifts to Handle the shape/boundaries of the galaxy
if coord[1] <= 128 { // Y
coord[1] = coord[1] + 256 // Y = Y + 0x0100
}
if coord[2] <= 2048 { // Z
coord[2] = coord[2] + 4096 // Z = Z + 0x1000
}
if coord[3] <= 2048 { // X
coord[3] = coord[3] + 4096 // X = X + 0x1000
}
coord[1] = coord[1] - 129 // Y = Y - 0x0081
coord[2] = coord[2] - 2049 // Z = Z - 0x0800
coord[3] = coord[3] - 2049 // X = X - 0x0800
//Format coords as a 4 part hex string (X:Y:Z:SSI) with a zero pad of 4 (ex. 042F:0079:0D55:006A)
gc = fmt.Sprintf("%04X:%04X:%04X:%04X", coord[3], coord[1], coord[2], coord[0])
} else { // if len(p) != 12 return an error
return "", errors.New("a 12char HEX string is required. example: 006afa556c30")
}
return // return formated string
}
/*
Gc2p - Galactic coordinates to portal code
Requires 1 string and 1 int returns a string and error
var gc string
Galactic address (ex. 042F:0079:0D55:006A)
var p int
Planet ID [1-6]
Return var string
Portal Glyph hex string 12 chars in len (ex. 006afa556c30)
*/
func Gc2p(gc string, p int) (portalcode string, err error) {
// split and store string
// coords[0] == X; coords[1] == Y coords[2] == Z;
// coords[3] == SSI coords[4] == P
if p > 6 {
p = 1
}
nustring := fmt.Sprintf("%s:%d", gc, p)
coords := strings.Split(nustring, ":")
for n := 0; n < len(coords); n++ {
portalcode = portalcode + coords[n]
}
//convert coords to an array of intergers
var hexCoords [5]int64
hexCoords[0], err = strconv.ParseInt(coords[4], 16, 16) // P
if err != nil {
panic(err)
}
hexCoords[1], err = strconv.ParseInt(coords[3], 16, 16) // SSI
if err != nil {
panic(err)
}
hexCoords[2], err = strconv.ParseInt(coords[1], 16, 16) // Y
if err != nil {
panic(err)
}
hexCoords[3], err = strconv.ParseInt(coords[2], 16, 16) // Z
if err != nil {
panic(err)
}
hexCoords[4], err = strconv.ParseInt(coords[0], 16, 16) // X
if err != nil {
panic(err)
}
// Apply shifts to Handle the shape/boundaries of the galaxy
hexCoords[2] = hexCoords[2] + 0x81 // Y ->> shift
hexCoords[3] = hexCoords[3] + 0x801 // Z ->> shift
hexCoords[4] = hexCoords[4] + 0x801 // X ->> shift
if hexCoords[3] >= 0x1000 {
hexCoords[3] = hexCoords[3] - 0x1000 // Z <<- shift
}
if hexCoords[2] >= 0x100 {
hexCoords[2] = hexCoords[2] - 0x100 // Y <<- shift
}
// Assemble padded values as a string
portalcode = fmt.Sprintf("%00X%03X", hexCoords[0], hexCoords[1])
for n := 2; n < len(hexCoords); n++ {
if n == 2 {
portalcode = portalcode + fmt.Sprintf("%02X", hexCoords[n])
} else {
portalcode = portalcode + fmt.Sprintf("%03X", hexCoords[n])
}
}
return portalcode, err // return formated string and error
}