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

Author Topic: Some unicode characters is not rendered with Text  (Read 8928 times)

0 Members and 1 Guest are viewing this topic.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Some unicode characters is not rendered with Text
« Reply #15 on: September 26, 2015, 01:50:20 pm »
This is probably going to take you forever if you have no idea how to build the bindings (and cannot figure it on your own with the provided docs), and we're not even talking about how to modify them to add the new functions :(
Laurent Gomila - SFML developer

zsbzsb

  • Hero Member
  • *****
  • Posts: 1409
  • Active Maintainer of CSFML/SFML.NET
    • View Profile
    • My little corner...
    • Email
Re: Some unicode characters is not rendered with Text
« Reply #16 on: September 26, 2015, 02:53:04 pm »
There is nothing in CSFML/SFML.NET for text outlining until it is merged into SFML's master. I will add support to CSFML/SFML.NET as soon as that happens. In short: you need to write the wrapper functions in CSFML and then also in SFML.NET.

As for compiling CSFML, it requires CMake - same as SFML. Once you figure out how to compile SFML (follow the tutorial) its basically the same to compile CSFML.
Motion / MotionNET - Complete video / audio playback for SFML / SFML.NET

NetEXT - An SFML.NET Extension Library based on Thor

zsbzsb

  • Hero Member
  • *****
  • Posts: 1409
  • Active Maintainer of CSFML/SFML.NET
    • View Profile
    • My little corner...
    • Email
Re: Some unicode characters is not rendered with Text
« Reply #17 on: September 26, 2015, 04:11:35 pm »
Had some time: https://github.com/SFML/CSFML/tree/feature/outlined_text
Compile that branch if you want outlined text support in CSFML.
Motion / MotionNET - Complete video / audio playback for SFML / SFML.NET

NetEXT - An SFML.NET Extension Library based on Thor

mkalex777

  • Full Member
  • ***
  • Posts: 206
    • View Profile
Re: Some unicode characters is not rendered with Text
« Reply #18 on: September 26, 2015, 05:46:32 pm »
There is nothing in CSFML/SFML.NET for text outlining until it is merged into SFML's master. I will add support to CSFML/SFML.NET as soon as that happens. In short: you need to write the wrapper functions in CSFML and then also in SFML.NET.

As for compiling CSFML, it requires CMake - same as SFML. Once you figure out how to compile SFML (follow the tutorial) its basically the same to compile CSFML.

I have 3 questions:
1) Is CSFML 2.2 source compatible with SFML.NET 2.2?
2) Is SFML 2.3.2 source compatible with CSFML 2.2?
3) Which compiller you can suggest to build CSFML and SFML out of the box? I just want to build it, with no merges and code rewrite

mkalex777

  • Full Member
  • ***
  • Posts: 206
    • View Profile
Re: Some unicode characters is not rendered with Text
« Reply #19 on: September 26, 2015, 05:51:37 pm »
Had some time: https://github.com/SFML/CSFML/tree/feature/outlined_text
Compile that branch if you want outlined text support in CSFML.

Thanks man

zsbzsb

  • Hero Member
  • *****
  • Posts: 1409
  • Active Maintainer of CSFML/SFML.NET
    • View Profile
    • My little corner...
    • Email
Re: Some unicode characters is not rendered with Text
« Reply #20 on: September 26, 2015, 06:03:33 pm »
I have 3 questions:
1) Is CSFML 2.2 source compatible with SFML.NET 2.2?
2) Is SFML 2.3.2 source compatible with CSFML 2.2?
3) Which compiller you can suggest to build CSFML and SFML out of the box? I just want to build it, with no merges and code rewrite

1) Yes*
2) Yes*
3) Doesn't matter, just have to use the same compiler for both

*And regarding points 2 and 3, both outline text branches (in SFML and CSFML) are compatible with each other. If you are building these branches you don't have to worry about version numbers as they are not part of any tagged release (yet).
Motion / MotionNET - Complete video / audio playback for SFML / SFML.NET

NetEXT - An SFML.NET Extension Library based on Thor