Quote:
I frankly didn't expect you to go this far. I was thinking that having it load a tiff so that people could generate just a text data file would be nice, but this works even better. Would you at least add the option of loading a previously generated TIFF?
Loading a tiff would be an entirely different machine really, This is more of a build a gateway, which is what I thought you we're asking, that would be much simpler to make.
Really none of this is actually all that 'hard' for me, its just finding the time to do it. I suppose I could whip up a component placing program fairly quicky. Perhaps even with smart detection, I have made a few image recognition systems in my bouts working in AI. Though I will probably get away with controlled fuzzy logic: "is this about the size of of a mem/ram, if so is it mostly dark colors, if so then its probably a ram slot otherwise its memory"
However due to how I worked some of the pieces in this I will probably have to make that a seperate system, while its possible to integrate, I would have to parse in a whole ton of
extra tif image controls I didn't plan for. Reading != Writing you could say, while simular I can't easily reverse it (notice the file size, how it went up by like 300kb, yeah thats all tif writing code, I wanted to package it into the program and not have to rely on a library).
Quote:
Oh, and do you know the limitations on sizes for Onlink's gateway TIFFs? I don't have them to the pixel, but if you don't know them, I can find out.
I have no idea what the limits are actually, that would be very helpful.
Quote:
Huh?
In the text file loading, it loads the component locations in sequence based on how they are arranged in the text file. Therefor if you have modem section before the security section, it will take the modem as if it was the security position.
Correct, this will be parsed correctly
Code:
sec 5 4 366 2 366 244
sata 55 9 23 48
modem 16 228
power 26 194
Incorrect! This will treat the sata list as if it was the security list and visa versa (might overlap using the first security for security, didn't test)
Code:
sata 55 9 23 48
sec 5 4 366 2 366 244
modem 16 228
power 26 194