Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Thrasher

Pages: [1] 2
1
Graphics / Re: Using sf::Text and sf::Font in Windows ×64 MinGW
« on: May 30, 2023, 09:49:49 pm »
https://github.com/SFML/SFML#community

If you come over to the Discord server you can get some help on this. There's a number of potential reasons you have linker errors

2
Window / Re: Clock in sf:Window
« on: May 17, 2023, 09:10:47 pm »
https://github.com/SFML/SFML/pull/2554

It's so funny you bring this up because I made this very PR yesterday! Please give this a thumbs up or approval if it's something you'd use.

3
SFML development / Re: RenderStates const ref in draw()
« on: May 10, 2023, 07:44:30 pm »
https://github.com/SFML/SFML/pull/2008

The previous version meant all draw calls necessarily copied RenderStates. Now that copy only happens when required. You have to explicitly make a copy if you want a copy but you're not forced to pay the price of that copy if you don't need it.

4
Is it a given that we still need 3 window types for the three use cases currently covered by WindowBase, Window, and RenderWindow? If we drop one of those use cases then I can see ways to simplify things but if we still need to support all three then I'm not sure what improvements are viable.

5
SFML development / Re: Allow for Limiting (Max & Min) Window Size
« on: April 27, 2023, 10:43:02 pm »
https://github.com/SFML/SFML/pull/2519

This PR is feature-complete and ready for testing and scrutiny.

6
How do you define this in the general case for all polygons?

7
SFML development / Re: Allow for Limiting (Max & Min) Window Size
« on: April 16, 2023, 06:52:30 am »
https://github.com/SFML/SFML/pull/2519

Work on this is well underway

8
SFML development / Re: sf::Clock should be renamed to sf::StopWatch
« on: March 17, 2023, 05:39:08 am »
Alternatively `sf::Timer` although "timer" may imply that it's counting down to zero instead of up towards infinity.

9
SFML development / sf::Clock should be renamed to sf::StopWatch
« on: March 14, 2023, 12:47:23 am »
A clock will tell you the time. This is what the clock on your computer, your wrist, or the wall tells you. It's also how the C++ standard uses the world "clock". A clock will give you a point in time.

sf::Clock does not behave that way. It only measures the elapsed time between two points in time. This is how it's implemented. It creates a time point upon construction then takes the difference between a new time point and the original time point to create a duration which is returned to the caller. Its interface exposes no concept of a point in time. It only understands durations. For that reason it ought to be renamed to sf::StopWatch in SFML 3. With that new name, it becomes much more natural to model the behavior of a stop watch, meaning adding the ability to stop and resume the timer at will.

We might even go so far as to rename sf::Time as sf::Duration since sf::Duration is homomorphic with a std::chrono::duration.

10
SFML development / Re: Allow for Limiting (Max & Min) Window Size
« on: March 05, 2023, 06:10:09 pm »
A way to specify a minimize window size would be great. The layout of your program is prone to break below a specific size so it makes sense to prohibit making it smaller than whatever that size is. I'm not sure what the use case of a maximum size is but I'm open to adding that interface.

My impression is that the X11 experiments about minimum window sizes showed that it was hard to get to get right. You say "it's basically impossible to fix, unless there's a minimum (or maximum) size defined beforehand.". Can you explain? If adding this API let us fix the X11 resizing issues that would be great.

11
SFML development / Re: How should SFML handle non-legacy shaders?
« on: February 20, 2023, 12:59:27 am »
https://github.com/SFML/SFML/issues/2423

I opened an issue to continue this discussion.

12
Feature requests / Re: (CMake) Make BUILD_SHARED_LIBS=OFF by default
« on: February 03, 2023, 11:48:15 pm »
https://github.com/SFML/SFML/issues/2389

I opened an issue to remove any reference to `BUILD_SHARED_LIBS` and thus change back to the CMake default of static libraries.

13
General discussions / Re: When roughly can we expect 2.6.0?
« on: January 13, 2023, 06:35:34 pm »
I'd prefer we set a deadline to release 2.6.0 in the next 30-45 days. If that means scan codes wait until 2.7.0 or 3.0.0 I'm fine with that. However I believe I'm the sole maintainer with this opinion so don't expect this to actually happen.

14
SFML development / Re: sf::Font Change & sf::Text Notification
« on: October 05, 2022, 01:25:20 am »
void sf::Font::onUpdate(const std::function<void(your-args-here)>&) is a compelling interface option to me. std::function provides all the utilities we need to easily implement this. I'm not convinced we need to support an arbitrary number of callables, at least not initially.

15
General discussions / Re: New SFML Team Member: Thrasher
« on: September 28, 2022, 12:55:25 am »
Honored to join! I've got a lot of stuff queued up for SFML 3 and really excited to see what we can make of it!

Pages: [1] 2