Code Monkey home page Code Monkey logo

Comments (10)

le717 avatar le717 commented on August 18, 2024

You are confusing me a bit. In #40 (comment) you said

(b) speed: the paths[] array construction should be moved out of the locate function. it is expensive and only needs to be done once.

It has been moved out of the locate() function since f0037a7, so I'm quite sure where it needs to be now. It is already in the global namespace, so to initialize it any sooner it would have to be moved near the top of the script, around line 50 I'd imagine.

from ldr-importer.

MinnieTheMoocher avatar MinnieTheMoocher commented on August 18, 2024

It has been moved out of the locate() function since f0037a7

No, it hasn't. It gets initialized outside, but each call to locate appends more and more entries.
Look at the calls
paths.append(...)
which, even after that change all are inside the locate() function
and this way get executed each time that function gets called,
which is what this issue complains about.

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

I think I get it now. You are talking about the multiple calls to locate() that almost continually runs paths.append(...) , right?

from ldr-importer.

MinnieTheMoocher avatar MinnieTheMoocher commented on August 18, 2024

No. The multiple calls to locate() are OK.
They happen each time the script tries to locate a required file.
The bug instead is that inside EACH of those calls, the variable paths gets its .append() calls.
They put more and more stuff into that variable each time the function locate() is running.
This is wrong.
Instead, the paths variable should only get filled ONE time, before starting all the loading action.
The locate() function should not tinker with that variable, just READ it.

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

OK, I see what you mean now. Checking the length of the array produced a very large number. So the fix would be to initialize the paths locate() appends with the paths array, as you've been saying.

However, there still has to be some editing somewhere. Since the array starts out with the HighRes and LowRes paths present, the inverse will have to be removed from the array if either of those flags are True. Appending them might work, but then we end up with the importer searching the folders in the wrong order, something we fixed in #52.

from ldr-importer.

MinnieTheMoocher avatar MinnieTheMoocher commented on August 18, 2024

come on, it is not that complicated. simply MOVE the paths.append() calls to the beginning of the script,
right after where the values for HighRes and LowRes are known.

The paths array then can stay as it is the whole lifetime of the script.

There is no need to modify it again.

Its search order will be correct and will be used for every file loaded.

The bug we talk about here is just that the PLACE of the paths.append() calls is wrong.

They ALL should simply be done BEFORE the first call to locate() and then never again.

The whole discussion here already took more time to EXPLAIN the problem than to FIX it... :ยด(

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

Assigning to v1.1.5 milestone.

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

ad87d66 should finally fix this. ๐Ÿ˜…

Apologies for not understanding the issue completely. I didn't mean to annoy you. Sometimes I have trouble understand what people are trying to explain (it probably stems from my inability to sometimes explain what I am taking about). ๐Ÿ˜Ÿ

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

If everything looks good, I'll merge this and prepare the v1.1.5 release.

from ldr-importer.

le717 avatar le717 commented on August 18, 2024

This should be fixed by #56. Closing. ๐Ÿ‘

from ldr-importer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.