Naufulglebunusilo


Ever wanted a moshpit of every planet in one? Now here it is!

Content
11 days ago
2.0
1.77K
Environment

g Startup Crash

18 days ago

Failed to load mods: The given sprite rectangle (left_top=0x0, right_bottom=4072x4072) is outside the actual sprite size (left_top=0x0, right_bottom=512x512).
See the log file for more information.: naufulglebunusilo/graphics/starmap-planet-naufulglebunusilo.png

I get this error every time I try launch with the mod enabled. I've tried investigating myself, looking through prototype, google. The best I can guess is something maybe undefined somewhere, but i don't know where. the PNG is a 512, and I can find nothing that is the alleged 4072. The crash reports disabling Naufulglebunusilo and intercontinental-rocketry (or intercontinental-rocketry-forked, both) ... I-R and I-R-F both work fine, once I enable Naufulglebunusilo everything dies.

18 days ago
(updated 18 days ago)

[Mods]
Elevated Rails
Space Age
Quality

[Additional Mods]
Acorn's Rocket Capacity
Ammoniafill
Any Location
Battery-Electric Train
Beacon Productivity and Quality for Space Age
Biter Memoirs
Disco Science
Distant Misfires
Easy Oil Recipes
Electric Boiler
Factorissimo 3
Fire Lights
Fusion Train
Gleba Soil Anywhere
HD Planets -------------------------------- Disabled this
Heat Glow
Infinite Oil/Sulfuric Acid
Intercontinental Rocketry Forked
JKIL's car headlights improved
Landfill on lava
Lavafill
Let me laser down asteroids
Longer underground pipes
Modifiable productivity cap
Modules Rework
Nonspoiling science
Oilfill
Petroleum to light oil
Realistic flashlight fixed
Science pack glow reborn
Tier 4 modules
Tree healing
underground heat pipe
vibrant paint
visible planets in space ------------------------ Disabled this
waterfill
(Not typing this out) https://mods.factorio.com/mod/Rohlinheatagtmuf_Hdhaotaotfnllsape-atnsasri

==================================================
[EDIT]
Disabled the above lined-out mods, this now loads fine. Problem.... I think solved? Leaving this here for anyone else running into the same issue with any of the listed mods. I will be digging into the HD and Space Planets mods later on to see if I can't find what's doing it, now that I know it's in one of them and not This or IR/IRF.

17 days ago

Same, i hope mod become compatible with hd planets on time.

The given sprite rectangle (left_top=0x0, right_bottom=2048x2048) is outside the actual sprite size (left_top=0x0, right_bottom=512x512).
See the log file for more information.: naufulglebunusilo/graphics/starmap-planet-naufulglebunusilo.png

16 days ago

i can upload a fix for hd planets but any graphics replacer for visible planets will have issues with this mod.
the problem is that this mod only changes the filepath without also overwriting the icon size because it assumes it's still 512

13 days ago
(updated 13 days ago)

Visible Planets appears to work fine, since my last post a turned it back on and it works. The error occurs once HD Planets is enabled, so either HD or your mod have to be enabled without the other. I saw lines of code that refer to if this mod = true so-on and so-forth in the Visible Planets I believe, and I'm using both currently just fine. If you're working on a fix for HD Planets it could solve the issue entirely and could possibly be replicated with any new planet that had issues with HD's 4072 sizing.

This is what the HD data.lua has in my folder, as I was attempting to fix it myself without success. I added the exception to insert this planet if the mod is present, and then attempted to manually add a 4072 .png to the HD folder (unzipped) but couldn't find any free upscaler that let me go above 4000px so I don't know if simply making the file 4072 would fix it half-assedly between the mods or if it's a separate issue entirely between them.

........................................................................
planets = {"aquilo","fulgora","gleba","nauvis","shattered-planet","vulcanus",}

if mods["naufulglebunusilo"] then
table.insert(planets,"naufulglebunusilo")
end

for _, name in pairs(planets) do
local prototype = data.raw["space-location"][name] or data.raw["planet"][name]
if not prototype then
log("WARNING: missing space location: "..name)
else
prototype.starmap_icon = "hd_planets/graphics/"..name..".png"
prototype.starmap_icon_size = 4072
end
end
................................................................................

Trying to help with as much leg-work as I can, I'm fairly extremely inexperienced other than fudging around until things work-ish.

13 days ago
(updated 13 days ago)

just below:
planet.starmap_icon = "__naufulglebunusilo__/graphics/starmap-planet-naufulglebunusilo.png"
there needs to be:
planet.starmap_icon_size = 512

or any planet texture mod whose name starts with a letter before "N" will have issues
it's just logical that you set the image size if you change the image on something.
while you're at it, maybe set icon_size too, and dont just assume it will be 64px

11 days ago

I will do this, thank you very much I must've forgot

New response