Hello!
I have currenty developed a screensaver for Windows in “pure” WPF. It works sort of ok, but performance is not very good and if I run it on a laptop (for instance) with two screens the toll on the gpu is substantial and it sort of defeats almost the whole purpose of a screensaver.
So, I began looking at alternatives! Now, I should mention that this WPF application I made is my very first application ever in Visual Studio .net so I am not an expert in any way, do mostly web stuff otherwise.
I quickly came upon SharpDX, but after looking at samples and trying to do some very “easy” things on my own I have decided that the complexity level is too high for me at this point.
So then I discovered Paradox, which seems nice! I understand from reading about it that it builds on the WPF and .Net platform, but development is done in a separate tool? That is fine either way ofc.
Now, I need to figure out if certain things are possible to do for my little screensaver, so here goes my requirement list
-
Need to be able to start with arguments (like /c /s and /p for preview) (also looked at Unity 3D but that seemed to be impossible to do atm)
-
Need to be able to access folders elsewhere on the drive (for images to use with the screensaver).
-
Need to be able to do multiple windows, one for each monitor the user may have. Each of these windows displaying no borders or “style” (so it looks like fullscreen).
-
Is this the best place to find information regarding how to do things? Or is there some other place I should turn to for information regarding Paradox?
-
Is it overkill to use a game engine to make some 2D transitions??
Thanks for reading!