Is there a way to define the colors that shall be used from python?
sm.GetColorSettings() returns a pointer, and plot_options.SetColorSettings() expects a pointer, so I don’t think that it’s possible for me to change the color in between these two?
The only way that I can think of is to add a new color template from a file using sm.AddNewColorSettings(filename) and then fetch its settings using sm.GetColorSettings(“filename”).
Is there a better way than to add a new template using AddNewColorSettings()?
Bonus question:
How do I list the available templates? test_list = sm.GetColorSettingsList() print(str(test_list))
Gives me this output, which I’m not sure what to do with: <Swig Object of type 'std::vector< COLOR_SETTINGS *,std::allocator< COLOR_SETTINGS * > > *' at 0x00000220050FC450>
I did some tests. It seems like its not possible to specify a path in AddNewColorSettings(), just a filename. And it seems like I have to run sm.ReloadColorSettings() after this command.
It works if I place the template file in C:\Users\{username}\AppData\Roaming\kicad\8.0\colors, but it works just as well with only ReloadColorSettings(). Not sure if AddNewColorSettings() looks for the specified filename in any other places. If it only looks in this path and requires ReloadColorSettings() to be executed afterwards, then I don’t really see the point of running it at all. Probably something I’m missing.
Edit: I just realized that I probably misunderstood AddNewColorSettings(). It’s probably used to add a new empty color settings…
Well, it works if I place file named “board2pdf.json” in the path returned by sm.GetColorSettingsPath() and then run these commands:
sm = pcbnew.GetSettingsManager()
sm.ReloadColorSettings()
cs = sm.GetColorSettings(“board2pdf”)
plot_options.SetColorSettings(cs)
And it works fine if I change the colors in the file and run the script again.
But if there’s a way to do this without creating a file I’d love to know about it!
I did some more brain-thinking and I guess that since there is a SaveColorSettings() method, it should be possible to somehow change the settings from python? But I cannot find any functions to change the color settings, and I don’t understand how to work with these variable types.
Sadly, you can’t. When you see a pointer like that or vector<something> it means those classes (or vector template) are not mapped in swig interface and you can’t access any of the fields or methods from python.
You can request these to be added to swig on gitlab but unless they were previously accessible and aren’t anymore because of a regression, chances of them being added are slim because new API is on the way.
Since the SWIG API is depricated, I rather work around it’s flaws than to request things to be added.
No problem, I’ll solve this by generating a json file an placing it at sm.GetColorSettingsPath(). Feels a bit hacky, but if that’s the only way then I’ll go for that solution.
I’m looking forward to the new API! Will start looking at it in the beginning of next year, but I’ll probably need a few examples to build upon and I haven’t found any examples yet. Do you know if there are any?