-
Generating routes on basecamp will generate a GPX file with startPoint and endPoint.
- The .GPX will also include all the "segments" (where you need to turn, for example) between two points
- The foretrex will NEVER read those points.
- The data should either be stripped from the GPX or used by the GPS (second choice is probably better)
-
The files where routes/tracks are stored are GPX files (basically XML files)
- Route line example (len=72 bytes):
<gpxx:rpt lat="48.603794574737549" lon="1.569714546203613" />
- Could be lowered to 16 bytes (2 x double) → 78% size reduction
- Route line example (len=72 bytes):
-
Track line example (len=65 bytes):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local gameinipath = "C:/Users/pierr/AppData/Local/Mordhau/Saved/Config/WindowsClient/Game.ini" | |
local BONE_LIP_INNER = 1 | |
local BONE_LIP_INNER_EXT = 2 | |
local BONE_MAXILIA = 3 | |
local BONE_WHOLE_EYEBROW_1 = 4 | |
local BONE_UNKNOWN_05 = 5 | |
local BONE_WHOLE_EYEBROW_2 = 6 | |
local BONE_EYE_1 = 7 | |
local BONE_UNKNOWN_08 = 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local namedEmojisTable = {["man in business suit levitating"] = "🕴",["alien"] = "👾",["rosette"] = "🏵",["circus tent"] = "🎪",["performing arts"] = "🎭",["artist palette"] = "🎨",["slot machine"] = "🎰",["rowboat"] = "🚣",["bath"] = "🛀",["direct hit"] = "🎯",["military medal"] = "🎖",["reminder ribbon"] = "🎗",["admission tickets"] = "🎟",["ticket"] = "🎫",["soccer ball"] = "⚽",["baseball"] = "⚾",["basketball and hoop"] = "🏀",["american football"] = "🏈",["rugby football"] = "🏉",["tennis racquet and ball"] = "🎾",["billiards"] = "🎱",["bowling"] = "🎳",["flag in hole"] = "⛳",["golfer"] = "🏌",["ice skate"] = "⛸",["fishing pole and fish"] = "🎣",["ski and ski boot"] = "🎿",["skier"] = "⛷",["snowboarder"] = "🏂",["surfer"] = "🏄",["horse racing"] = "🏇",["swimmer"] = "🏊",["weight lifter"] = "🏋",["bicyclist"] = "🚴",["mountain bicyclist"] = "🚵",["sports medal"] = "🏅",["trophy"] = "🏆",["cricket bat and ball"] = "🏏",["volleyball"] = "🏐",["field hockey stick and ball"] = "🏑",["ice hockey stick and puck"] = "🏒",["table tennis paddle and |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TRACE FAIL --- @lua/includes/util.lua:178 -- NYI: bytecode FNEW at @lua/includes/util.lua:182] | |
[TRACE FAIL --- @lua/includes/util.lua:178 -- NYI: bytecode FNEW at @lua/includes/util.lua:182] | |
[TRACE FAIL --- @lua/includes/extensions/client/panel/scriptedpanels.lua:71 -- NYI: bytecode FNEW at @lua/includes/extensions/client/panel/scriptedpanels.lua:89] | |
[TRACE FAIL --- (4/0) @lua/includes/modules/list.lua:30 -- NYI: bytecode UCLO at @gamemodes/sandbox/entities/weapons/gmod_tool/stools/colour.lua:131] | |
[TRACE FAIL --- (5/0) @lua/includes/modules/list.lua:40 -- NYI: bytecode UCLO at @gamemodes/sandbox/entities/weapons/gmod_tool/stools/dynamite.lua:178] | |
[TRACE FAIL --- (5/0) @lua/includes/modules/list.lua:40 -- NYI: bytecode UCLO at @gamemodes/sandbox/entities/weapons/gmod_tool/stools/hoverball.lua:220] | |
[TRACE FAIL --- (5/0) @lua/includes/modules/list.lua:40 -- NYI: bytecode UCLO at @gamemodes/sandbox/entities/weapons/gmod_tool/stools/lamp.lua:280] | |
[TRACE FAIL --- (5/0) @lua/includes/modules/list.lua:40 -- NYI: byt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local nBranch = 1 | |
local nLoops = 2000000 | |
print("NUMBER_BRANCHS,TIME_ELSEIF,TIME_LOOKUP") | |
while (nBranch <= 100) do | |
io.write(nBranch) | |
io.write(",") | |
local valueName = "iInner" | |
local elseifCodeTable = {"local iOutter = 1\nwhile iOutter <= " .. nLoops .. " do\n\tlocal iInner = 1\n\tlocal dummy;\n\twhile iInner <= " .. nBranch .. " do\n", "\t\tend\n\t\tiInner = iInner + 1\n\tend\n\tiOutter = iOutter + 1\nend"} | |
local i = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require("printtable") | |
jit.util = require("jit.util") | |
local function getSubFunctions(fn) | |
local ret = {} | |
local i = -1 | |
while true do |
3 methods used
local ret_allocated = {}
ret_allocated[1] = function() return {1} end
ret_allocated[2] = function() return {1, 1} end
ret_allocated[4] = function() return {1, 1, 1, 1} end
ret_allocated[8] = function() return {1, 1, 1, 1, 1, 1, 1, 1} end
ret_allocated[16] = function() return {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} end
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--fast | |
function bit.MSB(value) | |
value = bit.bor(value, bit.rshift(value, 1)) | |
value = bit.bor(value, bit.rshift(value, 2)) | |
value = bit.bor(value, bit.rshift(value, 4)) | |
value = bit.bor(value, bit.rshift(value, 8)) | |
value = bit.bor(value, bit.rshift(value, 16)) | |
value = value + 1 | |
value = bit.rshift(value, 1) |