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.


Topics - ToyAuthor

Pages: [1]
1
SFML projects / [General-purpose Library]ToyBox
« on: July 31, 2020, 12:24:45 pm »
Hello every one

It's a set of general-purpose libraries for C++11.
I have been working on it for a long time.
Hope it's helpful for you.

ToyBox
=============
 * Public Domain
 * Only support Linux, Mac, Windows
 * Support to extract file from 7zip, zip.
 * UTF-8 encoding every where.

Repository:
https://github.com/ToyAuthor/ToyBox

List of Third-party Libraries:
https://github.com/ToyAuthor/ToyBox/blob/master/extlibs/readme.txt

Main Page:
https://toyauthor.github.io/ToyBoxDoc/

A shortcut to show demos of ToyBox:
https://toyauthor.github.io/FileSharing/player/beta/win7x64_vc2015_win32/player_beta.zip

Some following features maybe useful to SFML fans.
1.Support a environment with SFML and glew.(see ToyBox/examples/HelloOpenGL/main.cpp)
2.Simple Lua binding.
3.More support to image format.(webp, 8bit gray scale  BMP)

2
SFML website / "Your connection is not secure" error
« on: November 27, 2017, 02:16:17 am »
https://support.mozilla.org/en-US/kb/troubleshoot-time-errors-secure-websites
My system time zone is UTC+08:00
Browser:FireFox 57.0

3
It happened at SFML v2.4.2
I am not sure it is belong to SFML or not.

// It's only crash on Visual Studio 2015
sf::Window(sf::VideoMode(800,600),sf::String(std::wstring(L"title")));

// It looks fine on any compiler
sf::Window(sf::VideoMode(800,600),sf::String(std::wstring(L"title").c_str()));

4
https://gist.github.com/ToyAuthor/580dd4bd2a6741728bf7864a6f723f76

OpenSceneGraph have osgviewerMFC,osgviewerQt,osgviewerSDL,osgviewerFLTK.
But they don't have osgviewerSFML.
So I made one.

5
General / How to change ANDROID_STL option?
« on: July 01, 2016, 06:51:02 am »
Hello everyone!

I try to build a Android App by the following tool.
https://github.com/taka-no-me/android-cmake

And I really made some app without SFML.

But it not support libc++_static/libc++_shared yet.
It can't pass compiler, when I link SFML library.
So I set ANDROID_STL to libstdc++/gnustl_static/gnustl_shared ..., and it don't work too.

Error message still output.
error: undefined reference to 'std::__1::locale::use_facet(std::__1::locale::id&) const'

What sould I do?
Build my own extlibs?(libFLAC.a libfreetype.a ...etc)

Pages: [1]