Ok, so I'm on the verge of writing a 2d engine for my games. Looking around last night I stumbled onto SFML. It looks nice, especially since it seems very much alive.
My problem is that I don't fancy the graphics portion of it. I, like alot of others nowdays, would like to be pure opengl 3+ with a great deal of shader support.
Until now, I've been using GLFW, which is great, but very non-oop. When I started this project, I ran into making a 'manager' type class for handling batching of draw calls of different types, along with the misc gl things required here and there. Because GLFW is only made to handle 1 screen, I'm required to implement this class as a singleton. I don't like singletons, and this is why I was crawling the web for alternatives last night. Also, GLFW is moving very slowly.
SO... how easy is it to just use the windowing, input and sound portions of sfml, cutting out the graphics and network pieces? Would it be pretty simple for me to add a gl3 forwards context option? I see that it has glew as a dependency, is glew automatically initialized and all of it's functions provided?
If I do switch btw, I'd be happy to contribute to helping get a forward compat graphics module going. I like the interface of the current one, just want it to be gl3+, have easy custom shader support, etc... For example: I like how the primitives have line thickness, and color separate from the fill color... but I would like texture support for line and fill, and also support for 'glowy' lines. I plan to even have linear and exponential fades for the glow lines, since exponential makes for some cool effects shaders in latter stages.
Anyway, just babbling now. I appreciate any responses.
Thanks,