Compare commits
29 commits
feature/mo
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c10c458169 | ||
![]() |
59df9d0d88 | ||
![]() |
a96057866d | ||
![]() |
0d82b99c7d | ||
![]() |
77145c130f | ||
![]() |
a2fde65113 | ||
![]() |
9cb67520c7 | ||
![]() |
d93cd6dd30 | ||
![]() |
603bc9ee41 | ||
![]() |
aaf8ef1c89 | ||
![]() |
54ac286a67 | ||
![]() |
fc573bc584 | ||
![]() |
9b596cc8d9 | ||
![]() |
d4ebba3aaf | ||
![]() |
5eea8032db | ||
![]() |
241b542ca3 | ||
![]() |
3557c46ae6 | ||
![]() |
95c98093e9 | ||
![]() |
0337568846 | ||
![]() |
43187455e4 | ||
![]() |
f93372f98a | ||
![]() |
f57d4620ab | ||
![]() |
50e173e403 | ||
![]() |
632a015663 | ||
![]() |
1d20edebc7 | ||
![]() |
110fb75513 | ||
![]() |
519e1f9572 | ||
![]() |
bf98acc61f | ||
![]() |
a1d4bc80c2 |
55
.github/workflows/ci.yml
vendored
Normal file
55
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: ${{ matrix.platform.name }} ${{ matrix.config.name }}
|
||||||
|
runs-on: ${{ matrix.platform.os }}
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
platform:
|
||||||
|
- { name: Windows VS2017, os: windows-2016 }
|
||||||
|
- { name: Windows VS2019, os: windows-latest }
|
||||||
|
- { name: Linux GCC, os: ubuntu-latest }
|
||||||
|
- { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
|
||||||
|
- { name: MacOS XCode, os: macos-latest }
|
||||||
|
config:
|
||||||
|
- { name: Shared, flags: -DBUILD_SHARED_LIBS=TRUE }
|
||||||
|
- { name: Static, flags: -DBUILD_SHARED_LIBS=FALSE }
|
||||||
|
|
||||||
|
include:
|
||||||
|
- platform: { name: MacOS XCode, os: macos-latest }
|
||||||
|
config: { name: Frameworks, flags: -DSFML_BUILD_FRAMEWORKS=TRUE }
|
||||||
|
- platform: { name: MacOS XCode, os: macos-latest }
|
||||||
|
config: { name: iOS, flags: -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR }
|
||||||
|
- platform: { name: Android, os: ubuntu-latest }
|
||||||
|
config: { name: x86, flags: -DCMAKE_ANDROID_ARCH_ABI=x86 -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r18b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 }
|
||||||
|
- platform: { name: Android, os: ubuntu-latest }
|
||||||
|
config: { name: armeabi-v7a, flags: -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r18b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 }
|
||||||
|
steps:
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Linux Dependencies
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
run: sudo apt-get install libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install Android Components
|
||||||
|
if: matrix.platform.name == 'Android'
|
||||||
|
run: |
|
||||||
|
echo "y" | /usr/local/lib/android/sdk/tools/bin/sdkmanager --install "cmake;3.10.2.4988404" --sdk_root=ANDROID_SDK_ROOT
|
||||||
|
sudo ln -sf /usr/local/lib/android/sdk/cmake/3.10.2.4988404/bin/cmake /usr/bin/cmake
|
||||||
|
wget -nv https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip -P $GITHUB_WORKSPACE
|
||||||
|
unzip -qq -d $GITHUB_WORKSPACE android-ndk-r18b-linux-x86_64.zip
|
||||||
|
|
||||||
|
|
||||||
|
- name: Configure CMake
|
||||||
|
shell: bash
|
||||||
|
run: cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install -DSFML_BUILD_EXAMPLES=TRUE -DCMAKE_VERBOSE_MAKEFILE=ON -DSFML_BUILD_TEST_SUITE=TRUE ${{matrix.platform.flags}} ${{matrix.config.flags}}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
shell: bash
|
||||||
|
run: cmake --build $GITHUB_WORKSPACE/build --config Release --target install
|
30
.travis.yml
30
.travis.yml
|
@ -4,6 +4,7 @@ addons:
|
||||||
apt_packages:
|
apt_packages:
|
||||||
- cmake
|
- cmake
|
||||||
- libxrandr-dev
|
- libxrandr-dev
|
||||||
|
- libxcursor-dev
|
||||||
- libudev-dev
|
- libudev-dev
|
||||||
- libopenal-dev
|
- libopenal-dev
|
||||||
- libflac-dev
|
- libflac-dev
|
||||||
|
@ -14,7 +15,7 @@ addons:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- mkdir build && cd build
|
- mkdir build && cd build
|
||||||
- cmake .. $CMAKE_FLAGS -DCMAKE_INSTALL_PREFIX=../install -DSFML_BUILD_EXAMPLES=TRUE
|
- cmake .. $CMAKE_FLAGS -DCMAKE_INSTALL_PREFIX=../install -DSFML_BUILD_EXAMPLES=TRUE -DCMAKE_VERBOSE_MAKEFILE=ON
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cmake --build . --target install
|
- cmake --build . --target install
|
||||||
|
@ -74,16 +75,38 @@ matrix:
|
||||||
env:
|
env:
|
||||||
- CMAKE_FLAGS="-GXcode -DSFML_BUILD_TEST_SUITE=TRUE -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR"
|
- CMAKE_FLAGS="-GXcode -DSFML_BUILD_TEST_SUITE=TRUE -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR"
|
||||||
|
|
||||||
- name: "Visual studio 15 2017 Dynamic"
|
- name: "Visual Studio 15 2017 Dynamic"
|
||||||
os: windows
|
os: windows
|
||||||
env:
|
env:
|
||||||
- CMAKE_FLAGS="-DSFML_BUILD_TEST_SUITE=FALSE"
|
- CMAKE_FLAGS="-DSFML_BUILD_TEST_SUITE=FALSE"
|
||||||
|
|
||||||
- name: "Visual studio 15 2017 Static"
|
- name: "Visual Studio 15 2017 Static"
|
||||||
os: windows
|
os: windows
|
||||||
env:
|
env:
|
||||||
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE -DSFML_BUILD_TEST_SUITE=TRUE"
|
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE -DSFML_BUILD_TEST_SUITE=TRUE"
|
||||||
|
|
||||||
|
- name: "Visual Studio 16 2019 Dynamic"
|
||||||
|
os: windows
|
||||||
|
env:
|
||||||
|
- CMAKE_FLAGS="-DSFML_BUILD_TEST_SUITE=FALSE"
|
||||||
|
- MSBUILD_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin"
|
||||||
|
- VS160COMNTOOLS="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools"
|
||||||
|
- PATH=$MSBUILD_PATH:$PATH
|
||||||
|
install:
|
||||||
|
- choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64"
|
||||||
|
- choco install visualstudio2019-workload-nativedesktop
|
||||||
|
|
||||||
|
- name: "Visual Studio 16 2019 Static"
|
||||||
|
os: windows
|
||||||
|
env:
|
||||||
|
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE -DSFML_BUILD_TEST_SUITE=TRUE"
|
||||||
|
- MSBUILD_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin"
|
||||||
|
- VS160COMNTOOLS="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools"
|
||||||
|
- PATH=$MSBUILD_PATH:$PATH
|
||||||
|
install:
|
||||||
|
- choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64"
|
||||||
|
- choco install visualstudio2019-workload-nativedesktop
|
||||||
|
|
||||||
- name: "Android armeabi-v7a"
|
- name: "Android armeabi-v7a"
|
||||||
language: android
|
language: android
|
||||||
android: &androidComponents
|
android: &androidComponents
|
||||||
|
@ -96,7 +119,6 @@ matrix:
|
||||||
|
|
||||||
install: &androidInstall
|
install: &androidInstall
|
||||||
- echo y | sdkmanager "cmake;3.10.2.4988404"
|
- echo y | sdkmanager "cmake;3.10.2.4988404"
|
||||||
- echo y | sdkmanager "lldb;3.1"
|
|
||||||
- sudo ln -sf /usr/local/android-sdk/cmake/3.10.2.4988404/bin/cmake /usr/bin/cmake
|
- sudo ln -sf /usr/local/android-sdk/cmake/3.10.2.4988404/bin/cmake /usr/bin/cmake
|
||||||
- wget https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip
|
- wget https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip
|
||||||
- unzip -qq android-ndk-r18b-linux-x86_64.zip
|
- unzip -qq android-ndk-r18b-linux-x86_64.zip
|
||||||
|
|
|
@ -47,6 +47,7 @@ if(SFML_STATIC_LIBRARIES)
|
||||||
if(FIND_SFML_OS_LINUX OR FIND_SFML_OS_FREEBSD)
|
if(FIND_SFML_OS_LINUX OR FIND_SFML_OS_FREEBSD)
|
||||||
sfml_bind_dependency(TARGET X11 FRIENDLY_NAME "X11" SEARCH_NAMES "X11")
|
sfml_bind_dependency(TARGET X11 FRIENDLY_NAME "X11" SEARCH_NAMES "X11")
|
||||||
sfml_bind_dependency(TARGET X11 FRIENDLY_NAME "Xrandr" SEARCH_NAMES "Xrandr")
|
sfml_bind_dependency(TARGET X11 FRIENDLY_NAME "Xrandr" SEARCH_NAMES "Xrandr")
|
||||||
|
sfml_bind_dependency(TARGET X11 FRIENDLY_NAME "Xcursor" SEARCH_NAMES "Xcursor")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(FIND_SFML_OS_LINUX)
|
if(FIND_SFML_OS_LINUX)
|
||||||
|
@ -71,11 +72,11 @@ if(SFML_STATIC_LIBRARIES)
|
||||||
if(FIND_SFML_AUDIO_COMPONENT_INDEX GREATER -1)
|
if(FIND_SFML_AUDIO_COMPONENT_INDEX GREATER -1)
|
||||||
sfml_bind_dependency(TARGET OpenAL FRIENDLY_NAME "OpenAL" SEARCH_NAMES "OpenAL" "openal" "openal32")
|
sfml_bind_dependency(TARGET OpenAL FRIENDLY_NAME "OpenAL" SEARCH_NAMES "OpenAL" "openal" "openal32")
|
||||||
if (NOT FIND_SFML_OS_IOS)
|
if (NOT FIND_SFML_OS_IOS)
|
||||||
sfml_bind_dependency(TARGET Vorbis FRIENDLY_NAME "VorbisFile" SEARCH_NAMES "vorbisfile")
|
sfml_bind_dependency(TARGET VORBIS FRIENDLY_NAME "VorbisFile" SEARCH_NAMES "vorbisfile")
|
||||||
sfml_bind_dependency(TARGET Vorbis FRIENDLY_NAME "VorbisEnc" SEARCH_NAMES "vorbisenc")
|
sfml_bind_dependency(TARGET VORBIS FRIENDLY_NAME "VorbisEnc" SEARCH_NAMES "vorbisenc")
|
||||||
endif()
|
endif()
|
||||||
sfml_bind_dependency(TARGET Vorbis FRIENDLY_NAME "Vorbis" SEARCH_NAMES "vorbis")
|
sfml_bind_dependency(TARGET VORBIS FRIENDLY_NAME "Vorbis" SEARCH_NAMES "vorbis")
|
||||||
sfml_bind_dependency(TARGET Vorbis FRIENDLY_NAME "Ogg" SEARCH_NAMES "ogg")
|
sfml_bind_dependency(TARGET VORBIS FRIENDLY_NAME "Ogg" SEARCH_NAMES "ogg")
|
||||||
sfml_bind_dependency(TARGET FLAC FRIENDLY_NAME "FLAC" SEARCH_NAMES "FLAC")
|
sfml_bind_dependency(TARGET FLAC FRIENDLY_NAME "FLAC" SEARCH_NAMES "FLAC")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
///
|
///
|
||||||
/// \section welcome Welcome
|
/// \section welcome Welcome
|
||||||
/// Welcome to the official SFML documentation. Here you will find a detailed
|
/// Welcome to the official SFML documentation. Here you will find a detailed
|
||||||
/// view of all the SFML <a href="./annotated.php">classes</a> and functions. <br/>
|
/// view of all the SFML classes and functions. <br/>
|
||||||
/// If you are looking for tutorials, you can visit the official website
|
/// If you are looking for tutorials, you can visit the official website
|
||||||
/// at <a href="https://www.sfml-dev.org/">www.sfml-dev.org</a>.
|
/// at <a href="https://www.sfml-dev.org/">www.sfml-dev.org</a>.
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Marco Antognini (antognini.marco@gmail.com),
|
// Copyright (C) 2007-2020 Marco Antognini (antognini.marco@gmail.com),
|
||||||
// Laurent Gomila (laurent@sfml-dev.org)
|
// Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Marco Antognini (antognini.marco@gmail.com),
|
// Copyright (C) 2007-2020 Marco Antognini (antognini.marco@gmail.com),
|
||||||
// Laurent Gomila (laurent@sfml-dev.org)
|
// Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Marco Antognini (antognini.marco@gmail.com),
|
// Copyright (C) 2007-2020 Marco Antognini (antognini.marco@gmail.com),
|
||||||
// Laurent Gomila (laurent@sfml-dev.org)
|
// Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Marco Antognini (antognini.marco@gmail.com),
|
// Copyright (C) 2007-2020 Marco Antognini (antognini.marco@gmail.com),
|
||||||
// Laurent Gomila (laurent@sfml-dev.org)
|
// Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Marco Antognini (antognini.marco@gmail.com),
|
// Copyright (C) 2007-2020 Marco Antognini (antognini.marco@gmail.com),
|
||||||
// Laurent Gomila (laurent@sfml-dev.org)
|
// Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>10.6</string>
|
<string>10.6</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
<string>Copyright © 2007-2019 Marco Antognini and Laurent Gomila. Shared under zlib/libpng License.</string>
|
<string>Copyright © 2007-2020 Marco Antognini and Laurent Gomila. Shared under zlib/libpng License.</string>
|
||||||
<key>NSMainNibFile</key>
|
<key>NSMainNibFile</key>
|
||||||
<string>MainMenu</string>
|
<string>MainMenu</string>
|
||||||
<key>NSPrincipalClass</key>
|
<key>NSPrincipalClass</key>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -206,13 +206,13 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
SoundFileReader* m_reader; ///< Reader that handles I/O on the file's format
|
SoundFileReader* m_reader; //!< Reader that handles I/O on the file's format
|
||||||
InputStream* m_stream; ///< Input stream used to access the file's data
|
InputStream* m_stream; //!< Input stream used to access the file's data
|
||||||
bool m_streamOwned; ///< Is the stream internal or external?
|
bool m_streamOwned; //!< Is the stream internal or external?
|
||||||
Uint64 m_sampleOffset; ///< Sample Read Position
|
Uint64 m_sampleOffset; //!< Sample Read Position
|
||||||
Uint64 m_sampleCount; ///< Total number of samples in the file
|
Uint64 m_sampleCount; //!< Total number of samples in the file
|
||||||
unsigned int m_channelCount; ///< Number of channels of the sound
|
unsigned int m_channelCount; //!< Number of channels of the sound
|
||||||
unsigned int m_sampleRate; ///< Number of samples per second
|
unsigned int m_sampleRate; //!< Number of samples per second
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -79,8 +79,8 @@ public:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
T offset; ///< The beginning offset of the time range
|
T offset; //!< The beginning offset of the time range
|
||||||
T length; ///< The length of the time range
|
T length; //!< The length of the time range
|
||||||
};
|
};
|
||||||
|
|
||||||
// Define the relevant Span types
|
// Define the relevant Span types
|
||||||
|
@ -276,10 +276,10 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
InputSoundFile m_file; ///< The streamed music file
|
InputSoundFile m_file; //!< The streamed music file
|
||||||
std::vector<Int16> m_samples; ///< Temporary buffer of samples
|
std::vector<Int16> m_samples; //!< Temporary buffer of samples
|
||||||
Mutex m_mutex; ///< Mutex protecting the data
|
Mutex m_mutex; //!< Mutex protecting the data
|
||||||
Span<Uint64> m_loopSpan; ///< Loop Range Specifier
|
Span<Uint64> m_loopSpan; //!< Loop Range Specifier
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -93,7 +93,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
SoundFileWriter* m_writer; ///< Writer that handles I/O on the file's format
|
SoundFileWriter* m_writer; //!< Writer that handles I/O on the file's format
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -217,7 +217,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const SoundBuffer* m_buffer; ///< Sound buffer bound to the source
|
const SoundBuffer* m_buffer; //!< Sound buffer bound to the source
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -267,15 +267,15 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Types
|
// Types
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
typedef std::set<Sound*> SoundList; ///< Set of unique sound instances
|
typedef std::set<Sound*> SoundList; //!< Set of unique sound instances
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
unsigned int m_buffer; ///< OpenAL buffer identifier
|
unsigned int m_buffer; //!< OpenAL buffer identifier
|
||||||
std::vector<Int16> m_samples; ///< Samples buffer
|
std::vector<Int16> m_samples; //!< Samples buffer
|
||||||
Time m_duration; ///< Sound duration
|
Time m_duration; //!< Sound duration
|
||||||
mutable SoundList m_sounds; ///< List of sounds that are using this buffer
|
mutable SoundList m_sounds; //!< List of sounds that are using this buffer
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -96,8 +96,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<Int16> m_samples; ///< Temporary sample buffer to hold the recorded data
|
std::vector<Int16> m_samples; //!< Temporary sample buffer to hold the recorded data
|
||||||
SoundBuffer m_buffer; ///< Sound buffer that will contain the recorded data
|
SoundBuffer m_buffer; //!< Sound buffer that will contain the recorded data
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -160,8 +160,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static ReaderFactoryArray s_readers; ///< List of all registered readers
|
static ReaderFactoryArray s_readers; //!< List of all registered readers
|
||||||
static WriterFactoryArray s_writers; ///< List of all registered writers
|
static WriterFactoryArray s_writers; //!< List of all registered writers
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -50,9 +50,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
struct Info
|
struct Info
|
||||||
{
|
{
|
||||||
Uint64 sampleCount; ///< Total number of samples in the file
|
Uint64 sampleCount; //!< Total number of samples in the file
|
||||||
unsigned int channelCount; ///< Number of channels of the sound
|
unsigned int channelCount; //!< Number of channels of the sound
|
||||||
unsigned int sampleRate; ///< Samples rate of the sound, in samples per second
|
unsigned int sampleRate; //!< Samples rate of the sound, in samples per second
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -285,13 +285,13 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Thread m_thread; ///< Thread running the background recording task
|
Thread m_thread; //!< Thread running the background recording task
|
||||||
std::vector<Int16> m_samples; ///< Buffer to store captured samples
|
std::vector<Int16> m_samples; //!< Buffer to store captured samples
|
||||||
unsigned int m_sampleRate; ///< Sample rate
|
unsigned int m_sampleRate; //!< Sample rate
|
||||||
Time m_processingInterval; ///< Time period between calls to onProcessSamples
|
Time m_processingInterval; //!< Time period between calls to onProcessSamples
|
||||||
bool m_isCapturing; ///< Capturing state
|
bool m_isCapturing; //!< Capturing state
|
||||||
std::string m_deviceName; ///< Name of the audio capture device
|
std::string m_deviceName; //!< Name of the audio capture device
|
||||||
unsigned int m_channelCount; ///< Number of recording channels
|
unsigned int m_channelCount; //!< Number of recording channels
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -49,9 +49,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Status
|
enum Status
|
||||||
{
|
{
|
||||||
Stopped, ///< Sound is not playing
|
Stopped, //!< Sound is not playing
|
||||||
Paused, ///< Sound is paused
|
Paused, //!< Sound is paused
|
||||||
Playing ///< Sound is playing
|
Playing //!< Sound is playing
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -306,7 +306,7 @@ protected:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
unsigned int m_source; ///< OpenAL source identifier
|
unsigned int m_source; //!< OpenAL source identifier
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -52,8 +52,8 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
struct Chunk
|
struct Chunk
|
||||||
{
|
{
|
||||||
const Int16* samples; ///< Pointer to the audio samples
|
const Int16* samples; //!< Pointer to the audio samples
|
||||||
std::size_t sampleCount; ///< Number of samples pointed by Samples
|
std::size_t sampleCount; //!< Number of samples pointed by Samples
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -182,7 +182,7 @@ protected:
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
NoLoop = -1 ///< "Invalid" endSeeks value, telling us to continue uninterrupted
|
NoLoop = -1 //!< "Invalid" endSeeks value, telling us to continue uninterrupted
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -251,6 +251,20 @@ protected:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
virtual Int64 onLoop();
|
virtual Int64 onLoop();
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Set the processing interval
|
||||||
|
///
|
||||||
|
/// The processing interval controls the period at which the
|
||||||
|
/// audio buffers are filled by calls to onGetData. A smaller
|
||||||
|
/// interval may be useful for low-latency streams. Note that
|
||||||
|
/// the given period is only a hint and the actual period may
|
||||||
|
/// vary. The default processing interval is 10 ms.
|
||||||
|
///
|
||||||
|
/// \param interval Processing interval
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
void setProcessingInterval(Time interval);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -299,24 +313,25 @@ private:
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
BufferCount = 3, ///< Number of audio buffers used by the streaming loop
|
BufferCount = 3, //!< Number of audio buffers used by the streaming loop
|
||||||
BufferRetries = 2 ///< Number of retries (excluding initial try) for onGetData()
|
BufferRetries = 2 //!< Number of retries (excluding initial try) for onGetData()
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Thread m_thread; ///< Thread running the background tasks
|
Thread m_thread; //!< Thread running the background tasks
|
||||||
mutable Mutex m_threadMutex; ///< Thread mutex
|
mutable Mutex m_threadMutex; //!< Thread mutex
|
||||||
Status m_threadStartState; ///< State the thread starts in (Playing, Paused, Stopped)
|
Status m_threadStartState; //!< State the thread starts in (Playing, Paused, Stopped)
|
||||||
bool m_isStreaming; ///< Streaming state (true = playing, false = stopped)
|
bool m_isStreaming; //!< Streaming state (true = playing, false = stopped)
|
||||||
unsigned int m_buffers[BufferCount]; ///< Sound buffers used to store temporary audio data
|
unsigned int m_buffers[BufferCount]; //!< Sound buffers used to store temporary audio data
|
||||||
unsigned int m_channelCount; ///< Number of channels (1 = mono, 2 = stereo, ...)
|
unsigned int m_channelCount; //!< Number of channels (1 = mono, 2 = stereo, ...)
|
||||||
unsigned int m_sampleRate; ///< Frequency (samples / second)
|
unsigned int m_sampleRate; //!< Frequency (samples / second)
|
||||||
Uint32 m_format; ///< Format of the internal sound buffers
|
Uint32 m_format; //!< Format of the internal sound buffers
|
||||||
bool m_loop; ///< Loop flag (true to loop, false to play once)
|
bool m_loop; //!< Loop flag (true to loop, false to play once)
|
||||||
Uint64 m_samplesProcessed; ///< Number of buffers processed since beginning of the stream
|
Uint64 m_samplesProcessed; //!< Number of samples processed since beginning of the stream
|
||||||
Int64 m_bufferSeeks[BufferCount]; ///< If buffer is an "end buffer", holds next seek position, else NoLoop. For play offset calculation.
|
Int64 m_bufferSeeks[BufferCount]; //!< If buffer is an "end buffer", holds next seek position, else NoLoop. For play offset calculation.
|
||||||
|
Time m_processingInterval; //!< Interval for checking and filling the internal sound buffers.
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Identify the operating system
|
// Identify the operating system
|
||||||
// see http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
|
// see https://sourceforge.net/p/predef/wiki/Home/
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -48,16 +48,16 @@ struct SFML_GRAPHICS_API BlendMode
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
enum Factor
|
enum Factor
|
||||||
{
|
{
|
||||||
Zero, ///< (0, 0, 0, 0)
|
Zero, //!< (0, 0, 0, 0)
|
||||||
One, ///< (1, 1, 1, 1)
|
One, //!< (1, 1, 1, 1)
|
||||||
SrcColor, ///< (src.r, src.g, src.b, src.a)
|
SrcColor, //!< (src.r, src.g, src.b, src.a)
|
||||||
OneMinusSrcColor, ///< (1, 1, 1, 1) - (src.r, src.g, src.b, src.a)
|
OneMinusSrcColor, //!< (1, 1, 1, 1) - (src.r, src.g, src.b, src.a)
|
||||||
DstColor, ///< (dst.r, dst.g, dst.b, dst.a)
|
DstColor, //!< (dst.r, dst.g, dst.b, dst.a)
|
||||||
OneMinusDstColor, ///< (1, 1, 1, 1) - (dst.r, dst.g, dst.b, dst.a)
|
OneMinusDstColor, //!< (1, 1, 1, 1) - (dst.r, dst.g, dst.b, dst.a)
|
||||||
SrcAlpha, ///< (src.a, src.a, src.a, src.a)
|
SrcAlpha, //!< (src.a, src.a, src.a, src.a)
|
||||||
OneMinusSrcAlpha, ///< (1, 1, 1, 1) - (src.a, src.a, src.a, src.a)
|
OneMinusSrcAlpha, //!< (1, 1, 1, 1) - (src.a, src.a, src.a, src.a)
|
||||||
DstAlpha, ///< (dst.a, dst.a, dst.a, dst.a)
|
DstAlpha, //!< (dst.a, dst.a, dst.a, dst.a)
|
||||||
OneMinusDstAlpha ///< (1, 1, 1, 1) - (dst.a, dst.a, dst.a, dst.a)
|
OneMinusDstAlpha //!< (1, 1, 1, 1) - (dst.a, dst.a, dst.a, dst.a)
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
|
@ -68,9 +68,9 @@ struct SFML_GRAPHICS_API BlendMode
|
||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
enum Equation
|
enum Equation
|
||||||
{
|
{
|
||||||
Add, ///< Pixel = Src * SrcFactor + Dst * DstFactor
|
Add, //!< Pixel = Src * SrcFactor + Dst * DstFactor
|
||||||
Subtract, ///< Pixel = Src * SrcFactor - Dst * DstFactor
|
Subtract, //!< Pixel = Src * SrcFactor - Dst * DstFactor
|
||||||
ReverseSubtract ///< Pixel = Dst * DstFactor - Src * SrcFactor
|
ReverseSubtract //!< Pixel = Dst * DstFactor - Src * SrcFactor
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -112,12 +112,12 @@ struct SFML_GRAPHICS_API BlendMode
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member Data
|
// Member Data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Factor colorSrcFactor; ///< Source blending factor for the color channels
|
Factor colorSrcFactor; //!< Source blending factor for the color channels
|
||||||
Factor colorDstFactor; ///< Destination blending factor for the color channels
|
Factor colorDstFactor; //!< Destination blending factor for the color channels
|
||||||
Equation colorEquation; ///< Blending equation for the color channels
|
Equation colorEquation; //!< Blending equation for the color channels
|
||||||
Factor alphaSrcFactor; ///< Source blending factor for the alpha channel
|
Factor alphaSrcFactor; //!< Source blending factor for the alpha channel
|
||||||
Factor alphaDstFactor; ///< Destination blending factor for the alpha channel
|
Factor alphaDstFactor; //!< Destination blending factor for the alpha channel
|
||||||
Equation alphaEquation; ///< Blending equation for the alpha channel
|
Equation alphaEquation; //!< Blending equation for the alpha channel
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -147,10 +147,10 @@ SFML_GRAPHICS_API bool operator !=(const BlendMode& left, const BlendMode& right
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Commonly used blending modes
|
// Commonly used blending modes
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
SFML_GRAPHICS_API extern const BlendMode BlendAlpha; ///< Blend source and dest according to dest alpha
|
SFML_GRAPHICS_API extern const BlendMode BlendAlpha; //!< Blend source and dest according to dest alpha
|
||||||
SFML_GRAPHICS_API extern const BlendMode BlendAdd; ///< Add source to dest
|
SFML_GRAPHICS_API extern const BlendMode BlendAdd; //!< Add source to dest
|
||||||
SFML_GRAPHICS_API extern const BlendMode BlendMultiply; ///< Multiply source and dest
|
SFML_GRAPHICS_API extern const BlendMode BlendMultiply; //!< Multiply source and dest
|
||||||
SFML_GRAPHICS_API extern const BlendMode BlendNone; ///< Overwrite dest with source
|
SFML_GRAPHICS_API extern const BlendMode BlendNone; //!< Overwrite dest with source
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -111,8 +111,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
float m_radius; ///< Radius of the circle
|
float m_radius; //!< Radius of the circle
|
||||||
std::size_t m_pointCount; ///< Number of points composing the circle
|
std::size_t m_pointCount; //!< Number of points composing the circle
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -80,23 +80,23 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const Color Black; ///< Black predefined color
|
static const Color Black; //!< Black predefined color
|
||||||
static const Color White; ///< White predefined color
|
static const Color White; //!< White predefined color
|
||||||
static const Color Red; ///< Red predefined color
|
static const Color Red; //!< Red predefined color
|
||||||
static const Color Green; ///< Green predefined color
|
static const Color Green; //!< Green predefined color
|
||||||
static const Color Blue; ///< Blue predefined color
|
static const Color Blue; //!< Blue predefined color
|
||||||
static const Color Yellow; ///< Yellow predefined color
|
static const Color Yellow; //!< Yellow predefined color
|
||||||
static const Color Magenta; ///< Magenta predefined color
|
static const Color Magenta; //!< Magenta predefined color
|
||||||
static const Color Cyan; ///< Cyan predefined color
|
static const Color Cyan; //!< Cyan predefined color
|
||||||
static const Color Transparent; ///< Transparent (black) predefined color
|
static const Color Transparent; //!< Transparent (black) predefined color
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Uint8 r; ///< Red component
|
Uint8 r; //!< Red component
|
||||||
Uint8 g; ///< Green component
|
Uint8 g; //!< Green component
|
||||||
Uint8 b; ///< Blue component
|
Uint8 b; //!< Blue component
|
||||||
Uint8 a; ///< Alpha (opacity) component
|
Uint8 a; //!< Alpha (opacity) component
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -112,7 +112,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<Vector2f> m_points; ///< Points composing the convex polygon
|
std::vector<Vector2f> m_points; //!< Points composing the convex polygon
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -57,7 +57,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
struct Info
|
struct Info
|
||||||
{
|
{
|
||||||
std::string family; ///< The font family
|
std::string family; //!< The font family
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -166,6 +166,10 @@ public:
|
||||||
/// might be available. If the glyph is not available at the
|
/// might be available. If the glyph is not available at the
|
||||||
/// requested size, an empty glyph is returned.
|
/// requested size, an empty glyph is returned.
|
||||||
///
|
///
|
||||||
|
/// You may want to use \ref hasGlyph to determine if the
|
||||||
|
/// glyph exists before requesting it. If the glyph does not
|
||||||
|
/// exist, a font specific default is returned.
|
||||||
|
///
|
||||||
/// Be aware that using a negative value for the outline
|
/// Be aware that using a negative value for the outline
|
||||||
/// thickness will cause distorted rendering.
|
/// thickness will cause distorted rendering.
|
||||||
///
|
///
|
||||||
|
@ -179,6 +183,24 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const Glyph& getGlyph(Uint32 codePoint, unsigned int characterSize, bool bold, float outlineThickness = 0) const;
|
const Glyph& getGlyph(Uint32 codePoint, unsigned int characterSize, bool bold, float outlineThickness = 0) const;
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Determine if this font has a glyph representing the requested code point
|
||||||
|
///
|
||||||
|
/// Most fonts only include a very limited selection of glyphs from
|
||||||
|
/// specific Unicode subsets, like Latin, Cyrillic, or Asian characters.
|
||||||
|
///
|
||||||
|
/// While code points without representation will return a font specific
|
||||||
|
/// default character, it might be useful to verify whether specific
|
||||||
|
/// code points are included to determine whether a font is suited
|
||||||
|
/// to display text in a specific language.
|
||||||
|
///
|
||||||
|
/// \param codePoint Unicode code point to check
|
||||||
|
///
|
||||||
|
/// \return True if the codepoint has a glyph representation, false otherwise
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
bool hasGlyph(Uint32 codePoint) const;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Get the kerning offset of two glyphs
|
/// \brief Get the kerning offset of two glyphs
|
||||||
///
|
///
|
||||||
|
@ -253,6 +275,32 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const Texture& getTexture(unsigned int characterSize) const;
|
const Texture& getTexture(unsigned int characterSize) const;
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Enable or disable the smooth filter
|
||||||
|
///
|
||||||
|
/// When the filter is activated, the font appears smoother
|
||||||
|
/// so that pixels are less noticeable. However if you want
|
||||||
|
/// the font to look exactly the same as its source file,
|
||||||
|
/// you should disable it.
|
||||||
|
/// The smooth filter is enabled by default.
|
||||||
|
///
|
||||||
|
/// \param smooth True to enable smoothing, false to disable it
|
||||||
|
///
|
||||||
|
/// \see isSmooth
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
void setSmooth(bool smooth);
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Tell whether the smooth filter is enabled or not
|
||||||
|
///
|
||||||
|
/// \return True if smoothing is enabled, false if it is disabled
|
||||||
|
///
|
||||||
|
/// \see setSmooth
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
bool isSmooth() const;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Overload of assignment operator
|
/// \brief Overload of assignment operator
|
||||||
///
|
///
|
||||||
|
@ -273,15 +321,15 @@ private:
|
||||||
{
|
{
|
||||||
Row(unsigned int rowTop, unsigned int rowHeight) : width(0), top(rowTop), height(rowHeight) {}
|
Row(unsigned int rowTop, unsigned int rowHeight) : width(0), top(rowTop), height(rowHeight) {}
|
||||||
|
|
||||||
unsigned int width; ///< Current width of the row
|
unsigned int width; //!< Current width of the row
|
||||||
unsigned int top; ///< Y position of the row into the texture
|
unsigned int top; //!< Y position of the row into the texture
|
||||||
unsigned int height; ///< Height of the row
|
unsigned int height; //!< Height of the row
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Types
|
// Types
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
typedef std::map<Uint64, Glyph> GlyphTable; ///< Table mapping a codepoint to its glyph
|
typedef std::map<Uint64, Glyph> GlyphTable; //!< Table mapping a codepoint to its glyph
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Structure defining a page of glyphs
|
/// \brief Structure defining a page of glyphs
|
||||||
|
@ -291,10 +339,10 @@ private:
|
||||||
{
|
{
|
||||||
Page();
|
Page();
|
||||||
|
|
||||||
GlyphTable glyphs; ///< Table mapping code points to their corresponding glyph
|
GlyphTable glyphs; //!< Table mapping code points to their corresponding glyph
|
||||||
Texture texture; ///< Texture containing the pixels of the glyphs
|
Texture texture; //!< Texture containing the pixels of the glyphs
|
||||||
unsigned int nextRow; ///< Y position of the next new row in the texture
|
unsigned int nextRow; //!< Y position of the next new row in the texture
|
||||||
std::vector<Row> rows; ///< List containing the position of all the existing rows
|
std::vector<Row> rows; //!< List containing the position of all the existing rows
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -341,21 +389,22 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Types
|
// Types
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
typedef std::map<unsigned int, Page> PageTable; ///< Table mapping a character size to its page (texture)
|
typedef std::map<unsigned int, Page> PageTable; //!< Table mapping a character size to its page (texture)
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void* m_library; ///< Pointer to the internal library interface (it is typeless to avoid exposing implementation details)
|
void* m_library; //!< Pointer to the internal library interface (it is typeless to avoid exposing implementation details)
|
||||||
void* m_face; ///< Pointer to the internal font face (it is typeless to avoid exposing implementation details)
|
void* m_face; //!< Pointer to the internal font face (it is typeless to avoid exposing implementation details)
|
||||||
void* m_streamRec; ///< Pointer to the stream rec instance (it is typeless to avoid exposing implementation details)
|
void* m_streamRec; //!< Pointer to the stream rec instance (it is typeless to avoid exposing implementation details)
|
||||||
void* m_stroker; ///< Pointer to the stroker (it is typeless to avoid exposing implementation details)
|
void* m_stroker; //!< Pointer to the stroker (it is typeless to avoid exposing implementation details)
|
||||||
int* m_refCount; ///< Reference counter used by implicit sharing
|
int* m_refCount; //!< Reference counter used by implicit sharing
|
||||||
Info m_info; ///< Information about the font
|
bool m_isSmooth; //!< Status of the smooth filter
|
||||||
mutable PageTable m_pages; ///< Table containing the glyphs pages by character size
|
Info m_info; //!< Information about the font
|
||||||
mutable std::vector<Uint8> m_pixelBuffer; ///< Pixel buffer holding a glyph's pixels before being written to the texture
|
mutable PageTable m_pages; //!< Table containing the glyphs pages by character size
|
||||||
|
mutable std::vector<Uint8> m_pixelBuffer; //!< Pixel buffer holding a glyph's pixels before being written to the texture
|
||||||
#ifdef SFML_SYSTEM_ANDROID
|
#ifdef SFML_SYSTEM_ANDROID
|
||||||
void* m_stream; ///< Asset file streamer (if loaded from file)
|
void* m_stream; //!< Asset file streamer (if loaded from file)
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -81,7 +81,7 @@ struct Matrix
|
||||||
copyMatrix(transform, *this);
|
copyMatrix(transform, *this);
|
||||||
}
|
}
|
||||||
|
|
||||||
float array[Columns * Rows]; ///< Array holding matrix data
|
float array[Columns * Rows]; //!< Array holding matrix data
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -148,8 +148,8 @@ struct Vector4
|
||||||
copyVector(color, *this);
|
copyVector(color, *this);
|
||||||
}
|
}
|
||||||
|
|
||||||
T x; ///< 1st component (X) of the 4D vector
|
T x; //!< 1st component (X) of the 4D vector
|
||||||
T y; ///< 2nd component (Y) of the 4D vector
|
T y; //!< 2nd component (Y) of the 4D vector
|
||||||
T z; ///< 3rd component (Z) of the 4D vector
|
T z; //!< 3rd component (Z) of the 4D vector
|
||||||
T w; ///< 4th component (W) of the 4D vector
|
T w; //!< 4th component (W) of the 4D vector
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -51,9 +51,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
float advance; ///< Offset to move horizontally to the next character
|
float advance; //!< Offset to move horizontally to the next character
|
||||||
FloatRect bounds; ///< Bounding rectangle of the glyph, in coordinates relative to the baseline
|
FloatRect bounds; //!< Bounding rectangle of the glyph, in coordinates relative to the baseline
|
||||||
IntRect textureRect; ///< Texture coordinates of the glyph inside the font's texture
|
IntRect textureRect; //!< Texture coordinates of the glyph inside the font's texture
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -263,8 +263,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2u m_size; ///< Image size
|
Vector2u m_size; //!< Image size
|
||||||
std::vector<Uint8> m_pixels; ///< Pixels of the image
|
std::vector<Uint8> m_pixels; //!< Pixels of the image
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -38,18 +38,18 @@ namespace sf
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum PrimitiveType
|
enum PrimitiveType
|
||||||
{
|
{
|
||||||
Points, ///< List of individual points
|
Points, //!< List of individual points
|
||||||
Lines, ///< List of individual lines
|
Lines, //!< List of individual lines
|
||||||
LineStrip, ///< List of connected lines, a point uses the previous point to form a line
|
LineStrip, //!< List of connected lines, a point uses the previous point to form a line
|
||||||
Triangles, ///< List of individual triangles
|
Triangles, //!< List of individual triangles
|
||||||
TriangleStrip, ///< List of connected triangles, a point uses the two previous points to form a triangle
|
TriangleStrip, //!< List of connected triangles, a point uses the two previous points to form a triangle
|
||||||
TriangleFan, ///< List of connected triangles, a point uses the common center and the previous point to form a triangle
|
TriangleFan, //!< List of connected triangles, a point uses the common center and the previous point to form a triangle
|
||||||
Quads, ///< List of individual quads (deprecated, don't work with OpenGL ES)
|
Quads, //!< List of individual quads (deprecated, don't work with OpenGL ES)
|
||||||
|
|
||||||
// Deprecated names
|
// Deprecated names
|
||||||
LinesStrip = LineStrip, ///< \deprecated Use LineStrip instead
|
LinesStrip = LineStrip, //!< \deprecated Use LineStrip instead
|
||||||
TrianglesStrip = TriangleStrip, ///< \deprecated Use TriangleStrip instead
|
TrianglesStrip = TriangleStrip, //!< \deprecated Use TriangleStrip instead
|
||||||
TrianglesFan = TriangleFan ///< \deprecated Use TriangleFan instead
|
TrianglesFan = TriangleFan //!< \deprecated Use TriangleFan instead
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -174,10 +174,10 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
T left; ///< Left coordinate of the rectangle
|
T left; //!< Left coordinate of the rectangle
|
||||||
T top; ///< Top coordinate of the rectangle
|
T top; //!< Top coordinate of the rectangle
|
||||||
T width; ///< Width of the rectangle
|
T width; //!< Width of the rectangle
|
||||||
T height; ///< Height of the rectangle
|
T height; //!< Height of the rectangle
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -99,7 +99,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2f m_size; ///< Size of the rectangle
|
Vector2f m_size; //!< Size of the rectangle
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -107,15 +107,15 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const RenderStates Default; ///< Special instance holding the default render states
|
static const RenderStates Default; //!< Special instance holding the default render states
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
BlendMode blendMode; ///< Blending mode
|
BlendMode blendMode; //!< Blending mode
|
||||||
Transform transform; ///< Transform
|
Transform transform; //!< Transform
|
||||||
const Texture* texture; ///< Texture
|
const Texture* texture; //!< Texture
|
||||||
const Shader* shader; ///< Shader
|
const Shader* shader; //!< Shader
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -458,23 +458,23 @@ private:
|
||||||
{
|
{
|
||||||
enum {VertexCacheSize = 4};
|
enum {VertexCacheSize = 4};
|
||||||
|
|
||||||
bool enable; ///< Is the cache enabled?
|
bool enable; //!< Is the cache enabled?
|
||||||
bool glStatesSet; ///< Are our internal GL states set yet?
|
bool glStatesSet; //!< Are our internal GL states set yet?
|
||||||
bool viewChanged; ///< Has the current view changed since last draw?
|
bool viewChanged; //!< Has the current view changed since last draw?
|
||||||
BlendMode lastBlendMode; ///< Cached blending mode
|
BlendMode lastBlendMode; //!< Cached blending mode
|
||||||
Uint64 lastTextureId; ///< Cached texture
|
Uint64 lastTextureId; //!< Cached texture
|
||||||
bool texCoordsArrayEnabled; ///< Is GL_TEXTURE_COORD_ARRAY client state enabled?
|
bool texCoordsArrayEnabled; //!< Is GL_TEXTURE_COORD_ARRAY client state enabled?
|
||||||
bool useVertexCache; ///< Did we previously use the vertex cache?
|
bool useVertexCache; //!< Did we previously use the vertex cache?
|
||||||
Vertex vertexCache[VertexCacheSize]; ///< Pre-transformed vertices cache
|
Vertex vertexCache[VertexCacheSize]; //!< Pre-transformed vertices cache
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
View m_defaultView; ///< Default view
|
View m_defaultView; //!< Default view
|
||||||
View m_view; ///< Current view
|
View m_view; //!< Current view
|
||||||
StatesCache m_cache; ///< Render states cache
|
StatesCache m_cache; //!< Render states cache
|
||||||
Uint64 m_id; ///< Unique number that identifies the RenderTarget
|
Uint64 m_id; //!< Unique number that identifies the RenderTarget
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -238,8 +238,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
priv::RenderTextureImpl* m_impl; ///< Platform/hardware specific implementation
|
priv::RenderTextureImpl* m_impl; //!< Platform/hardware specific implementation
|
||||||
Texture m_texture; ///< Target texture to draw on
|
Texture m_texture; //!< Target texture to draw on
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -183,7 +183,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
unsigned int m_defaultFrameBuffer; ///< Framebuffer to bind when targeting this window
|
unsigned int m_defaultFrameBuffer; //!< Framebuffer to bind when targeting this window
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -59,9 +59,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Type
|
enum Type
|
||||||
{
|
{
|
||||||
Vertex, ///< %Vertex shader
|
Vertex, //!< %Vertex shader
|
||||||
Geometry, ///< Geometry shader
|
Geometry, //!< Geometry shader
|
||||||
Fragment ///< Fragment (pixel) shader
|
Fragment //!< Fragment (pixel) shader
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -745,10 +745,10 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
unsigned int m_shaderProgram; ///< OpenGL identifier for the program
|
unsigned int m_shaderProgram; //!< OpenGL identifier for the program
|
||||||
int m_currentTexture; ///< Location of the current texture in the shader
|
int m_currentTexture; //!< Location of the current texture in the shader
|
||||||
TextureTable m_textures; ///< Texture variables in the shader, mapped to their location
|
TextureTable m_textures; //!< Texture variables in the shader, mapped to their location
|
||||||
UniformTable m_uniforms; ///< Parameters location cache
|
UniformTable m_uniforms; //!< Parameters location cache
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -305,15 +305,15 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const Texture* m_texture; ///< Texture of the shape
|
const Texture* m_texture; //!< Texture of the shape
|
||||||
IntRect m_textureRect; ///< Rectangle defining the area of the source texture to display
|
IntRect m_textureRect; //!< Rectangle defining the area of the source texture to display
|
||||||
Color m_fillColor; ///< Fill color
|
Color m_fillColor; //!< Fill color
|
||||||
Color m_outlineColor; ///< Outline color
|
Color m_outlineColor; //!< Outline color
|
||||||
float m_outlineThickness; ///< Thickness of the shape's outline
|
float m_outlineThickness; //!< Thickness of the shape's outline
|
||||||
VertexArray m_vertices; ///< Vertex array containing the fill geometry
|
VertexArray m_vertices; //!< Vertex array containing the fill geometry
|
||||||
VertexArray m_outlineVertices; ///< Vertex array containing the outline geometry
|
VertexArray m_outlineVertices; //!< Vertex array containing the outline geometry
|
||||||
FloatRect m_insideBounds; ///< Bounding rectangle of the inside (fill)
|
FloatRect m_insideBounds; //!< Bounding rectangle of the inside (fill)
|
||||||
FloatRect m_bounds; ///< Bounding rectangle of the whole shape (outline + fill)
|
FloatRect m_bounds; //!< Bounding rectangle of the whole shape (outline + fill)
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -215,9 +215,9 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vertex m_vertices[4]; ///< Vertices defining the sprite's geometry
|
Vertex m_vertices[4]; //!< Vertices defining the sprite's geometry
|
||||||
const Texture* m_texture; ///< Texture of the sprite
|
const Texture* m_texture; //!< Texture of the sprite
|
||||||
IntRect m_textureRect; ///< Rectangle defining the area of the source texture to display
|
IntRect m_textureRect; //!< Rectangle defining the area of the source texture to display
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -55,11 +55,11 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Style
|
enum Style
|
||||||
{
|
{
|
||||||
Regular = 0, ///< Regular characters, no style
|
Regular = 0, //!< Regular characters, no style
|
||||||
Bold = 1 << 0, ///< Bold characters
|
Bold = 1 << 0, //!< Bold characters
|
||||||
Italic = 1 << 1, ///< Italic characters
|
Italic = 1 << 1, //!< Italic characters
|
||||||
Underlined = 1 << 2, ///< Underlined characters
|
Underlined = 1 << 2, //!< Underlined characters
|
||||||
StrikeThrough = 1 << 3 ///< Strike through characters
|
StrikeThrough = 1 << 3 //!< Strike through characters
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -435,20 +435,20 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
String m_string; ///< String to display
|
String m_string; //!< String to display
|
||||||
const Font* m_font; ///< Font used to display the string
|
const Font* m_font; //!< Font used to display the string
|
||||||
unsigned int m_characterSize; ///< Base size of characters, in pixels
|
unsigned int m_characterSize; //!< Base size of characters, in pixels
|
||||||
float m_letterSpacingFactor; ///< Spacing factor between letters
|
float m_letterSpacingFactor; //!< Spacing factor between letters
|
||||||
float m_lineSpacingFactor; ///< Spacing factor between lines
|
float m_lineSpacingFactor; //!< Spacing factor between lines
|
||||||
Uint32 m_style; ///< Text style (see Style enum)
|
Uint32 m_style; //!< Text style (see Style enum)
|
||||||
Color m_fillColor; ///< Text fill color
|
Color m_fillColor; //!< Text fill color
|
||||||
Color m_outlineColor; ///< Text outline color
|
Color m_outlineColor; //!< Text outline color
|
||||||
float m_outlineThickness; ///< Thickness of the text's outline
|
float m_outlineThickness; //!< Thickness of the text's outline
|
||||||
mutable VertexArray m_vertices; ///< Vertex array containing the fill geometry
|
mutable VertexArray m_vertices; //!< Vertex array containing the fill geometry
|
||||||
mutable VertexArray m_outlineVertices; ///< Vertex array containing the outline geometry
|
mutable VertexArray m_outlineVertices; //!< Vertex array containing the outline geometry
|
||||||
mutable FloatRect m_bounds; ///< Bounding rectangle of the text (in local coordinates)
|
mutable FloatRect m_bounds; //!< Bounding rectangle of the text (in local coordinates)
|
||||||
mutable bool m_geometryNeedUpdate; ///< Does the geometry need to be recomputed?
|
mutable bool m_geometryNeedUpdate; //!< Does the geometry need to be recomputed?
|
||||||
mutable Uint64 m_fontTextureId; ///< The font texture id
|
mutable Uint64 m_fontTextureId; //!< The font texture id
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -55,8 +55,8 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum CoordinateType
|
enum CoordinateType
|
||||||
{
|
{
|
||||||
Normalized, ///< Texture coordinates in range [0 .. 1]
|
Normalized, //!< Texture coordinates in range [0 .. 1]
|
||||||
Pixels ///< Texture coordinates in range [0 .. size]
|
Pixels //!< Texture coordinates in range [0 .. size]
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -616,16 +616,16 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2u m_size; ///< Public texture size
|
Vector2u m_size; //!< Public texture size
|
||||||
Vector2u m_actualSize; ///< Actual texture size (can be greater than public size because of padding)
|
Vector2u m_actualSize; //!< Actual texture size (can be greater than public size because of padding)
|
||||||
unsigned int m_texture; ///< Internal texture identifier
|
unsigned int m_texture; //!< Internal texture identifier
|
||||||
bool m_isSmooth; ///< Status of the smooth filter
|
bool m_isSmooth; //!< Status of the smooth filter
|
||||||
bool m_sRgb; ///< Should the texture source be converted from sRGB?
|
bool m_sRgb; //!< Should the texture source be converted from sRGB?
|
||||||
bool m_isRepeated; ///< Is the texture in repeat mode?
|
bool m_isRepeated; //!< Is the texture in repeat mode?
|
||||||
mutable bool m_pixelsFlipped; ///< To work around the inconsistency in Y orientation
|
mutable bool m_pixelsFlipped; //!< To work around the inconsistency in Y orientation
|
||||||
bool m_fboAttachment; ///< Is this texture owned by a framebuffer object?
|
bool m_fboAttachment; //!< Is this texture owned by a framebuffer object?
|
||||||
bool m_hasMipmap; ///< Has the mipmap been generated?
|
bool m_hasMipmap; //!< Has the mipmap been generated?
|
||||||
Uint64 m_cacheId; ///< Unique number that identifies the texture to the render target's cache
|
Uint64 m_cacheId; //!< Unique number that identifies the texture to the render target's cache
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -100,6 +100,12 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Transform a 2D point
|
/// \brief Transform a 2D point
|
||||||
///
|
///
|
||||||
|
/// These two statements are equivalent:
|
||||||
|
/// \code
|
||||||
|
/// sf::Vector2f transformedPoint = matrix.transformPoint(x, y);
|
||||||
|
/// sf::Vector2f transformedPoint = matrix * sf::Vector2f(x, y);
|
||||||
|
/// \endcode
|
||||||
|
///
|
||||||
/// \param x X coordinate of the point to transform
|
/// \param x X coordinate of the point to transform
|
||||||
/// \param y Y coordinate of the point to transform
|
/// \param y Y coordinate of the point to transform
|
||||||
///
|
///
|
||||||
|
@ -111,6 +117,12 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Transform a 2D point
|
/// \brief Transform a 2D point
|
||||||
///
|
///
|
||||||
|
/// These two statements are equivalent:
|
||||||
|
/// \code
|
||||||
|
/// sf::Vector2f transformedPoint = matrix.transformPoint(point);
|
||||||
|
/// sf::Vector2f transformedPoint = matrix * point;
|
||||||
|
/// \endcode
|
||||||
|
///
|
||||||
/// \param point Point to transform
|
/// \param point Point to transform
|
||||||
///
|
///
|
||||||
/// \return Transformed point
|
/// \return Transformed point
|
||||||
|
@ -138,8 +150,14 @@ public:
|
||||||
/// \brief Combine the current transform with another one
|
/// \brief Combine the current transform with another one
|
||||||
///
|
///
|
||||||
/// The result is a transform that is equivalent to applying
|
/// The result is a transform that is equivalent to applying
|
||||||
/// *this followed by \a transform. Mathematically, it is
|
/// \a transform followed by *this. Mathematically, it is
|
||||||
/// equivalent to a matrix multiplication.
|
/// equivalent to a matrix multiplication (*this) * transform.
|
||||||
|
///
|
||||||
|
/// These two statements are equivalent:
|
||||||
|
/// \code
|
||||||
|
/// left.combine(right);
|
||||||
|
/// left *= right;
|
||||||
|
/// \endcode
|
||||||
///
|
///
|
||||||
/// \param transform Transform to combine with this transform
|
/// \param transform Transform to combine with this transform
|
||||||
///
|
///
|
||||||
|
@ -351,14 +369,14 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const Transform Identity; ///< The identity transform (does nothing)
|
static const Transform Identity; //!< The identity transform (does nothing)
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
float m_matrix[16]; ///< 4x4 matrix defining the transformation
|
float m_matrix[16]; //!< 4x4 matrix defining the transformation
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -316,14 +316,14 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2f m_origin; ///< Origin of translation/rotation/scaling of the object
|
Vector2f m_origin; //!< Origin of translation/rotation/scaling of the object
|
||||||
Vector2f m_position; ///< Position of the object in the 2D world
|
Vector2f m_position; //!< Position of the object in the 2D world
|
||||||
float m_rotation; ///< Orientation of the object, in degrees
|
float m_rotation; //!< Orientation of the object, in degrees
|
||||||
Vector2f m_scale; ///< Scale of the object
|
Vector2f m_scale; //!< Scale of the object
|
||||||
mutable Transform m_transform; ///< Combined transformation of the object
|
mutable Transform m_transform; //!< Combined transformation of the object
|
||||||
mutable bool m_transformNeedUpdate; ///< Does the transform need to be recomputed?
|
mutable bool m_transformNeedUpdate; //!< Does the transform need to be recomputed?
|
||||||
mutable Transform m_inverseTransform; ///< Combined transformation of the object
|
mutable Transform m_inverseTransform; //!< Combined transformation of the object
|
||||||
mutable bool m_inverseTransformNeedUpdate; ///< Does the transform need to be recomputed?
|
mutable bool m_inverseTransformNeedUpdate; //!< Does the transform need to be recomputed?
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -94,9 +94,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2f position; ///< 2D position of the vertex
|
Vector2f position; //!< 2D position of the vertex
|
||||||
Color color; ///< Color of the vertex
|
Color color; //!< Color of the vertex
|
||||||
Vector2f texCoords; ///< Coordinates of the texture's pixel to map to the vertex
|
Vector2f texCoords; //!< Coordinates of the texture's pixel to map to the vertex
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -187,8 +187,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<Vertex> m_vertices; ///< Vertices contained in the array
|
std::vector<Vertex> m_vertices; //!< Vertices contained in the array
|
||||||
PrimitiveType m_primitiveType; ///< Type of primitives to draw
|
PrimitiveType m_primitiveType; //!< Type of primitives to draw
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -59,9 +59,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Usage
|
enum Usage
|
||||||
{
|
{
|
||||||
Stream, ///< Constantly changing data
|
Stream, //!< Constantly changing data
|
||||||
Dynamic, ///< Occasionally changing data
|
Dynamic, //!< Occasionally changing data
|
||||||
Static ///< Rarely changing data
|
Static //!< Rarely changing data
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -334,10 +334,10 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
unsigned int m_buffer; ///< Internal buffer identifier
|
unsigned int m_buffer; //!< Internal buffer identifier
|
||||||
std::size_t m_size; ///< Size in Vertexes of the currently allocated buffer
|
std::size_t m_size; //!< Size in Vertexes of the currently allocated buffer
|
||||||
PrimitiveType m_primitiveType; ///< Type of primitives to draw
|
PrimitiveType m_primitiveType; //!< Type of primitives to draw
|
||||||
Usage m_usage; ///< How this vertex buffer is to be used
|
Usage m_usage; //!< How this vertex buffer is to be used
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -269,14 +269,14 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Vector2f m_center; ///< Center of the view, in scene coordinates
|
Vector2f m_center; //!< Center of the view, in scene coordinates
|
||||||
Vector2f m_size; ///< Size of the view, in scene coordinates
|
Vector2f m_size; //!< Size of the view, in scene coordinates
|
||||||
float m_rotation; ///< Angle of rotation of the view rectangle, in degrees
|
float m_rotation; //!< Angle of rotation of the view rectangle, in degrees
|
||||||
FloatRect m_viewport; ///< Viewport rectangle, expressed as a factor of the render-target's size
|
FloatRect m_viewport; //!< Viewport rectangle, expressed as a factor of the render-target's size
|
||||||
mutable Transform m_transform; ///< Precomputed projection transform corresponding to the view
|
mutable Transform m_transform; //!< Precomputed projection transform corresponding to the view
|
||||||
mutable Transform m_inverseTransform; ///< Precomputed inverse projection transform corresponding to the view
|
mutable Transform m_inverseTransform; //!< Precomputed inverse projection transform corresponding to the view
|
||||||
mutable bool m_transformUpdated; ///< Internal state telling if the transform needs to be updated
|
mutable bool m_transformUpdated; //!< Internal state telling if the transform needs to be updated
|
||||||
mutable bool m_invTransformUpdated; ///< Internal state telling if the inverse transform needs to be updated
|
mutable bool m_invTransformUpdated; //!< Internal state telling if the inverse transform needs to be updated
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -54,9 +54,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum TransferMode
|
enum TransferMode
|
||||||
{
|
{
|
||||||
Binary, ///< Binary mode (file is transfered as a sequence of bytes)
|
Binary, //!< Binary mode (file is transfered as a sequence of bytes)
|
||||||
Ascii, ///< Text mode using ASCII encoding
|
Ascii, //!< Text mode using ASCII encoding
|
||||||
Ebcdic ///< Text mode using EBCDIC encoding
|
Ebcdic //!< Text mode using EBCDIC encoding
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -75,62 +75,62 @@ public:
|
||||||
{
|
{
|
||||||
// 1xx: the requested action is being initiated,
|
// 1xx: the requested action is being initiated,
|
||||||
// expect another reply before proceeding with a new command
|
// expect another reply before proceeding with a new command
|
||||||
RestartMarkerReply = 110, ///< Restart marker reply
|
RestartMarkerReply = 110, //!< Restart marker reply
|
||||||
ServiceReadySoon = 120, ///< Service ready in N minutes
|
ServiceReadySoon = 120, //!< Service ready in N minutes
|
||||||
DataConnectionAlreadyOpened = 125, ///< Data connection already opened, transfer starting
|
DataConnectionAlreadyOpened = 125, //!< Data connection already opened, transfer starting
|
||||||
OpeningDataConnection = 150, ///< File status ok, about to open data connection
|
OpeningDataConnection = 150, //!< File status ok, about to open data connection
|
||||||
|
|
||||||
// 2xx: the requested action has been successfully completed
|
// 2xx: the requested action has been successfully completed
|
||||||
Ok = 200, ///< Command ok
|
Ok = 200, //!< Command ok
|
||||||
PointlessCommand = 202, ///< Command not implemented
|
PointlessCommand = 202, //!< Command not implemented
|
||||||
SystemStatus = 211, ///< System status, or system help reply
|
SystemStatus = 211, //!< System status, or system help reply
|
||||||
DirectoryStatus = 212, ///< Directory status
|
DirectoryStatus = 212, //!< Directory status
|
||||||
FileStatus = 213, ///< File status
|
FileStatus = 213, //!< File status
|
||||||
HelpMessage = 214, ///< Help message
|
HelpMessage = 214, //!< Help message
|
||||||
SystemType = 215, ///< NAME system type, where NAME is an official system name from the list in the Assigned Numbers document
|
SystemType = 215, //!< NAME system type, where NAME is an official system name from the list in the Assigned Numbers document
|
||||||
ServiceReady = 220, ///< Service ready for new user
|
ServiceReady = 220, //!< Service ready for new user
|
||||||
ClosingConnection = 221, ///< Service closing control connection
|
ClosingConnection = 221, //!< Service closing control connection
|
||||||
DataConnectionOpened = 225, ///< Data connection open, no transfer in progress
|
DataConnectionOpened = 225, //!< Data connection open, no transfer in progress
|
||||||
ClosingDataConnection = 226, ///< Closing data connection, requested file action successful
|
ClosingDataConnection = 226, //!< Closing data connection, requested file action successful
|
||||||
EnteringPassiveMode = 227, ///< Entering passive mode
|
EnteringPassiveMode = 227, //!< Entering passive mode
|
||||||
LoggedIn = 230, ///< User logged in, proceed. Logged out if appropriate
|
LoggedIn = 230, //!< User logged in, proceed. Logged out if appropriate
|
||||||
FileActionOk = 250, ///< Requested file action ok
|
FileActionOk = 250, //!< Requested file action ok
|
||||||
DirectoryOk = 257, ///< PATHNAME created
|
DirectoryOk = 257, //!< PATHNAME created
|
||||||
|
|
||||||
// 3xx: the command has been accepted, but the requested action
|
// 3xx: the command has been accepted, but the requested action
|
||||||
// is dormant, pending receipt of further information
|
// is dormant, pending receipt of further information
|
||||||
NeedPassword = 331, ///< User name ok, need password
|
NeedPassword = 331, //!< User name ok, need password
|
||||||
NeedAccountToLogIn = 332, ///< Need account for login
|
NeedAccountToLogIn = 332, //!< Need account for login
|
||||||
NeedInformation = 350, ///< Requested file action pending further information
|
NeedInformation = 350, //!< Requested file action pending further information
|
||||||
|
|
||||||
// 4xx: the command was not accepted and the requested action did not take place,
|
// 4xx: the command was not accepted and the requested action did not take place,
|
||||||
// but the error condition is temporary and the action may be requested again
|
// but the error condition is temporary and the action may be requested again
|
||||||
ServiceUnavailable = 421, ///< Service not available, closing control connection
|
ServiceUnavailable = 421, //!< Service not available, closing control connection
|
||||||
DataConnectionUnavailable = 425, ///< Can't open data connection
|
DataConnectionUnavailable = 425, //!< Can't open data connection
|
||||||
TransferAborted = 426, ///< Connection closed, transfer aborted
|
TransferAborted = 426, //!< Connection closed, transfer aborted
|
||||||
FileActionAborted = 450, ///< Requested file action not taken
|
FileActionAborted = 450, //!< Requested file action not taken
|
||||||
LocalError = 451, ///< Requested action aborted, local error in processing
|
LocalError = 451, //!< Requested action aborted, local error in processing
|
||||||
InsufficientStorageSpace = 452, ///< Requested action not taken; insufficient storage space in system, file unavailable
|
InsufficientStorageSpace = 452, //!< Requested action not taken; insufficient storage space in system, file unavailable
|
||||||
|
|
||||||
// 5xx: the command was not accepted and
|
// 5xx: the command was not accepted and
|
||||||
// the requested action did not take place
|
// the requested action did not take place
|
||||||
CommandUnknown = 500, ///< Syntax error, command unrecognized
|
CommandUnknown = 500, //!< Syntax error, command unrecognized
|
||||||
ParametersUnknown = 501, ///< Syntax error in parameters or arguments
|
ParametersUnknown = 501, //!< Syntax error in parameters or arguments
|
||||||
CommandNotImplemented = 502, ///< Command not implemented
|
CommandNotImplemented = 502, //!< Command not implemented
|
||||||
BadCommandSequence = 503, ///< Bad sequence of commands
|
BadCommandSequence = 503, //!< Bad sequence of commands
|
||||||
ParameterNotImplemented = 504, ///< Command not implemented for that parameter
|
ParameterNotImplemented = 504, //!< Command not implemented for that parameter
|
||||||
NotLoggedIn = 530, ///< Not logged in
|
NotLoggedIn = 530, //!< Not logged in
|
||||||
NeedAccountToStore = 532, ///< Need account for storing files
|
NeedAccountToStore = 532, //!< Need account for storing files
|
||||||
FileUnavailable = 550, ///< Requested action not taken, file unavailable
|
FileUnavailable = 550, //!< Requested action not taken, file unavailable
|
||||||
PageTypeUnknown = 551, ///< Requested action aborted, page type unknown
|
PageTypeUnknown = 551, //!< Requested action aborted, page type unknown
|
||||||
NotEnoughMemory = 552, ///< Requested file action aborted, exceeded storage allocation
|
NotEnoughMemory = 552, //!< Requested file action aborted, exceeded storage allocation
|
||||||
FilenameNotAllowed = 553, ///< Requested action not taken, file name not allowed
|
FilenameNotAllowed = 553, //!< Requested action not taken, file name not allowed
|
||||||
|
|
||||||
// 10xx: SFML custom codes
|
// 10xx: SFML custom codes
|
||||||
InvalidResponse = 1000, ///< Not part of the FTP standard, generated by SFML when a received response cannot be parsed
|
InvalidResponse = 1000, //!< Not part of the FTP standard, generated by SFML when a received response cannot be parsed
|
||||||
ConnectionFailed = 1001, ///< Not part of the FTP standard, generated by SFML when the low-level socket connection with the server fails
|
ConnectionFailed = 1001, //!< Not part of the FTP standard, generated by SFML when the low-level socket connection with the server fails
|
||||||
ConnectionClosed = 1002, ///< Not part of the FTP standard, generated by SFML when the low-level socket connection is unexpectedly closed
|
ConnectionClosed = 1002, //!< Not part of the FTP standard, generated by SFML when the low-level socket connection is unexpectedly closed
|
||||||
InvalidFile = 1003 ///< Not part of the FTP standard, generated by SFML when a local file cannot be read or written
|
InvalidFile = 1003 //!< Not part of the FTP standard, generated by SFML when a local file cannot be read or written
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -177,8 +177,8 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Status m_status; ///< Status code returned from the server
|
Status m_status; //!< Status code returned from the server
|
||||||
std::string m_message; ///< Last message received from the server
|
std::string m_message; //!< Last message received from the server
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -210,7 +210,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::string m_directory; ///< Directory extracted from the response message
|
std::string m_directory; //!< Directory extracted from the response message
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -244,7 +244,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<std::string> m_listing; ///< Directory/file names extracted from the data
|
std::vector<std::string> m_listing; //!< Directory/file names extracted from the data
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -533,8 +533,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
TcpSocket m_commandSocket; ///< Socket holding the control connection with the server
|
TcpSocket m_commandSocket; //!< Socket holding the control connection with the server
|
||||||
std::string m_receiveBuffer; ///< Received command data that is yet to be processed
|
std::string m_receiveBuffer; //!< Received command data that is yet to be processed
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -61,11 +61,11 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Method
|
enum Method
|
||||||
{
|
{
|
||||||
Get, ///< Request in get mode, standard method to retrieve a page
|
Get, //!< Request in get mode, standard method to retrieve a page
|
||||||
Post, ///< Request in post mode, usually to send data to a page
|
Post, //!< Request in post mode, usually to send data to a page
|
||||||
Head, ///< Request a page's header only
|
Head, //!< Request a page's header only
|
||||||
Put, ///< Request in put mode, useful for a REST API
|
Put, //!< Request in put mode, useful for a REST API
|
||||||
Delete ///< Request in delete mode, useful for a REST API
|
Delete //!< Request in delete mode, useful for a REST API
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -178,12 +178,12 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
FieldTable m_fields; ///< Fields of the header associated to their value
|
FieldTable m_fields; //!< Fields of the header associated to their value
|
||||||
Method m_method; ///< Method to use for the request
|
Method m_method; //!< Method to use for the request
|
||||||
std::string m_uri; ///< Target URI of the request
|
std::string m_uri; //!< Target URI of the request
|
||||||
unsigned int m_majorVersion; ///< Major HTTP version
|
unsigned int m_majorVersion; //!< Major HTTP version
|
||||||
unsigned int m_minorVersion; ///< Minor HTTP version
|
unsigned int m_minorVersion; //!< Minor HTTP version
|
||||||
std::string m_body; ///< Body of the request
|
std::string m_body; //!< Body of the request
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -201,37 +201,37 @@ public:
|
||||||
enum Status
|
enum Status
|
||||||
{
|
{
|
||||||
// 2xx: success
|
// 2xx: success
|
||||||
Ok = 200, ///< Most common code returned when operation was successful
|
Ok = 200, //!< Most common code returned when operation was successful
|
||||||
Created = 201, ///< The resource has successfully been created
|
Created = 201, //!< The resource has successfully been created
|
||||||
Accepted = 202, ///< The request has been accepted, but will be processed later by the server
|
Accepted = 202, //!< The request has been accepted, but will be processed later by the server
|
||||||
NoContent = 204, ///< The server didn't send any data in return
|
NoContent = 204, //!< The server didn't send any data in return
|
||||||
ResetContent = 205, ///< The server informs the client that it should clear the view (form) that caused the request to be sent
|
ResetContent = 205, //!< The server informs the client that it should clear the view (form) that caused the request to be sent
|
||||||
PartialContent = 206, ///< The server has sent a part of the resource, as a response to a partial GET request
|
PartialContent = 206, //!< The server has sent a part of the resource, as a response to a partial GET request
|
||||||
|
|
||||||
// 3xx: redirection
|
// 3xx: redirection
|
||||||
MultipleChoices = 300, ///< The requested page can be accessed from several locations
|
MultipleChoices = 300, //!< The requested page can be accessed from several locations
|
||||||
MovedPermanently = 301, ///< The requested page has permanently moved to a new location
|
MovedPermanently = 301, //!< The requested page has permanently moved to a new location
|
||||||
MovedTemporarily = 302, ///< The requested page has temporarily moved to a new location
|
MovedTemporarily = 302, //!< The requested page has temporarily moved to a new location
|
||||||
NotModified = 304, ///< For conditional requests, means the requested page hasn't changed and doesn't need to be refreshed
|
NotModified = 304, //!< For conditional requests, means the requested page hasn't changed and doesn't need to be refreshed
|
||||||
|
|
||||||
// 4xx: client error
|
// 4xx: client error
|
||||||
BadRequest = 400, ///< The server couldn't understand the request (syntax error)
|
BadRequest = 400, //!< The server couldn't understand the request (syntax error)
|
||||||
Unauthorized = 401, ///< The requested page needs an authentication to be accessed
|
Unauthorized = 401, //!< The requested page needs an authentication to be accessed
|
||||||
Forbidden = 403, ///< The requested page cannot be accessed at all, even with authentication
|
Forbidden = 403, //!< The requested page cannot be accessed at all, even with authentication
|
||||||
NotFound = 404, ///< The requested page doesn't exist
|
NotFound = 404, //!< The requested page doesn't exist
|
||||||
RangeNotSatisfiable = 407, ///< The server can't satisfy the partial GET request (with a "Range" header field)
|
RangeNotSatisfiable = 407, //!< The server can't satisfy the partial GET request (with a "Range" header field)
|
||||||
|
|
||||||
// 5xx: server error
|
// 5xx: server error
|
||||||
InternalServerError = 500, ///< The server encountered an unexpected error
|
InternalServerError = 500, //!< The server encountered an unexpected error
|
||||||
NotImplemented = 501, ///< The server doesn't implement a requested feature
|
NotImplemented = 501, //!< The server doesn't implement a requested feature
|
||||||
BadGateway = 502, ///< The gateway server has received an error from the source server
|
BadGateway = 502, //!< The gateway server has received an error from the source server
|
||||||
ServiceNotAvailable = 503, ///< The server is temporarily unavailable (overloaded, in maintenance, ...)
|
ServiceNotAvailable = 503, //!< The server is temporarily unavailable (overloaded, in maintenance, ...)
|
||||||
GatewayTimeout = 504, ///< The gateway server couldn't receive a response from the source server
|
GatewayTimeout = 504, //!< The gateway server couldn't receive a response from the source server
|
||||||
VersionNotSupported = 505, ///< The server doesn't support the requested HTTP version
|
VersionNotSupported = 505, //!< The server doesn't support the requested HTTP version
|
||||||
|
|
||||||
// 10xx: SFML custom codes
|
// 10xx: SFML custom codes
|
||||||
InvalidResponse = 1000, ///< Response is not a valid HTTP one
|
InvalidResponse = 1000, //!< Response is not a valid HTTP one
|
||||||
ConnectionFailed = 1001 ///< Connection with server failed
|
ConnectionFailed = 1001 //!< Connection with server failed
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -338,11 +338,11 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
FieldTable m_fields; ///< Fields of the header
|
FieldTable m_fields; //!< Fields of the header
|
||||||
Status m_status; ///< Status code
|
Status m_status; //!< Status code
|
||||||
unsigned int m_majorVersion; ///< Major HTTP version
|
unsigned int m_majorVersion; //!< Major HTTP version
|
||||||
unsigned int m_minorVersion; ///< Minor HTTP version
|
unsigned int m_minorVersion; //!< Minor HTTP version
|
||||||
std::string m_body; ///< Body of the response
|
std::string m_body; //!< Body of the response
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -409,10 +409,10 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
TcpSocket m_connection; ///< Connection to the host
|
TcpSocket m_connection; //!< Connection to the host
|
||||||
IpAddress m_host; ///< Web host address
|
IpAddress m_host; //!< Web host address
|
||||||
std::string m_hostName; ///< Web host name
|
std::string m_hostName; //!< Web host name
|
||||||
unsigned short m_port; ///< Port used for connection with host
|
unsigned short m_port; //!< Port used for connection with host
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -181,10 +181,10 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const IpAddress None; ///< Value representing an empty/invalid address
|
static const IpAddress None; //!< Value representing an empty/invalid address
|
||||||
static const IpAddress Any; ///< Value representing any address (0.0.0.0)
|
static const IpAddress Any; //!< Value representing any address (0.0.0.0)
|
||||||
static const IpAddress LocalHost; ///< The "localhost" address (for connecting a computer to itself locally)
|
static const IpAddress LocalHost; //!< The "localhost" address (for connecting a computer to itself locally)
|
||||||
static const IpAddress Broadcast; ///< The "broadcast" address (for sending UDP messages to everyone on a local network)
|
static const IpAddress Broadcast; //!< The "broadcast" address (for sending UDP messages to everyone on a local network)
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
@ -201,8 +201,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Uint32 m_address; ///< Address stored as an unsigned 32 bits integer
|
Uint32 m_address; //!< Address stored as an unsigned 32 bits integer
|
||||||
bool m_valid; ///< Is the address valid?
|
bool m_valid; //!< Is the address valid?
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -72,10 +72,23 @@ public:
|
||||||
/// \param sizeInBytes Number of bytes to append
|
/// \param sizeInBytes Number of bytes to append
|
||||||
///
|
///
|
||||||
/// \see clear
|
/// \see clear
|
||||||
|
/// \see getReadPosition
|
||||||
///
|
///
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void append(const void* data, std::size_t sizeInBytes);
|
void append(const void* data, std::size_t sizeInBytes);
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
/// \brief Get the current reading position in the packet
|
||||||
|
///
|
||||||
|
/// The next read operation will read data from this position
|
||||||
|
///
|
||||||
|
/// \return The byte offset of the current read position
|
||||||
|
///
|
||||||
|
/// \see append
|
||||||
|
///
|
||||||
|
////////////////////////////////////////////////////////////
|
||||||
|
std::size_t getReadPosition() const;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Clear the packet
|
/// \brief Clear the packet
|
||||||
///
|
///
|
||||||
|
@ -400,10 +413,10 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<char> m_data; ///< Data stored in the packet
|
std::vector<char> m_data; //!< Data stored in the packet
|
||||||
std::size_t m_readPos; ///< Current reading position in the packet
|
std::size_t m_readPos; //!< Current reading position in the packet
|
||||||
std::size_t m_sendPos; ///< Current send position in the packet (for handling partial sends)
|
std::size_t m_sendPos; //!< Current send position in the packet (for handling partial sends)
|
||||||
bool m_isValid; ///< Reading state of the packet
|
bool m_isValid; //!< Reading state of the packet
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -52,11 +52,11 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Status
|
enum Status
|
||||||
{
|
{
|
||||||
Done, ///< The socket has sent / received the data
|
Done, //!< The socket has sent / received the data
|
||||||
NotReady, ///< The socket is not ready to send / receive data yet
|
NotReady, //!< The socket is not ready to send / receive data yet
|
||||||
Partial, ///< The socket sent a part of the data
|
Partial, //!< The socket sent a part of the data
|
||||||
Disconnected, ///< The TCP socket has been disconnected
|
Disconnected, //!< The TCP socket has been disconnected
|
||||||
Error ///< An unexpected error happened
|
Error //!< An unexpected error happened
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -65,7 +65,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
AnyPort = 0 ///< Special value that tells the system to pick any available port
|
AnyPort = 0 //!< Special value that tells the system to pick any available port
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -113,8 +113,8 @@ protected:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum Type
|
enum Type
|
||||||
{
|
{
|
||||||
Tcp, ///< TCP protocol
|
Tcp, //!< TCP protocol
|
||||||
Udp ///< UDP protocol
|
Udp //!< UDP protocol
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -173,9 +173,9 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Type m_type; ///< Type of the socket (TCP or UDP)
|
Type m_type; //!< Type of the socket (TCP or UDP)
|
||||||
SocketHandle m_socket; ///< Socket descriptor
|
SocketHandle m_socket; //!< Socket descriptor
|
||||||
bool m_isBlocking; ///< Current blocking mode of the socket
|
bool m_isBlocking; //!< Current blocking mode of the socket
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -158,7 +158,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
SocketSelectorImpl* m_impl; ///< Opaque pointer to the implementation (which requires OS-specific types)
|
SocketSelectorImpl* m_impl; //!< Opaque pointer to the implementation (which requires OS-specific types)
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -74,6 +74,10 @@ public:
|
||||||
/// function is called, it will stop listening on the old
|
/// function is called, it will stop listening on the old
|
||||||
/// port before starting to listen on the new port.
|
/// port before starting to listen on the new port.
|
||||||
///
|
///
|
||||||
|
/// When providing sf::Socket::AnyPort as port, the listener
|
||||||
|
/// will request an available port from the system.
|
||||||
|
/// The chosen port can be retrieved by calling getLocalPort().
|
||||||
|
///
|
||||||
/// \param port Port to listen on for incoming connection attempts
|
/// \param port Port to listen on for incoming connection attempts
|
||||||
/// \param address Address of the interface to listen on
|
/// \param address Address of the interface to listen on
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -220,15 +220,15 @@ private:
|
||||||
{
|
{
|
||||||
PendingPacket();
|
PendingPacket();
|
||||||
|
|
||||||
Uint32 Size; ///< Data of packet size
|
Uint32 Size; //!< Data of packet size
|
||||||
std::size_t SizeReceived; ///< Number of size bytes received so far
|
std::size_t SizeReceived; //!< Number of size bytes received so far
|
||||||
std::vector<char> Data; ///< Data of the packet
|
std::vector<char> Data; //!< Data of the packet
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
PendingPacket m_pendingPacket; ///< Temporary data of the packet currently being received
|
PendingPacket m_pendingPacket; //!< Temporary data of the packet currently being received
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -51,7 +51,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
MaxDatagramSize = 65507 ///< The maximum number of bytes that can be sent in a single UDP datagram
|
MaxDatagramSize = 65507 //!< The maximum number of bytes that can be sent in a single UDP datagram
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -78,9 +78,10 @@ public:
|
||||||
///
|
///
|
||||||
/// Binding the socket to a port is necessary for being
|
/// Binding the socket to a port is necessary for being
|
||||||
/// able to receive data on that port.
|
/// able to receive data on that port.
|
||||||
/// You can use the special value Socket::AnyPort to tell the
|
///
|
||||||
/// system to automatically pick an available port, and then
|
/// When providing sf::Socket::AnyPort as port, the listener
|
||||||
/// call getLocalPort to retrieve the chosen port.
|
/// will request an available port from the system.
|
||||||
|
/// The chosen port can be retrieved by calling getLocalPort().
|
||||||
///
|
///
|
||||||
/// Since the socket can only be bound to a single port at
|
/// Since the socket can only be bound to a single port at
|
||||||
/// any given moment, if it is already bound when this
|
/// any given moment, if it is already bound when this
|
||||||
|
@ -193,7 +194,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::vector<char> m_buffer; ///< Temporary buffer holding the received data in Receive(Packet)
|
std::vector<char> m_buffer; //!< Temporary buffer holding the received data in Receive(Packet)
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -78,7 +78,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Time m_startTime; ///< Time of last reset, in microseconds
|
Time m_startTime; //!< Time of last reset, in microseconds
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -125,7 +125,7 @@ private:
|
||||||
#ifdef SFML_SYSTEM_ANDROID
|
#ifdef SFML_SYSTEM_ANDROID
|
||||||
priv::ResourceStream* m_file;
|
priv::ResourceStream* m_file;
|
||||||
#else
|
#else
|
||||||
std::FILE* m_file; ///< stdio file stream
|
std::FILE* m_file; //!< stdio file stream
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -67,7 +67,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Mutex& m_mutex; ///< Mutex to lock / unlock
|
Mutex& m_mutex; //!< Mutex to lock / unlock
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -104,9 +104,9 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const char* m_data; ///< Pointer to the data in memory
|
const char* m_data; //!< Pointer to the data in memory
|
||||||
Int64 m_size; ///< Total size of the data
|
Int64 m_size; //!< Total size of the data
|
||||||
Int64 m_offset; ///< Current reading position
|
Int64 m_offset; //!< Current reading position
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -85,7 +85,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
priv::MutexImpl* m_mutexImpl; ///< OS-specific implementation
|
priv::MutexImpl* m_mutexImpl; //!< OS-specific implementation
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -49,13 +49,13 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Types
|
// Types
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
typedef std::basic_string<Uint32>::iterator Iterator; ///< Iterator type
|
typedef std::basic_string<Uint32>::iterator Iterator; //!< Iterator type
|
||||||
typedef std::basic_string<Uint32>::const_iterator ConstIterator; ///< Read-only iterator type
|
typedef std::basic_string<Uint32>::const_iterator ConstIterator; //!< Read-only iterator type
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const std::size_t InvalidPos; ///< Represents an invalid position in the string
|
static const std::size_t InvalidPos; //!< Represents an invalid position in the string
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// \brief Default constructor
|
/// \brief Default constructor
|
||||||
|
@ -524,7 +524,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
std::basic_string<Uint32> m_string; ///< Internal string of UTF-32 characters
|
std::basic_string<Uint32> m_string; //!< Internal string of UTF-32 characters
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -186,8 +186,8 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
priv::ThreadImpl* m_impl; ///< OS-specific implementation of the thread
|
priv::ThreadImpl* m_impl; //!< OS-specific implementation of the thread
|
||||||
priv::ThreadFunc* m_entryPoint; ///< Abstraction of the function to run
|
priv::ThreadFunc* m_entryPoint; //!< Abstraction of the function to run
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <SFML/System/Thread.inl>
|
#include <SFML/System/Thread.inl>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -83,7 +83,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
priv::ThreadLocalImpl* m_impl; ///< Pointer to the OS specific implementation
|
priv::ThreadLocalImpl* m_impl; //!< Pointer to the OS specific implementation
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -82,7 +82,7 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Static member data
|
// Static member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
static const Time Zero; ///< Predefined "zero" time value
|
static const Time Zero; //!< Predefined "zero" time value
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ private:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Int64 m_microseconds; ///< Time value stored as microseconds
|
Int64 m_microseconds; //!< Time value stored as microseconds
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -72,8 +72,8 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
T x; ///< X coordinate of the vector
|
T x; //!< X coordinate of the vector
|
||||||
T y; ///< Y coordinate of the vector
|
T y; //!< Y coordinate of the vector
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// SFML - Simple and Fast Multimedia Library
|
// SFML - Simple and Fast Multimedia Library
|
||||||
// Copyright (C) 2007-2019 Laurent Gomila (laurent@sfml-dev.org)
|
// Copyright (C) 2007-2020 Laurent Gomila (laurent@sfml-dev.org)
|
||||||
//
|
//
|
||||||
// This software is provided 'as-is', without any express or implied warranty.
|
// This software is provided 'as-is', without any express or implied warranty.
|
||||||
// In no event will the authors be held liable for any damages arising from the use of this software.
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
||||||
|
@ -73,9 +73,9 @@ public:
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
T x; ///< X coordinate of the vector
|
T x; //!< X coordinate of the vector
|
||||||
T y; ///< Y coordinate of the vector
|
T y; //!< Y coordinate of the vector
|
||||||
T z; ///< Z coordinate of the vector
|
T z; //!< Z coordinate of the vector
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue