-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Render text with Parley #5784
base: master
Are you sure you want to change the base?
Conversation
4cee364
to
c48f7f0
Compare
Regarding the risk of diverging use cases for the upstream google-funded components (fontations in particular): Swash itself is likely, in time, to be replaced in Parley with RustyBuzz/Harfruzz (when the port to fontations from ttf-parser is done), and HarfBuzz (along with its ports) is again intended to cover the overwhelming majority of shaping use cases, though conceivably could fall short on very exotic shaping requirements (e.g. shaping byzantine music notation or con-scripts). Thank you for taking on this task. It is exciting to see interest in adopting Parley, and your work has already shaken a lot of dust out. :+ ) |
This is very exciting - thanks for working on this! Let me know if I can help somehow, e.g. if you want to talk things through. |
d27e925
to
cef4a03
Compare
Thanks for the feedback! I've just landed a revert of that in linebender/parley#307 so now Parley's next release will still have an MSRV of 1.82 as the current release does. |
acef4ff
to
9a85210
Compare
I'm now mainly working on the text styling API. It's a bit hard to untangle everything, since there are several different places where text style properties are stashed, each exposing a different API surface:
Parley unlocks some new options for font styling, and also changes the semantics of font styling a bit:
I ran into some issues when trying to map the existing text style API onto Parley. First up, which new font properties should be part of However, italics are currently in If we take that to its conclusion, why not just flatten all the font settings then? Have one big "all of the font style settings" type, and make it overridable CSS-style. I'm not sure yet what this API would look like exactly. I'm also not sure which parts of this new API I can punt on right now, and which ones must be implemented. |
My inclination is to punt on as many things as you can, and save it for a future PR. Better to break things into small pieces. The existing API is indeed all over the place, and partially a result of legacy, and partially a result of technical limitation (e.g. the fake italics). Worth mentioning is that font fallbacks is currently implemented in egui here. Moving italics into The rest of the attributes in |
898e1f7
to
cb5284c
Compare
Things are progressing well; just need to land some Parley changes and clean up the code. There are some issues that might change the API more significantly:
Also, a question: is there any actual difference between |
I agree with you here - let's drop serde-support for
To explain let mut start_text = String::new("Already \n multiline");
ui.text_edit_singleline(&mut start_text); How should egui handle the existing Possible alternative solutions include: Since this is such a niche corner case, I'm happy with any of these solutions.
Yes.
These were added to match the baseline of normal text and emojis (iirc). As long as we can still do that reasonably well, do whatever change you want 👍 In summary: I'm fine with this breaking API, behavior, and rendering in small ways. The wins will outweigh those minor annoyances imho! |
@valadaptive btw, let me know if I can help by talking things through on Discord with you! |
Discord would be great! My username there is the same as here. I see that #5411 just got merged--that's going to involve a major rearchitecture of the work so far, possibly to the point of creating a new branch and manually redoing however much of what I've done so far is still relevant. It may take a while to get around to that; I'm working on some upstream Parley stuff right now. |
)" This reverts commit 557bd56.
The start of pruning the old API
Any attempt to actually borrow it multiple times would deadlock, we never need to clone it, and none of its methods took `self` as mutable, meaning it wasn't making use of the semantic difference between the two. This API is about to get reworked, and simplifying it is a first step.
We only need to borrow certain fields for doing layout. It's much nicer to borrow those fields via a "view type" as necessary than to split the Fonts struct into "fonts" and "*really* fonts" and duplicate a bunch of methods.
This reintroduces a Fonts type that forwards most of its methods, unfortunately. But it will eventually let the FontsStore struct stop storing pixels_per_point--only the view type returned by ctx.fonts() will need to know it.
This is what we were working towards. Now we can get rid of the awful kludge for mixed-DPI viewports and store everything in the same atlas.
Also supports a lot more text styling but still not all of it.
Now that we don't need to share it among a bunch of `Font`s, it can be solely owned by the `FontStore`.
FontTweak
#4644 (superseded)This is very WIP and currently a proof-of-concept. I'm sharing it here so I can ask questions about the API and have something to point to if I need to merge any supporting changes.
Right now, all I have done is basic text rendering. Pretty much everything else still needs to be implemented.
You can see in the commit history that my first pass at this did use Cosmic Text. However, Parley's API surface seems to mesh much better with how egui wants to do things. I ran into a lot of limitations with Cosmic Text that will have to be solved before it's ready for this use case:
Cosmic Text issues
leading_space
inLayoutSection
.Buffer
, not the ones in any particular text span. This means that in e.g. the EasyMark Editor example, where there's mixed-size text, you need to pass the "default" font all the way down, and even then, you might still want different blank lines to have different heights (Empty lines at the start/end of a span should use that span's line height pop-os/cosmic-text#364).Buffer
triggers one relayout per property being set (Make reshaping/relayouting when inputs change lazy pop-os/cosmic-text#280).Buffer
.There are some drawbacks to Parley as well:
parley-todo.md
).There is no guarantee that I'll finish this PR; if you ping me and I respond with something like "sorry, I'll get around to it next week" a few times in a row, feel free to take over it yourself.
I'm tracking progress in more detail via
parley-todo.md
in the root folder, but as an overview, this work can be split into three main parts:max_rows
)FontDefinitions
on top of Parley