Merge branch 'develop' of ssh://git.khaganat.net:3543/khaganat/mmorpg_khanat/khanat-opennel-code into develop
This commit is contained in:
commit
adc0ae98cb
484 changed files with 3539 additions and 2911 deletions
|
@ -62,6 +62,7 @@ SET(AUTHOR "Winch Gate and The Ryzom Core Community")
|
||||||
SET(RYZOM_VERSION_MAJOR 3)
|
SET(RYZOM_VERSION_MAJOR 3)
|
||||||
SET(RYZOM_VERSION_MINOR 2)
|
SET(RYZOM_VERSION_MINOR 2)
|
||||||
SET(RYZOM_VERSION_PATCH 1)
|
SET(RYZOM_VERSION_PATCH 1)
|
||||||
|
SET(REVISION 0)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Redirect output files
|
# Redirect output files
|
||||||
|
@ -116,6 +117,10 @@ FIND_PACKAGE(OpenSSL REQUIRED)
|
||||||
FIND_PACKAGE(GIF)
|
FIND_PACKAGE(GIF)
|
||||||
FIND_PACKAGE(Jpeg)
|
FIND_PACKAGE(Jpeg)
|
||||||
|
|
||||||
|
IF(WIN32)
|
||||||
|
SET(OPENSSL_LIBRARIES ${OPENSSL_LIBRARIES} Crypt32.lib)
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
IF(WITH_LIBOVR)
|
IF(WITH_LIBOVR)
|
||||||
FIND_PACKAGE(LibOVR)
|
FIND_PACKAGE(LibOVR)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
@ -447,8 +452,6 @@ IF(WITH_NEL)
|
||||||
SET(CURL_LIBRARIES ${CURL_LIBRARIES} ${INTL_LIBRARY})
|
SET(CURL_LIBRARIES ${CURL_LIBRARIES} ${INTL_LIBRARY})
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ELSEIF(WIN32)
|
|
||||||
SET(CURL_LIBRARIES ${CURL_LIBRARIES} Crypt32.lib)
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
|
@ -56,16 +56,18 @@ MACRO(DETECT_VC_VERSION_HELPER _ROOT _VERSION)
|
||||||
ENDMACRO()
|
ENDMACRO()
|
||||||
|
|
||||||
MACRO(DETECT_VC_VERSION _VERSION)
|
MACRO(DETECT_VC_VERSION _VERSION)
|
||||||
SET(VC${_VERSION}_FOUND OFF)
|
IF(NOT VC_FOUND)
|
||||||
DETECT_VC_VERSION_HELPER("HKEY_CURRENT_USER" ${_VERSION})
|
SET(VC${_VERSION}_FOUND OFF)
|
||||||
|
DETECT_VC_VERSION_HELPER("HKEY_CURRENT_USER" ${_VERSION})
|
||||||
|
|
||||||
IF(NOT VC${_VERSION}_FOUND)
|
IF(NOT VC${_VERSION}_FOUND)
|
||||||
DETECT_VC_VERSION_HELPER("HKEY_LOCAL_MACHINE" ${_VERSION})
|
DETECT_VC_VERSION_HELPER("HKEY_LOCAL_MACHINE" ${_VERSION})
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(VC${_VERSION}_FOUND)
|
IF(VC${_VERSION}_FOUND)
|
||||||
SET(VC_FOUND ON)
|
SET(VC_FOUND ON)
|
||||||
SET(VC_DIR "${VC${_VERSION}_DIR}")
|
SET(VC_DIR "${VC${_VERSION}_DIR}")
|
||||||
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDMACRO()
|
ENDMACRO()
|
||||||
|
|
||||||
|
@ -77,7 +79,7 @@ MACRO(DETECT_EXPRESS_VERSION _VERSION)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDMACRO()
|
ENDMACRO()
|
||||||
|
|
||||||
IF(MSVC1411 OR MSVC1410)
|
IF(MSVC_VERSION GREATER 1909)
|
||||||
DETECT_VC_VERSION("15.0")
|
DETECT_VC_VERSION("15.0")
|
||||||
SET(MSVC_TOOLSET "140")
|
SET(MSVC_TOOLSET "140")
|
||||||
|
|
||||||
|
@ -98,44 +100,18 @@ IF(MSVC1411 OR MSVC1410)
|
||||||
|
|
||||||
SET(VC_DIR "${VC_DIR}/${MSVC_TOOLCHAIN_VERSION}")
|
SET(VC_DIR "${VC_DIR}/${MSVC_TOOLCHAIN_VERSION}")
|
||||||
SET(VC_INCLUDE_DIR "${VC_DIR}/include")
|
SET(VC_INCLUDE_DIR "${VC_DIR}/include")
|
||||||
|
|
||||||
IF(NOT MSVC14_REDIST_DIR)
|
|
||||||
# If you have VC++ 2017 Express, put x64/Microsoft.VC141.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
|
||||||
# original files whould be in ${VC_DIR}/Redist/MSVC/14.11.25325/x64/Microsoft.VC141.CRT
|
|
||||||
SET(MSVC14_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(MSVC14)
|
ELSEIF(MSVC14)
|
||||||
DETECT_VC_VERSION("14.0")
|
DETECT_VC_VERSION("14.0")
|
||||||
SET(MSVC_TOOLSET "140")
|
SET(MSVC_TOOLSET "140")
|
||||||
|
|
||||||
IF(NOT MSVC14_REDIST_DIR)
|
|
||||||
# If you have VC++ 2015 Express, put x64/Microsoft.VC140.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
|
||||||
SET(MSVC14_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(MSVC12)
|
ELSEIF(MSVC12)
|
||||||
DETECT_VC_VERSION("12.0")
|
DETECT_VC_VERSION("12.0")
|
||||||
SET(MSVC_TOOLSET "120")
|
SET(MSVC_TOOLSET "120")
|
||||||
|
|
||||||
IF(NOT MSVC12_REDIST_DIR)
|
|
||||||
# If you have VC++ 2013 Express, put x64/Microsoft.VC120.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
|
||||||
SET(MSVC12_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(MSVC11)
|
ELSEIF(MSVC11)
|
||||||
DETECT_VC_VERSION("11.0")
|
DETECT_VC_VERSION("11.0")
|
||||||
SET(MSVC_TOOLSET "110")
|
SET(MSVC_TOOLSET "110")
|
||||||
|
|
||||||
IF(NOT MSVC11_REDIST_DIR)
|
|
||||||
# If you have VC++ 2012 Express, put x64/Microsoft.VC110.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
|
||||||
SET(MSVC11_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(MSVC10)
|
ELSEIF(MSVC10)
|
||||||
DETECT_VC_VERSION("10.0")
|
DETECT_VC_VERSION("10.0")
|
||||||
SET(MSVC_TOOLSET "100")
|
SET(MSVC_TOOLSET "100")
|
||||||
|
|
||||||
IF(NOT MSVC10_REDIST_DIR)
|
|
||||||
# If you have VC++ 2010 Express, put x64/Microsoft.VC100.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
|
||||||
SET(MSVC10_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(MSVC90)
|
ELSEIF(MSVC90)
|
||||||
DETECT_VC_VERSION("9.0")
|
DETECT_VC_VERSION("9.0")
|
||||||
SET(MSVC_TOOLSET "90")
|
SET(MSVC_TOOLSET "90")
|
||||||
|
@ -147,6 +123,8 @@ ENDIF()
|
||||||
# If you plan to use VC++ compilers with WINE, set VC_DIR environment variable
|
# If you plan to use VC++ compilers with WINE, set VC_DIR environment variable
|
||||||
IF(NOT VC_DIR)
|
IF(NOT VC_DIR)
|
||||||
SET(VC_DIR $ENV{VC_DIR})
|
SET(VC_DIR $ENV{VC_DIR})
|
||||||
|
# Fix path
|
||||||
|
FILE(TO_CMAKE_PATH ${VC_DIR} VC_DIR)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(NOT VC_DIR)
|
IF(NOT VC_DIR)
|
||||||
|
@ -158,8 +136,44 @@ IF(NOT VC_DIR)
|
||||||
STRING(REGEX REPLACE "/(bin|BIN|Bin)/.+" "" VC_DIR ${_COMPILER})
|
STRING(REGEX REPLACE "/(bin|BIN|Bin)/.+" "" VC_DIR ${_COMPILER})
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(NOT VC_INCLUDE_DIR)
|
IF(NOT VC_INCLUDE_DIR AND VC_DIR AND EXISTS "${VC_DIR}")
|
||||||
SET(VC_INCLUDE_DIR "${VC_DIR}/include")
|
SET(VC_INCLUDE_DIR "${VC_DIR}/include")
|
||||||
|
IF(EXISTS "${VC_INCLUDE_DIR}")
|
||||||
|
SET(VC_FOUND ON)
|
||||||
|
ENDIF()
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
|
SET(MSVC_REDIST_DIR "${EXTERNAL_PATH}/redist")
|
||||||
|
|
||||||
|
IF(NOT EXISTS "${MSVC_REDIST_DIR}")
|
||||||
|
SET(MSVC_REDIST_DIR "${VC_DIR}/redist")
|
||||||
|
|
||||||
|
IF(NOT EXISTS "${MSVC_REDIST_DIR}")
|
||||||
|
SET(MSVC_REDIST_DIR)
|
||||||
|
ENDIF()
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
|
IF(MSVC_REDIST_DIR)
|
||||||
|
IF(MSVC1411 OR MSVC1410)
|
||||||
|
# If you have VC++ 2017 Express, put x64/Microsoft.VC141.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
||||||
|
# original files whould be in ${VC_DIR}/Redist/MSVC/14.11.25325/x64/Microsoft.VC141.CRT
|
||||||
|
SET(MSVC14_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC14)
|
||||||
|
SET(MSVC14_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC12)
|
||||||
|
# If you have VC++ 2013 Express, put x64/Microsoft.VC120.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
||||||
|
SET(MSVC12_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC11)
|
||||||
|
# If you have VC++ 2012 Express, put x64/Microsoft.VC110.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
||||||
|
SET(MSVC11_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC10)
|
||||||
|
# If you have VC++ 2010 Express, put x64/Microsoft.VC100.CRT/*.dll in ${EXTERNAL_PATH}/redist
|
||||||
|
SET(MSVC10_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC90)
|
||||||
|
SET(MSVC90_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ELSEIF(MSVC80)
|
||||||
|
SET(MSVC80_REDIST_DIR "${MSVC_REDIST_DIR}")
|
||||||
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
MESSAGE(STATUS "Using headers from ${VC_INCLUDE_DIR}")
|
MESSAGE(STATUS "Using headers from ${VC_INCLUDE_DIR}")
|
||||||
|
|
|
@ -69,6 +69,9 @@ ELSE()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
FIND_PACKAGE(OpenSSL)
|
FIND_PACKAGE(OpenSSL)
|
||||||
IF(OPENSSL_FOUND)
|
IF(OPENSSL_FOUND)
|
||||||
|
IF(WIN32)
|
||||||
|
SET(OPENSSL_LIBRARIES ${OPENSSL_LIBRARIES} Crypt32.lib)
|
||||||
|
ENDIF()
|
||||||
SET(MYSQL_LIBRARIES ${MYSQL_LIBRARIES} ${OPENSSL_LIBRARIES})
|
SET(MYSQL_LIBRARIES ${MYSQL_LIBRARIES} ${OPENSSL_LIBRARIES})
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
|
@ -240,7 +240,7 @@ MACRO(USE_CURRENT_WINSDK)
|
||||||
|
|
||||||
IF(NOT WINSDK_DIR)
|
IF(NOT WINSDK_DIR)
|
||||||
# Use Windows SDK versions installed with VC++ when possible
|
# Use Windows SDK versions installed with VC++ when possible
|
||||||
IF(MSVC1411 OR MSVC1410)
|
IF(MSVC_VERSION GREATER 1909)
|
||||||
# Special case, use Kits for SDK
|
# Special case, use Kits for SDK
|
||||||
SET(WINSDK_VERSION "10.0")
|
SET(WINSDK_VERSION "10.0")
|
||||||
SET(WINSDK_DIR ${WINSDK_UCRT_DIR})
|
SET(WINSDK_DIR ${WINSDK_UCRT_DIR})
|
||||||
|
@ -484,7 +484,7 @@ IF(WINSDK_INCLUDE_DIR)
|
||||||
|
|
||||||
SET(CMAKE_LIBRARY_PATH ${WINSDK_LIBRARY_DIR} ${CMAKE_LIBRARY_PATH})
|
SET(CMAKE_LIBRARY_PATH ${WINSDK_LIBRARY_DIR} ${CMAKE_LIBRARY_PATH})
|
||||||
|
|
||||||
# Fix for using Windows SDK 7.1 with Visual C++ 2012, 2013 and 2015
|
# Fix for using Windows SDK 7.1 with Visual C++ 2012, 2013, 2015 and 2017
|
||||||
IF(WINSDK_VERSION STREQUAL "7.1" AND (MSVC11 OR MSVC12 OR MSVC14))
|
IF(WINSDK_VERSION STREQUAL "7.1" AND (MSVC11 OR MSVC12 OR MSVC14))
|
||||||
ADD_DEFINITIONS(-D_USING_V110_SDK71_)
|
ADD_DEFINITIONS(-D_USING_V110_SDK71_)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
|
@ -1,29 +1,63 @@
|
||||||
|
IF(assimp_FIND_REQUIRED)
|
||||||
|
SET(ASSIMP_FIND_REQUIRED ON)
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
FIND_PATH(
|
FIND_PATH(
|
||||||
assimp_INCLUDE_DIRS
|
ASSIMP_INCLUDE_DIRS
|
||||||
NAMES assimp/postprocess.h assimp/scene.h assimp/version.h assimp/config.h assimp/cimport.h
|
NAMES assimp/postprocess.h assimp/scene.h assimp/version.h assimp/config.h assimp/cimport.h
|
||||||
PATHS /usr/local/include/
|
PATHS /usr/local/include/
|
||||||
)
|
)
|
||||||
|
|
||||||
FIND_LIBRARY(
|
FIND_LIBRARY(
|
||||||
assimp_LIBRARIES
|
ASSIMP_LIBRARY_RELEASE
|
||||||
NAMES assimp
|
NAMES assimp
|
||||||
PATHS /usr/local/lib/
|
PATHS /usr/local/lib/
|
||||||
)
|
)
|
||||||
|
|
||||||
IF (assimp_INCLUDE_DIRS AND assimp_LIBRARIES)
|
FIND_LIBRARY(
|
||||||
SET(assimp_FOUND TRUE)
|
IRRXML_LIBRARY_RELEASE
|
||||||
|
NAMES IrrXML
|
||||||
|
PATHS /usr/local/lib/
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_LIBRARY(
|
||||||
|
ASSIMP_LIBRARY_DEBUG
|
||||||
|
NAMES assimpd
|
||||||
|
PATHS /usr/local/lib/
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_LIBRARY(
|
||||||
|
IRRXML_LIBRARY_DEBUG
|
||||||
|
NAMES IrrXMLd
|
||||||
|
PATHS /usr/local/lib/
|
||||||
|
)
|
||||||
|
|
||||||
|
IF (ASSIMP_INCLUDE_DIRS)
|
||||||
|
SET(ASSIMP_FOUND TRUE)
|
||||||
|
IF(ASSIMP_LIBRARY_RELEASE)
|
||||||
|
SET(ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES} optimized ${ASSIMP_LIBRARY_RELEASE})
|
||||||
|
ENDIF()
|
||||||
|
IF(ASSIMP_LIBRARY_DEBUG)
|
||||||
|
SET(ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES} debug ${ASSIMP_LIBRARY_DEBUG})
|
||||||
|
ENDIF()
|
||||||
FIND_PACKAGE(ZLIB)
|
FIND_PACKAGE(ZLIB)
|
||||||
IF(ZLIB_FOUND)
|
IF(ZLIB_FOUND)
|
||||||
SET(assimp_LIBRARIES ${assimp_LIBRARIES} ${ZLIB_LIBRARIES})
|
SET(ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES} ${ZLIB_LIBRARIES})
|
||||||
ENDIF()
|
ENDIF()
|
||||||
ENDIF (assimp_INCLUDE_DIRS AND assimp_LIBRARIES)
|
IF(IRRXML_LIBRARY_RELEASE)
|
||||||
|
SET(ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES} optimized ${IRRXML_LIBRARY_RELEASE})
|
||||||
|
ENDIF()
|
||||||
|
IF(IRRXML_LIBRARY_DEBUG)
|
||||||
|
SET(ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES} debug ${IRRXML_LIBRARY_DEBUG})
|
||||||
|
ENDIF()
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
IF (assimp_FOUND)
|
IF (ASSIMP_FOUND)
|
||||||
IF (NOT assimp_FIND_QUIETLY)
|
IF (NOT ASSIMP_FIND_QUIETLY)
|
||||||
MESSAGE(STATUS "Found asset importer library: ${assimp_LIBRARIES}")
|
MESSAGE(STATUS "Found asset importer library: ${ASSIMP_LIBRARIES}")
|
||||||
ENDIF (NOT assimp_FIND_QUIETLY)
|
ENDIF ()
|
||||||
ELSE (assimp_FOUND)
|
ELSE (ASSIMP_FOUND)
|
||||||
IF (assimp_FIND_REQUIRED)
|
IF (ASSIMP_FIND_REQUIRED)
|
||||||
MESSAGE(FATAL_ERROR "Could not find asset importer library")
|
MESSAGE(FATAL_ERROR "Could not find asset importer library")
|
||||||
ENDIF (assimp_FIND_REQUIRED)
|
ENDIF ()
|
||||||
ENDIF (assimp_FOUND)
|
ENDIF ()
|
||||||
|
|
|
@ -24,9 +24,25 @@ IF(DEFINED CMAKE_CROSSCOMPILING)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
# Force the compilers to Clang for OS X
|
# Force the compilers to Clang for OS X
|
||||||
|
|
||||||
|
# C
|
||||||
SET(CMAKE_C_COMPILER x86_64-apple-darwin15-clang)
|
SET(CMAKE_C_COMPILER x86_64-apple-darwin15-clang)
|
||||||
|
SET(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||||
|
SET(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
|
||||||
|
SET(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
SET(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
SET(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
|
||||||
|
# C++
|
||||||
SET(CMAKE_CXX_COMPILER x86_64-apple-darwin15-clang++)
|
SET(CMAKE_CXX_COMPILER x86_64-apple-darwin15-clang++)
|
||||||
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
SET(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17")
|
||||||
|
SET(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
SET(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
SET(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
SET(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
|
||||||
|
# make
|
||||||
|
SET(CMAKE_MAKE_PROGRAM make)
|
||||||
|
|
||||||
# Skip the platform compiler checks for cross compiling.
|
# Skip the platform compiler checks for cross compiling.
|
||||||
SET(CMAKE_CXX_COMPILER_FORCED TRUE)
|
SET(CMAKE_CXX_COMPILER_FORCED TRUE)
|
||||||
|
@ -86,9 +102,10 @@ SET(CMAKE_OSX_SYSROOT ${CMAKE_OSX_SYSROOT}/MacOSX${OSX_SDK}.sdk)
|
||||||
|
|
||||||
# Standard settings
|
# Standard settings
|
||||||
SET(CMAKE_SYSTEM_NAME Darwin)
|
SET(CMAKE_SYSTEM_NAME Darwin)
|
||||||
set(CMAKE_SYSTEM "Darwin-15.0.0")
|
SET(CMAKE_SYSTEM "Darwin-15.0.0")
|
||||||
set(CMAKE_SYSTEM_VERSION "15.0.0")
|
SET(CMAKE_SYSTEM_VERSION "15.0.0")
|
||||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
SET(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
SET(UNIX ON)
|
SET(UNIX ON)
|
||||||
SET(APPLE ON)
|
SET(APPLE ON)
|
||||||
|
|
||||||
|
@ -112,4 +129,3 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||||
|
|
||||||
# determinate location for bin utils based on CMAKE_FIND_ROOT_PATH
|
# determinate location for bin utils based on CMAKE_FIND_ROOT_PATH
|
||||||
INCLUDE(CMakeFindBinUtils)
|
INCLUDE(CMakeFindBinUtils)
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ public:
|
||||||
CFlareShape();
|
CFlareShape();
|
||||||
|
|
||||||
/// serial this shape
|
/// serial this shape
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ public:
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Version number
|
// Version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
@ -83,7 +83,7 @@ class CKeyTCB : public CKey<T>
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Version number
|
// Version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
@ -130,7 +130,7 @@ class CKeyBezier : public CKey<T>
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Version number
|
// Version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
@ -180,7 +180,7 @@ template<> class CKeyTCB<NLMISC::CAngleAxis> : public CKey<NLMISC::CAngleAxis>
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Version number
|
// Version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
@ -228,7 +228,7 @@ template<> class CKeyBezier<NLMISC::CQuat> : public CKey<NLMISC::CQuat>
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Version number
|
// Version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
|
|
@ -85,7 +85,7 @@ public:
|
||||||
// This is slow but doesn't matter since used at mesh building....
|
// This is slow but doesn't matter since used at mesh building....
|
||||||
CCorner();
|
CCorner();
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A Triangle face.
|
/// A Triangle face.
|
||||||
|
@ -94,7 +94,7 @@ public:
|
||||||
CCorner Corner[3];
|
CCorner Corner[3];
|
||||||
sint32 MaterialId;
|
sint32 MaterialId;
|
||||||
sint32 SmoothGroup;
|
sint32 SmoothGroup;
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CVertLink
|
struct CVertLink
|
||||||
|
@ -203,7 +203,7 @@ public:
|
||||||
CMeshBuild();
|
CMeshBuild();
|
||||||
|
|
||||||
// Serialization
|
// Serialization
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
};
|
};
|
||||||
//@}
|
//@}
|
||||||
|
@ -257,7 +257,7 @@ public:
|
||||||
virtual void render(IDriver *drv, CTransformShape *trans, bool opaquePass);
|
virtual void render(IDriver *drv, CTransformShape *trans, bool opaquePass);
|
||||||
|
|
||||||
/// serial this mesh.
|
/// serial this mesh.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CMesh);
|
NLMISC_DECLARE_CLASS(CMesh);
|
||||||
|
|
||||||
/// get trinagle count.
|
/// get trinagle count.
|
||||||
|
@ -370,7 +370,7 @@ public:
|
||||||
virtual float getNumTriangles (float distance);
|
virtual float getNumTriangles (float distance);
|
||||||
|
|
||||||
/// serial this mesh.
|
/// serial this mesh.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CMeshGeom);
|
NLMISC_DECLARE_CLASS(CMeshGeom);
|
||||||
|
|
||||||
// profile
|
// profile
|
||||||
|
|
|
@ -146,7 +146,7 @@ public:
|
||||||
CMeshBaseBuild();
|
CMeshBaseBuild();
|
||||||
|
|
||||||
// Serialization is not used
|
// Serialization is not used
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
@ -201,7 +201,7 @@ public:
|
||||||
// @}
|
// @}
|
||||||
|
|
||||||
/// serial the base Part of this mesh.
|
/// serial the base Part of this mesh.
|
||||||
void serialMeshBase(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialMeshBase(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// Flush textures
|
/// Flush textures
|
||||||
void flushTextures (IDriver &driver, uint selectedTexture);
|
void flushTextures (IDriver &driver, uint selectedTexture);
|
||||||
|
|
|
@ -43,7 +43,7 @@ public:
|
||||||
|
|
||||||
std::vector<uint32> VertRefs; // Array of vertices reference
|
std::vector<uint32> VertRefs; // Array of vertices reference
|
||||||
|
|
||||||
void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial (NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
|
@ -90,7 +90,7 @@ public:
|
||||||
NLMISC::CObjectVector<CRawSkinVertex*, false> &vertexRemap,
|
NLMISC::CObjectVector<CRawSkinVertex*, false> &vertexRemap,
|
||||||
std::vector<CAnimatedMorph> *pBSFactor);
|
std::vector<CAnimatedMorph> *pBSFactor);
|
||||||
|
|
||||||
void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial (NLMISC::IStream &f);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,7 @@ public:
|
||||||
virtual float getNumTriangles (float distance);
|
virtual float getNumTriangles (float distance);
|
||||||
|
|
||||||
/// serial this meshGeom.
|
/// serial this meshGeom.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CMeshMRMGeom);
|
NLMISC_DECLARE_CLASS(CMeshMRMGeom);
|
||||||
|
|
||||||
/// Scene profile
|
/// Scene profile
|
||||||
|
@ -579,11 +579,11 @@ private:
|
||||||
|
|
||||||
|
|
||||||
/// load the header of this mesh. return the version of the header.
|
/// load the header of this mesh. return the version of the header.
|
||||||
sint loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream);
|
sint loadHeader(NLMISC::IStream &f);
|
||||||
/// load this mesh.
|
/// load this mesh.
|
||||||
void load(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void load(NLMISC::IStream &f);
|
||||||
/// save the entire mesh.
|
/// save the entire mesh.
|
||||||
void save(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void save(NLMISC::IStream &f);
|
||||||
|
|
||||||
// Build bone Usage information for serialized mesh <= version 2.
|
// Build bone Usage information for serialized mesh <= version 2.
|
||||||
void buildBoneUsageVer2 ();
|
void buildBoneUsageVer2 ();
|
||||||
|
@ -702,7 +702,7 @@ public:
|
||||||
virtual float getNumTriangles (float distance);
|
virtual float getNumTriangles (float distance);
|
||||||
|
|
||||||
/// serial this mesh.
|
/// serial this mesh.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CMeshMRM);
|
NLMISC_DECLARE_CLASS(CMeshMRM);
|
||||||
|
|
||||||
/// Get bbox.
|
/// Get bbox.
|
||||||
|
|
|
@ -125,7 +125,7 @@ public:
|
||||||
virtual void getAABBox(NLMISC::CAABBox &bbox) const;
|
virtual void getAABBox(NLMISC::CAABBox &bbox) const;
|
||||||
|
|
||||||
/// serial this mesh.
|
/// serial this mesh.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// Declare name of the shape
|
/// Declare name of the shape
|
||||||
NLMISC_DECLARE_CLASS(CMeshMultiLod);
|
NLMISC_DECLARE_CLASS(CMeshMultiLod);
|
||||||
|
@ -238,7 +238,7 @@ private:
|
||||||
std::vector<TCoarseMeshIndexType> CoarseTriangles;
|
std::vector<TCoarseMeshIndexType> CoarseTriangles;
|
||||||
|
|
||||||
/// Serial
|
/// Serial
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// Is Opaque ?
|
/// Is Opaque ?
|
||||||
bool isOpaque() { return (Flags&IsOpaque)!=0; }
|
bool isOpaque() { return (Flags&IsOpaque)!=0; }
|
||||||
|
|
|
@ -65,7 +65,7 @@ public:
|
||||||
const NLMISC::CMatrix &invertedModelMat,
|
const NLMISC::CMatrix &invertedModelMat,
|
||||||
const NLMISC::CVector &viewerPos);
|
const NLMISC::CVector &viewerPos);
|
||||||
virtual void end(IDriver *drv);
|
virtual void end(IDriver *drv);
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
virtual void setupForMaterial(const CMaterial &mat,
|
virtual void setupForMaterial(const CMaterial &mat,
|
||||||
IDriver *drv,
|
IDriver *drv,
|
||||||
CScene *scene,
|
CScene *scene,
|
||||||
|
|
|
@ -90,7 +90,7 @@ public:
|
||||||
virtual float getMaxVertexMove();
|
virtual float getMaxVertexMove();
|
||||||
|
|
||||||
// Serial.
|
// Serial.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CMeshVPWindTree);
|
NLMISC_DECLARE_CLASS(CMeshVPWindTree);
|
||||||
|
|
||||||
// @}
|
// @}
|
||||||
|
|
|
@ -54,9 +54,9 @@ public:
|
||||||
void build(std::vector<TPackedZoneBaseSPtr> &packesZones);
|
void build(std::vector<TPackedZoneBaseSPtr> &packesZones);
|
||||||
bool raytrace(const NLMISC::CVector &start, const NLMISC::CVector &end, NLMISC::CVector &inter, std::vector<NLMISC::CTriangle> *testedTriangles = NULL, NLMISC::CVector *normal = NULL);
|
bool raytrace(const NLMISC::CVector &start, const NLMISC::CVector &end, NLMISC::CVector &inter, std::vector<NLMISC::CTriangle> *testedTriangles = NULL, NLMISC::CVector *normal = NULL);
|
||||||
void getZones(std::vector<TPackedZoneBaseSPtr> &zones);
|
void getZones(std::vector<TPackedZoneBaseSPtr> &zones);
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
// just serialize the header, containing name of the zones this CPackedWorld was built from
|
// just serialize the header, containing name of the zones this CPackedWorld was built from
|
||||||
void serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialZoneNames(NLMISC::IStream &f);
|
||||||
/** Roughly select triangles that are within a convex 2D polygon (world coordinates)
|
/** Roughly select triangles that are within a convex 2D polygon (world coordinates)
|
||||||
* Selection is not exact, because limited to the resolution of the grid into which is packed each zone.
|
* Selection is not exact, because limited to the resolution of the grid into which is packed each zone.
|
||||||
* Triangle that are within are guaranteed to be selected, however.
|
* Triangle that are within are guaranteed to be selected, however.
|
||||||
|
@ -68,7 +68,7 @@ private:
|
||||||
public:
|
public:
|
||||||
TPackedZoneBaseSPtr Zone;
|
TPackedZoneBaseSPtr Zone;
|
||||||
uint32 RaytraceCounter;
|
uint32 RaytraceCounter;
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
CPackedZoneBase *pz = Zone;
|
CPackedZoneBase *pz = Zone;
|
||||||
|
@ -81,7 +81,7 @@ private:
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::vector<uint32> IDs; // make a class from this vector just for serialization
|
std::vector<uint32> IDs; // make a class from this vector just for serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCont(IDs);
|
f.serialCont(IDs);
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,7 @@ class CPackedVertex
|
||||||
public:
|
public:
|
||||||
uint16 X, Y, Z;
|
uint16 X, Y, Z;
|
||||||
public:
|
public:
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(X, Y, Z);
|
f.serial(X, Y, Z);
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ class CPackedTri
|
||||||
public:
|
public:
|
||||||
uint32 V0, V1, V2;
|
uint32 V0, V1, V2;
|
||||||
public:
|
public:
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(V0, V1, V2);
|
f.serial(V0, V1, V2);
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ class CPackedTri16
|
||||||
public:
|
public:
|
||||||
uint16 V0, V1, V2;
|
uint16 V0, V1, V2;
|
||||||
public:
|
public:
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(V0, V1, V2);
|
f.serial(V0, V1, V2);
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ public:
|
||||||
sint32 ZoneY;
|
sint32 ZoneY;
|
||||||
public:
|
public:
|
||||||
virtual ~CPackedZoneBase() {}
|
virtual ~CPackedZoneBase() {}
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream) = 0;
|
virtual void serial(NLMISC::IStream &f) = 0;
|
||||||
// TMP For debug : render position covered by a frustum
|
// TMP For debug : render position covered by a frustum
|
||||||
virtual void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]) = 0;
|
virtual void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]) = 0;
|
||||||
// raytracing test
|
// raytracing test
|
||||||
|
@ -138,7 +138,7 @@ public:
|
||||||
sint32 zoneX,
|
sint32 zoneX,
|
||||||
sint32 zoneY
|
sint32 zoneY
|
||||||
);
|
);
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
// TMP For debug : render porition covered by a frustum
|
// TMP For debug : render porition covered by a frustum
|
||||||
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
||||||
// try to build a 16 bit version of this packed zone to save some more place
|
// try to build a 16 bit version of this packed zone to save some more place
|
||||||
|
@ -183,7 +183,7 @@ public:
|
||||||
NLMISC_DECLARE_CLASS(CPackedZone16)
|
NLMISC_DECLARE_CLASS(CPackedZone16)
|
||||||
CPackedZone16();
|
CPackedZone16();
|
||||||
//
|
//
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
// TMP For debug : render position covered by a frustum
|
// TMP For debug : render position covered by a frustum
|
||||||
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
||||||
// raytracing test
|
// raytracing test
|
||||||
|
|
|
@ -84,7 +84,7 @@ public:
|
||||||
/// dtor
|
/// dtor
|
||||||
virtual ~CParticleSystem();
|
virtual ~CParticleSystem();
|
||||||
/// serialize this particle system
|
/// serialize this particle system
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
/** Merge this system with a system instanciated from the given shape
|
/** Merge this system with a system instanciated from the given shape
|
||||||
* NB : This is for edition purpose, this is slow
|
* NB : This is for edition purpose, this is slow
|
||||||
* \return true if the operation could be performed. It can fail when this cause the system the system to last forever,
|
* \return true if the operation could be performed. It can fail when this cause the system the system to last forever,
|
||||||
|
|
|
@ -102,7 +102,7 @@ class CParticleSystemProcess : public NLMISC::IStreamable
|
||||||
* Everything is saved, except for the fontManager and the fontGenerator.
|
* Everything is saved, except for the fontManager and the fontGenerator.
|
||||||
* They must be set again if the PSToolRender pass is used.
|
* They must be set again if the PSToolRender pass is used.
|
||||||
*/
|
*/
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream) ;
|
virtual void serial(NLMISC::IStream &f);
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ public:
|
||||||
// @}
|
// @}
|
||||||
|
|
||||||
/// serial the shape
|
/// serial the shape
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CParticleSystemShape);
|
NLMISC_DECLARE_CLASS(CParticleSystemShape);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -202,7 +202,7 @@ public:
|
||||||
uint size() const { return _Size; }
|
uint size() const { return _Size; }
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
if (f.isReading())
|
if (f.isReading())
|
||||||
{
|
{
|
||||||
|
@ -262,7 +262,7 @@ public:
|
||||||
CPSAttrib();
|
CPSAttrib();
|
||||||
|
|
||||||
/// Serialization method
|
/// Serialization method
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
// swap with another vector
|
// swap with another vector
|
||||||
void swap(CPSAttrib<T> &other);
|
void swap(CPSAttrib<T> &other);
|
||||||
|
@ -429,7 +429,7 @@ void CPSAttrib<T>::remove(uint32 index)
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void CPSAttrib<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CPSAttrib<T>::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// version 4 to 5 => bug with size being > capacity
|
// version 4 to 5 => bug with size being > capacity
|
||||||
sint ver = f.serialVersion(5);
|
sint ver = f.serialVersion(5);
|
||||||
|
|
|
@ -60,7 +60,7 @@ struct CPSInputType
|
||||||
uint32 UserParamNum;
|
uint32 UserParamNum;
|
||||||
};
|
};
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialEnum(InputType);
|
f.serialEnum(InputType);
|
||||||
switch(InputType)
|
switch(InputType)
|
||||||
|
@ -124,7 +124,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
f.serial(_NbCycles);
|
f.serial(_NbCycles);
|
||||||
|
|
|
@ -103,7 +103,7 @@ public:
|
||||||
uint32 srcStep = (1 << 16)
|
uint32 srcStep = (1 << 16)
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
virtual void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial (NLMISC::IStream &f);
|
||||||
virtual void deleteElement (uint32 index);
|
virtual void deleteElement (uint32 index);
|
||||||
virtual void newElement (const CPSEmitterInfo &info);
|
virtual void newElement (const CPSEmitterInfo &info);
|
||||||
virtual void resize (uint32 capacity, uint32 nbPresentElements);
|
virtual void resize (uint32 capacity, uint32 nbPresentElements);
|
||||||
|
|
|
@ -729,7 +729,7 @@ inline void CPSAttribMakerBinOp<T>::makeN(CPSLocated *loc,
|
||||||
|
|
||||||
//=================================================================================================================
|
//=================================================================================================================
|
||||||
template <class T>
|
template <class T>
|
||||||
inline void CPSAttribMakerBinOp<T>::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
inline void CPSAttribMakerBinOp<T>::serial (NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
if (f.isReading())
|
if (f.isReading())
|
||||||
{
|
{
|
||||||
|
|
|
@ -96,7 +96,7 @@ template <typename T, class F> class CPSAttribMakerT : public CPSAttribMaker<T>
|
||||||
|
|
||||||
|
|
||||||
/// serialization of the object
|
/// serialization of the object
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
sint ver = f.serialVersion(2);
|
sint ver = f.serialVersion(2);
|
||||||
CPSAttribMaker<T>::serial(f);
|
CPSAttribMaker<T>::serial(f);
|
||||||
|
@ -1624,7 +1624,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
|
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
|
@ -1744,7 +1744,7 @@ public:
|
||||||
_MaxValue = other._MaxValue;
|
_MaxValue = other._MaxValue;
|
||||||
}
|
}
|
||||||
// serial. Should update min / max when reading
|
// serial. Should update min / max when reading
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
virtual uint32 getMinValue(void) const { return _MinValue; }
|
virtual uint32 getMinValue(void) const { return _MinValue; }
|
||||||
virtual uint32 getMaxValue(void) const { return _MaxValue; }
|
virtual uint32 getMaxValue(void) const { return _MaxValue; }
|
||||||
virtual void newElement(const CPSEmitterInfo &info);
|
virtual void newElement(const CPSEmitterInfo &info);
|
||||||
|
@ -1767,7 +1767,7 @@ public:
|
||||||
_MaxValue = other._MaxValue;
|
_MaxValue = other._MaxValue;
|
||||||
}
|
}
|
||||||
// serial. Should update min / max when reading
|
// serial. Should update min / max when reading
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
virtual sint32 getMinValue(void) const { return _MinValue; }
|
virtual sint32 getMinValue(void) const { return _MinValue; }
|
||||||
virtual sint32 getMaxValue(void) const { return _MaxValue; }
|
virtual sint32 getMaxValue(void) const { return _MaxValue; }
|
||||||
virtual void newElement(const CPSEmitterInfo &info);
|
virtual void newElement(const CPSEmitterInfo &info);
|
||||||
|
@ -1790,7 +1790,7 @@ public:
|
||||||
_MaxValue = other._MaxValue;
|
_MaxValue = other._MaxValue;
|
||||||
}
|
}
|
||||||
// serial. Should update min / max when reading
|
// serial. Should update min / max when reading
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
virtual float getMinValue(void) const { return _MinValue; }
|
virtual float getMinValue(void) const { return _MinValue; }
|
||||||
virtual float getMaxValue(void) const { return _MaxValue; }
|
virtual float getMaxValue(void) const { return _MaxValue; }
|
||||||
virtual void newElement(const CPSEmitterInfo &info);
|
virtual void newElement(const CPSEmitterInfo &info);
|
||||||
|
|
|
@ -93,7 +93,7 @@ public:
|
||||||
CPSValueBlendFunc() {}
|
CPSValueBlendFunc() {}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
f.serial(_StartValue, _EndValue);
|
f.serial(_StartValue, _EndValue);
|
||||||
|
@ -228,7 +228,7 @@ public:
|
||||||
CPSValueBlendSampleFunc() {}
|
CPSValueBlendSampleFunc() {}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
if (f.isReading())
|
if (f.isReading())
|
||||||
|
@ -353,7 +353,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
T getMaxValue(void) const
|
T getMaxValue(void) const
|
||||||
|
@ -493,7 +493,7 @@ void CPSValueGradientFunc<T>::setValuesUnpacked(const T *valueTab, uint32 numVal
|
||||||
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void CPSValueGradientFunc<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CPSValueGradientFunc<T>::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
f.serial(_NbStages);
|
f.serial(_NbStages);
|
||||||
|
|
|
@ -66,7 +66,7 @@ public:
|
||||||
{
|
{
|
||||||
CPSValueBlendFunc<NLMISC::CRGBA>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
CPSValueBlendFunc<NLMISC::CRGBA>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
||||||
}
|
}
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
setColorType(CVertexBuffer::TRGBA);
|
setColorType(CVertexBuffer::TRGBA);
|
||||||
CPSValueBlendFunc<NLMISC::CRGBA>::serial(f);
|
CPSValueBlendFunc<NLMISC::CRGBA>::serial(f);
|
||||||
|
@ -100,7 +100,7 @@ public:
|
||||||
{
|
{
|
||||||
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
||||||
}
|
}
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
setColorType(CVertexBuffer::TRGBA);
|
setColorType(CVertexBuffer::TRGBA);
|
||||||
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::serial(f);
|
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::serial(f);
|
||||||
|
@ -124,7 +124,7 @@ public:
|
||||||
NLMISC::CRGBA getValue(uint index) const;
|
NLMISC::CRGBA getValue(uint index) const;
|
||||||
void setValues(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
void setValues(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
||||||
void setValuesUnpacked(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
void setValuesUnpacked(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
setColorType(CVertexBuffer::TRGBA);
|
setColorType(CVertexBuffer::TRGBA);
|
||||||
CPSValueGradientFunc<NLMISC::CRGBA>::serial(f);
|
CPSValueGradientFunc<NLMISC::CRGBA>::serial(f);
|
||||||
|
@ -153,7 +153,7 @@ public:
|
||||||
this->_F.setColorType(colorType);
|
this->_F.setColorType(colorType);
|
||||||
}
|
}
|
||||||
// serialisation should always be done in RGBA mode, so enforce that
|
// serialisation should always be done in RGBA mode, so enforce that
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
setColorType(CVertexBuffer::TRGBA);
|
setColorType(CVertexBuffer::TRGBA);
|
||||||
CPSAttribMakerT<NLMISC::CRGBA, F>::serial(f);
|
CPSAttribMakerT<NLMISC::CRGBA, F>::serial(f);
|
||||||
|
@ -229,7 +229,7 @@ public:
|
||||||
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
||||||
virtual void setDefaultValue(NLMISC::CRGBA defaultValue);
|
virtual void setDefaultValue(NLMISC::CRGBA defaultValue);
|
||||||
virtual NLMISC::CRGBA getDefaultValue(void) const;
|
virtual NLMISC::CRGBA getDefaultValue(void) const;
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
protected:
|
protected:
|
||||||
CVertexBuffer::TVertexColorType _ColorType;
|
CVertexBuffer::TVertexColorType _ColorType;
|
||||||
};
|
};
|
||||||
|
@ -244,7 +244,7 @@ public:
|
||||||
NLMISC_DECLARE_CLASS(CPSColorBinOp);
|
NLMISC_DECLARE_CLASS(CPSColorBinOp);
|
||||||
CPSAttribMakerBase *clone() const { return new CPSColorBinOp(*this); }
|
CPSAttribMakerBase *clone() const { return new CPSColorBinOp(*this); }
|
||||||
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
NLMISC_DECLARE_CLASS(CPSDot);
|
NLMISC_DECLARE_CLASS(CPSDot);
|
||||||
|
|
||||||
///serialisation
|
///serialisation
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// return true if there are transparent faces in the object
|
/// return true if there are transparent faces in the object
|
||||||
virtual bool hasTransparentFaces(void);
|
virtual bool hasTransparentFaces(void);
|
||||||
|
|
|
@ -171,7 +171,7 @@ public:
|
||||||
const CPSAttribMaker<uint32> *getGenNbScheme(void) const { return _GenNbScheme; }
|
const CPSAttribMaker<uint32> *getGenNbScheme(void) const { return _GenNbScheme; }
|
||||||
|
|
||||||
/// Serialization
|
/// Serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
///\name Speed vector options
|
///\name Speed vector options
|
||||||
//@{
|
//@{
|
||||||
|
@ -424,7 +424,7 @@ class CPSModulatedEmitter
|
||||||
bool useEmitteeSpeedScheme(void) const { return _EmitteeSpeedScheme != NULL; }
|
bool useEmitteeSpeedScheme(void) const { return _EmitteeSpeedScheme != NULL; }
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serialEmitteeSpeedScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialEmitteeSpeedScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -470,7 +470,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSEmitterDirectionnal);
|
NLMISC_DECLARE_CLASS(CPSEmitterDirectionnal);
|
||||||
|
@ -506,7 +506,7 @@ class CPSRadialEmitter : public CPSEmitterDirectionnal
|
||||||
if (CParticleSystem::getSerializeIdentifierFlag()) _Name = std::string("RadialEmitter");
|
if (CParticleSystem::getSerializeIdentifierFlag()) _Name = std::string("RadialEmitter");
|
||||||
}
|
}
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CPSRadialEmitter);
|
NLMISC_DECLARE_CLASS(CPSRadialEmitter);
|
||||||
virtual void emit(const NLMISC::CVector &srcPos, uint32 index, NLMISC::CVector &pos, NLMISC::CVector &speed);
|
virtual void emit(const NLMISC::CVector &srcPos, uint32 index, NLMISC::CVector &pos, NLMISC::CVector &speed);
|
||||||
};
|
};
|
||||||
|
@ -527,7 +527,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSEmitterOmni);
|
NLMISC_DECLARE_CLASS(CPSEmitterOmni);
|
||||||
|
|
||||||
|
@ -561,7 +561,7 @@ class CPSEmitterRectangle : public CPSEmitter, public CPSModulatedEmitter, publi
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSEmitterRectangle);
|
NLMISC_DECLARE_CLASS(CPSEmitterRectangle);
|
||||||
|
|
||||||
|
@ -636,7 +636,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSEmitterConic);
|
NLMISC_DECLARE_CLASS(CPSEmitterConic);
|
||||||
|
|
||||||
|
@ -675,7 +675,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serialisation
|
/// Serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSSphericalEmitter);
|
NLMISC_DECLARE_CLASS(CPSSphericalEmitter);
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ public:
|
||||||
*/
|
*/
|
||||||
CPSFace(CSmartPtr<ITexture> tex = NULL);
|
CPSFace(CSmartPtr<ITexture> tex = NULL);
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSFace);
|
NLMISC_DECLARE_CLASS(CPSFace);
|
||||||
/** Tells that all faces are turning in the same manner, and only have a rotationnal bias
|
/** Tells that all faces are turning in the same manner, and only have a rotationnal bias
|
||||||
|
|
|
@ -40,7 +40,7 @@ public:
|
||||||
*/
|
*/
|
||||||
CPSFaceLookAt(CSmartPtr<ITexture> tex = NULL);
|
CPSFaceLookAt(CSmartPtr<ITexture> tex = NULL);
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSFaceLookAt);
|
NLMISC_DECLARE_CLASS(CPSFaceLookAt);
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ public:
|
||||||
CPSFanLight(uint32 nbFans = 7);
|
CPSFanLight(uint32 nbFans = 7);
|
||||||
/// Dtor
|
/// Dtor
|
||||||
~CPSFanLight();
|
~CPSFanLight();
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
// Set the number of fans used for drawing (minimum is 3, maximum is 128)
|
// Set the number of fans used for drawing (minimum is 3, maximum is 128)
|
||||||
|
|
|
@ -104,7 +104,7 @@ class CPSFloatCurveFunctor
|
||||||
CCtrlPoint(float date, float value) : Date(date), Value(value) { nlassert(Date >= 0 && Date <= 1); }
|
CCtrlPoint(float date, float value) : Date(date), Value(value) { nlassert(Date >= 0 && Date <= 1); }
|
||||||
float Date;
|
float Date;
|
||||||
float Value;
|
float Value;
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(Date, Value);
|
f.serial(Date, Value);
|
||||||
}
|
}
|
||||||
|
@ -166,7 +166,7 @@ class CPSFloatCurveFunctor
|
||||||
float getValue(float date) const;
|
float getValue(float date) const;
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
float getMinValue() const { return _MinValue; }
|
float getMinValue() const { return _MinValue; }
|
||||||
float getMaxValue() const { return _MaxValue; }
|
float getMaxValue() const { return _MaxValue; }
|
||||||
|
|
|
@ -70,7 +70,7 @@ public:
|
||||||
virtual void show() = 0;
|
virtual void show() = 0;
|
||||||
|
|
||||||
/// Serial the force definition. MUST be called by deriver during their serialisation
|
/// Serial the force definition. MUST be called by deriver during their serialisation
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// check whether this force is integrable over time. The default is false
|
/// check whether this force is integrable over time. The default is false
|
||||||
virtual bool isIntegrable(void) const { return false; }
|
virtual bool isIntegrable(void) const { return false; }
|
||||||
|
@ -175,7 +175,7 @@ public:
|
||||||
/// get the attribute maker for a non constant intensity
|
/// get the attribute maker for a non constant intensity
|
||||||
CPSAttribMaker<float> *getIntensityScheme(void) { return _IntensityScheme; }
|
CPSAttribMaker<float> *getIntensityScheme(void) { return _IntensityScheme; }
|
||||||
const CPSAttribMaker<float> *getIntensityScheme(void) const { return _IntensityScheme; }
|
const CPSAttribMaker<float> *getIntensityScheme(void) const { return _IntensityScheme; }
|
||||||
void serialForceIntensity(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialForceIntensity(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ protected:
|
||||||
class CPSForceIntensityHelper : public CPSForce, public CPSForceIntensity
|
class CPSForceIntensityHelper : public CPSForce, public CPSForceIntensity
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream) ;
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual CPSLocated *getForceIntensityOwner(void) { return _Owner; }
|
virtual CPSLocated *getForceIntensityOwner(void) { return _Owner; }
|
||||||
|
@ -241,7 +241,7 @@ protected:
|
||||||
*
|
*
|
||||||
* // you can provide a serialization method. Note that that if the functor parameters are set before each use,
|
* // you can provide a serialization method. Note that that if the functor parameters are set before each use,
|
||||||
* // it useless to serial something ...
|
* // it useless to serial something ...
|
||||||
* void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
* void serial(NLMISC::IStream &f)
|
||||||
*
|
*
|
||||||
* protected:
|
* protected:
|
||||||
* ...
|
* ...
|
||||||
|
@ -275,7 +275,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
CPSForce::serial(f);
|
CPSForce::serial(f);
|
||||||
|
@ -354,7 +354,7 @@ class CPSDirectionnalForce : public CPSForceIntensityHelper, public CPSDirection
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSDirectionnalForce);
|
NLMISC_DECLARE_CLASS(CPSDirectionnalForce);
|
||||||
|
@ -397,7 +397,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSGravity);
|
NLMISC_DECLARE_CLASS(CPSGravity);
|
||||||
|
|
||||||
|
@ -443,7 +443,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSCentralGravity);
|
NLMISC_DECLARE_CLASS(CPSCentralGravity);
|
||||||
|
@ -464,7 +464,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
/// Compute the force on the targets
|
/// Compute the force on the targets
|
||||||
|
@ -498,7 +498,7 @@ public:
|
||||||
speed -= (CParticleSystem::EllapsedTime * _K * invMass * speed);
|
speed -= (CParticleSystem::EllapsedTime * _K * invMass * speed);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
// we don't save intensity info : it is saved by the owning object (and set before each use of this functor)
|
// we don't save intensity info : it is saved by the owning object (and set before each use of this functor)
|
||||||
|
@ -539,7 +539,7 @@ public:
|
||||||
NLMISC_DECLARE_CLASS(CPSFluidFriction)
|
NLMISC_DECLARE_CLASS(CPSFluidFriction)
|
||||||
|
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
CIsotropicForceT<CPSFluidFrictionFunctor>::serial(f);
|
CIsotropicForceT<CPSFluidFrictionFunctor>::serial(f);
|
||||||
|
@ -571,7 +571,7 @@ public:
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSBrownianForce)
|
NLMISC_DECLARE_CLASS(CPSBrownianForce)
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// We provide a kind of integration on a predefined sequence
|
/// We provide a kind of integration on a predefined sequence
|
||||||
virtual bool isIntegrable(void) const;
|
virtual bool isIntegrable(void) const;
|
||||||
|
@ -648,7 +648,7 @@ struct CPSTurbulForceFunc
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
f.serial(_Scale, _NumOctaves);
|
f.serial(_Scale, _NumOctaves);
|
||||||
|
@ -686,7 +686,7 @@ public:
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSTurbul)
|
NLMISC_DECLARE_CLASS(CPSTurbul)
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
CIsotropicForceT<CPSTurbulForceFunc>::serial(f);
|
CIsotropicForceT<CPSTurbulForceFunc>::serial(f);
|
||||||
|
@ -758,7 +758,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
// serialization
|
// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -801,7 +801,7 @@ class CPSMagneticForce : public CPSDirectionnalForce
|
||||||
}
|
}
|
||||||
virtual void computeForces(CPSLocated &target);
|
virtual void computeForces(CPSLocated &target);
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CPSMagneticForce);
|
NLMISC_DECLARE_CLASS(CPSMagneticForce);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ public:
|
||||||
~CPSLight();
|
~CPSLight();
|
||||||
NLMISC_DECLARE_CLASS(CPSLight);
|
NLMISC_DECLARE_CLASS(CPSLight);
|
||||||
/// Serialisation. Derivers must override this, and call their parent version
|
/// Serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
virtual uint32 getType(void) const;
|
virtual uint32 getType(void) const;
|
||||||
virtual uint32 getPriority(void) const { return 600; }
|
virtual uint32 getPriority(void) const { return 600; }
|
||||||
|
|
|
@ -356,7 +356,7 @@ public:
|
||||||
void resize(uint32 newSize);
|
void resize(uint32 newSize);
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// Shortcut to get an instance of the 3d driver
|
/// Shortcut to get an instance of the 3d driver
|
||||||
IDriver *getDriver() const;
|
IDriver *getDriver() const;
|
||||||
|
@ -730,7 +730,7 @@ public:
|
||||||
/// ctor
|
/// ctor
|
||||||
CPSLocatedBindable();
|
CPSLocatedBindable();
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
/** this should be called before to delete any bindable inserted in a system, but this is done
|
/** this should be called before to delete any bindable inserted in a system, but this is done
|
||||||
* by the system, so you should never need calling it. This has been introduced because calls in dtor are not polymorphic
|
* by the system, so you should never need calling it. This has been introduced because calls in dtor are not polymorphic
|
||||||
* to derived class (which are already destroyed anyway), and some infos are needed in some dtor. The default behaviour does nothing
|
* to derived class (which are already destroyed anyway), and some infos are needed in some dtor. The default behaviour does nothing
|
||||||
|
@ -1010,7 +1010,7 @@ public:
|
||||||
*/
|
*/
|
||||||
virtual void releaseTargetRsc(CPSLocated * /* target */) {}
|
virtual void releaseTargetRsc(CPSLocated * /* target */) {}
|
||||||
/// Seralization, must be called by derivers
|
/// Seralization, must be called by derivers
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
/// Finalize this object : the default is to call releaseTargetRsc on targets
|
/// Finalize this object : the default is to call releaseTargetRsc on targets
|
||||||
virtual void finalize(void);
|
virtual void finalize(void);
|
||||||
virtual ~CPSTargetLocatedBindable();
|
virtual ~CPSTargetLocatedBindable();
|
||||||
|
|
|
@ -82,7 +82,7 @@ public:
|
||||||
std::string getShape(void) const { return _Shape; }
|
std::string getShape(void) const { return _Shape; }
|
||||||
|
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
virtual ~CPSMesh();
|
virtual ~CPSMesh();
|
||||||
|
|
||||||
|
@ -271,7 +271,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSConstraintMesh);
|
NLMISC_DECLARE_CLASS(CPSConstraintMesh);
|
||||||
|
@ -334,7 +334,7 @@ public:
|
||||||
float WRotSpeed; /* = 0 */
|
float WRotSpeed; /* = 0 */
|
||||||
float WRotAccel; /* = 0 */
|
float WRotAccel; /* = 0 */
|
||||||
CGlobalTexAnim();
|
CGlobalTexAnim();
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
/// Build a texture matrix from a date and this obj.
|
/// Build a texture matrix from a date and this obj.
|
||||||
void buildMatrix(TAnimationTime date, NLMISC::CMatrix &dest);
|
void buildMatrix(TAnimationTime date, NLMISC::CMatrix &dest);
|
||||||
};
|
};
|
||||||
|
@ -587,7 +587,7 @@ protected:
|
||||||
struct CGlobalTexAnims
|
struct CGlobalTexAnims
|
||||||
{
|
{
|
||||||
CGlobalTexAnim Anims[IDRV_MAT_MAXTEXTURES];
|
CGlobalTexAnim Anims[IDRV_MAT_MAXTEXTURES];
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef CUniquePtr<CGlobalTexAnims> PGlobalTexAnims;
|
typedef CUniquePtr<CGlobalTexAnims> PGlobalTexAnims;
|
||||||
|
|
|
@ -107,7 +107,7 @@ public:
|
||||||
virtual uint32 getNumWantedTris() const = 0;
|
virtual uint32 getNumWantedTris() const = 0;
|
||||||
|
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/// version 3 : global color lighting
|
/// version 3 : global color lighting
|
||||||
/// version 2 : auto-lod saved
|
/// version 2 : auto-lod saved
|
||||||
|
@ -210,7 +210,7 @@ class CPSColoredParticle
|
||||||
virtual ~CPSColoredParticle();
|
virtual ~CPSColoredParticle();
|
||||||
|
|
||||||
/// serialization.
|
/// serialization.
|
||||||
void serialColorScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialColorScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ class CPSSizedParticle
|
||||||
virtual ~CPSSizedParticle();
|
virtual ~CPSSizedParticle();
|
||||||
|
|
||||||
/// serialization. We choose a different name because of multiple-inheritance
|
/// serialization. We choose a different name because of multiple-inheritance
|
||||||
void serialSizeScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialSizeScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -335,7 +335,7 @@ class CPSRotated2DParticle
|
||||||
virtual ~CPSRotated2DParticle();
|
virtual ~CPSRotated2DParticle();
|
||||||
|
|
||||||
/// serialization. We choose a different name because of multiple-inheritance
|
/// serialization. We choose a different name because of multiple-inheritance
|
||||||
void serialAngle2DScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialAngle2DScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -453,7 +453,7 @@ class CPSTexturedParticle
|
||||||
virtual ~CPSTexturedParticle();
|
virtual ~CPSTexturedParticle();
|
||||||
|
|
||||||
/// serialization. We choose a different name because of multiple-inheritance
|
/// serialization. We choose a different name because of multiple-inheritance
|
||||||
void serialTextureScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialTextureScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
void enumTexs(std::vector<NLMISC::CSmartPtr<ITexture> > &dest);
|
void enumTexs(std::vector<NLMISC::CSmartPtr<ITexture> > &dest);
|
||||||
|
|
||||||
|
@ -576,7 +576,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// serial this object
|
/// serial this object
|
||||||
void serialMultiTex(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialMultiTex(NLMISC::IStream &f);
|
||||||
|
|
||||||
/** setup a material from this object and a primary texture
|
/** setup a material from this object and a primary texture
|
||||||
* drv is used to check the device caps.
|
* drv is used to check the device caps.
|
||||||
|
@ -683,7 +683,7 @@ class CPSRotated3DPlaneParticle
|
||||||
virtual ~CPSRotated3DPlaneParticle();
|
virtual ~CPSRotated3DPlaneParticle();
|
||||||
|
|
||||||
/// serialization. We choose a different name because of multiple-inheritance
|
/// serialization. We choose a different name because of multiple-inheritance
|
||||||
void serialPlaneBasisScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialPlaneBasisScheme(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// if this is false, constant size will be used instead of a scheme
|
/// if this is false, constant size will be used instead of a scheme
|
||||||
|
@ -806,7 +806,7 @@ public:
|
||||||
enum TBlendingMode { add, modulate, alphaBlend, alphaTest };
|
enum TBlendingMode { add, modulate, alphaBlend, alphaTest };
|
||||||
|
|
||||||
/// serialization (not named 'serial' because it will be used via multiple-inheritance)
|
/// serialization (not named 'serial' because it will be used via multiple-inheritance)
|
||||||
void serialMaterial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serialMaterial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// set the blending mode. The default is ass
|
/// set the blending mode. The default is ass
|
||||||
void setBlendingMode(CPSMaterial::TBlendingMode mode);
|
void setBlendingMode(CPSMaterial::TBlendingMode mode);
|
||||||
|
|
|
@ -66,7 +66,7 @@ struct CPlaneBasis
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(X, Y) ;
|
f.serial(X, Y) ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,7 +128,7 @@ class CPSPlaneBasisFollowSpeed : public CPSAttribMaker<CPlaneBasis>
|
||||||
NLMISC_DECLARE_CLASS(CPSPlaneBasisFollowSpeed);
|
NLMISC_DECLARE_CLASS(CPSPlaneBasisFollowSpeed);
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
virtual void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// version 2 : added projection plane
|
// version 2 : added projection plane
|
||||||
// version 1 : nothing to save here
|
// version 1 : nothing to save here
|
||||||
|
@ -192,7 +192,7 @@ public:
|
||||||
/// get the number of samples for the rotation
|
/// get the number of samples for the rotation
|
||||||
uint32 getNumSamples(void) const;
|
uint32 getNumSamples(void) const;
|
||||||
/// serial this object
|
/// serial this object
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
protected:
|
protected:
|
||||||
CPSVector<CPlaneBasis>::V _PBTab;
|
CPSVector<CPlaneBasis>::V _PBTab;
|
||||||
uint32 _NbSamples;
|
uint32 _NbSamples;
|
||||||
|
|
|
@ -114,7 +114,7 @@ protected:
|
||||||
void updateVbColNUVForRender(CVertexBuffer &vb, uint32 startIndex, uint32 numQuad, uint32 srcStep, IDriver &drv);
|
void updateVbColNUVForRender(CVertexBuffer &vb, uint32 startIndex, uint32 numQuad, uint32 srcStep, IDriver &drv);
|
||||||
|
|
||||||
/// DERIVERS MUST CALL this
|
/// DERIVERS MUST CALL this
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
virtual CPSLocated *getColorOwner(void) { return _Owner; }
|
virtual CPSLocated *getColorOwner(void) { return _Owner; }
|
||||||
virtual CPSLocated *getSizeOwner(void) { return _Owner; }
|
virtual CPSLocated *getSizeOwner(void) { return _Owner; }
|
||||||
virtual CPSLocated *getTextureIndexOwner(void) { return _Owner; }
|
virtual CPSLocated *getTextureIndexOwner(void) { return _Owner; }
|
||||||
|
|
|
@ -55,7 +55,7 @@ public:
|
||||||
/// dtor
|
/// dtor
|
||||||
~CPSRibbon();
|
~CPSRibbon();
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
//
|
//
|
||||||
NLMISC_DECLARE_CLASS(CPSRibbon);
|
NLMISC_DECLARE_CLASS(CPSRibbon);
|
||||||
///@}
|
///@}
|
||||||
|
|
|
@ -52,7 +52,7 @@ public:
|
||||||
///@{
|
///@{
|
||||||
CPSRibbonBase();
|
CPSRibbonBase();
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
///\name Behaviour
|
///\name Behaviour
|
||||||
|
|
|
@ -38,7 +38,7 @@ public:
|
||||||
/// dtor
|
/// dtor
|
||||||
~CPSRibbonLookAt();
|
~CPSRibbonLookAt();
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
//
|
//
|
||||||
NLMISC_DECLARE_CLASS(CPSRibbonLookAt);
|
NLMISC_DECLARE_CLASS(CPSRibbonLookAt);
|
||||||
///@}
|
///@}
|
||||||
|
|
|
@ -54,7 +54,7 @@ public:
|
||||||
float getRadiusCut(void) const { return _RadiusCut; }
|
float getRadiusCut(void) const { return _RadiusCut; }
|
||||||
|
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
NLMISC_DECLARE_CLASS(CPSShockWave);
|
NLMISC_DECLARE_CLASS(CPSShockWave);
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ public:
|
||||||
/// dtor
|
/// dtor
|
||||||
~CPSSound();
|
~CPSSound();
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
/// return this bindable type
|
/// return this bindable type
|
||||||
|
|
|
@ -37,7 +37,7 @@ public:
|
||||||
/// dtor
|
/// dtor
|
||||||
~CPSTailDot();
|
~CPSTailDot();
|
||||||
/// serialisation. Derivers must override this, and call their parent version
|
/// serialisation. Derivers must override this, and call their parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
//
|
//
|
||||||
NLMISC_DECLARE_CLASS(CPSTailDot);
|
NLMISC_DECLARE_CLASS(CPSTailDot);
|
||||||
///@}
|
///@}
|
||||||
|
|
|
@ -82,7 +82,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serialization, DERIVER must override this, and call the parent version
|
/// serialization, DERIVER must override this, and call the parent version
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
/** Inherited from CPSTargetLocatedBindable. It's called when one of the targets has been detroyed or detached
|
/** Inherited from CPSTargetLocatedBindable. It's called when one of the targets has been detroyed or detached
|
||||||
|
@ -155,7 +155,7 @@ class CPSZonePlane : public CPSZone, public IPSMover
|
||||||
virtual NLMISC::CVector getNormal(uint32 index);
|
virtual NLMISC::CVector getNormal(uint32 index);
|
||||||
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
TPSAttribVector _Normal;
|
TPSAttribVector _Normal;
|
||||||
|
@ -176,7 +176,7 @@ struct CRadiusPair
|
||||||
{
|
{
|
||||||
// the adius, and the square radius
|
// the adius, and the square radius
|
||||||
float R, R2;
|
float R, R2;
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serial(R, R2);
|
f.serial(R, R2);
|
||||||
}
|
}
|
||||||
|
@ -205,7 +205,7 @@ class CPSZoneSphere : public CPSZone, public IPSMover
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
// inherited from IPSMover
|
// inherited from IPSMover
|
||||||
|
@ -257,7 +257,7 @@ class CPSZoneDisc : public CPSZone, public IPSMover
|
||||||
virtual NLMISC::CVector getNormal(uint32 index);
|
virtual NLMISC::CVector getNormal(uint32 index);
|
||||||
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -303,7 +303,7 @@ class CPSZoneCylinder : public CPSZone, public IPSMover
|
||||||
virtual NLMISC::CVector getScale(uint32 k) const;
|
virtual NLMISC::CVector getScale(uint32 k) const;
|
||||||
|
|
||||||
// serialization
|
// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -350,7 +350,7 @@ class CPSZoneRectangle : public CPSZone, public IPSMover
|
||||||
|
|
||||||
|
|
||||||
// serialization
|
// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
// inherited from IPSMover
|
// inherited from IPSMover
|
||||||
virtual bool supportUniformScaling(void) const { return true; }
|
virtual bool supportUniformScaling(void) const { return true; }
|
||||||
|
|
|
@ -70,7 +70,7 @@ public:
|
||||||
// assignement
|
// assignement
|
||||||
CSegRemanenceShape &operator = (const CSegRemanenceShape &other);
|
CSegRemanenceShape &operator = (const CSegRemanenceShape &other);
|
||||||
|
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CSegRemanenceShape);
|
NLMISC_DECLARE_CLASS(CSegRemanenceShape);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|
|
@ -201,7 +201,7 @@ public:
|
||||||
IShape* getShapePointer () const;
|
IShape* getShapePointer () const;
|
||||||
|
|
||||||
/// serial the shape.
|
/// serial the shape.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
private:
|
private:
|
||||||
IShape* _Shape;
|
IShape* _Shape;
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,7 +49,7 @@ public:
|
||||||
std::vector<uint8> ActiveBones;
|
std::vector<uint8> ActiveBones;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -94,7 +94,7 @@ public:
|
||||||
virtual float getNumTriangles (float distance);
|
virtual float getNumTriangles (float distance);
|
||||||
|
|
||||||
/// serial this skeletonshape.
|
/// serial this skeletonshape.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CSkeletonShape);
|
NLMISC_DECLARE_CLASS(CSkeletonShape);
|
||||||
|
|
||||||
/// flush textures used by this shape.
|
/// flush textures used by this shape.
|
||||||
|
|
|
@ -359,7 +359,7 @@ public:
|
||||||
virtual bool allowDegradation() const { return false; }
|
virtual bool allowDegradation() const { return false; }
|
||||||
|
|
||||||
/// serial ITexture basic infos (clamp ...).
|
/// serial ITexture basic infos (clamp ...).
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/** Select a texture among several other (if this texture is a set of texture such as CTextureMultiFile)
|
/** Select a texture among several other (if this texture is a set of texture such as CTextureMultiFile)
|
||||||
* The default does nothing
|
* The default does nothing
|
||||||
|
|
|
@ -74,7 +74,7 @@ public:
|
||||||
virtual void release();
|
virtual void release();
|
||||||
|
|
||||||
// serial this texture datas
|
// serial this texture datas
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint16 _BlendFactor;
|
uint16 _BlendFactor;
|
||||||
|
|
|
@ -47,7 +47,7 @@ public:
|
||||||
const ITexture *getHeightMap() const { return _HeightMap; };
|
const ITexture *getHeightMap() const { return _HeightMap; };
|
||||||
|
|
||||||
// serial this texture datas
|
// serial this texture datas
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
virtual bool supportSharing() const;
|
virtual bool supportSharing() const;
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ public:
|
||||||
virtual bool isTextureCube() const { return true; }
|
virtual bool isTextureCube() const { return true; }
|
||||||
|
|
||||||
/// Save the texture file name.
|
/// Save the texture file name.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CTextureCube);
|
NLMISC_DECLARE_CLASS(CTextureCube);
|
||||||
|
|
||||||
/// If the face support multiple texture (such has CTextureMultiFile), this allow to select the active set
|
/// If the face support multiple texture (such has CTextureMultiFile), this allow to select the active set
|
||||||
|
|
|
@ -81,7 +81,7 @@ public:
|
||||||
/// TextureDLM are system. Do not need to serialize them...
|
/// TextureDLM are system. Do not need to serialize them...
|
||||||
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
||||||
CTextureDLM() {nlstop;}
|
CTextureDLM() {nlstop;}
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||||
NLMISC_DECLARE_CLASS(CTextureDLM);
|
NLMISC_DECLARE_CLASS(CTextureDLM);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
const ITexture *getHeightMap() const { return _HeightMap; };
|
const ITexture *getHeightMap() const { return _HeightMap; };
|
||||||
|
|
||||||
// serial this texture datas
|
// serial this texture datas
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
virtual bool supportSharing() const;
|
virtual bool supportSharing() const;
|
||||||
virtual std::string getShareName() const;
|
virtual std::string getShareName() const;
|
||||||
//
|
//
|
||||||
|
|
|
@ -185,7 +185,7 @@ private:
|
||||||
void rebuildPatch (const CVector2s texturePos, const CPatchIdent &pid);
|
void rebuildPatch (const CVector2s texturePos, const CPatchIdent &pid);
|
||||||
|
|
||||||
/// From IStreamable
|
/// From IStreamable
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {}
|
virtual void serial(NLMISC::IStream &/* f */) {}
|
||||||
|
|
||||||
// Some static buffers
|
// Some static buffers
|
||||||
static NLMISC::CRGBA _LightmapExpanded[];
|
static NLMISC::CRGBA _LightmapExpanded[];
|
||||||
|
|
|
@ -122,7 +122,7 @@ public:
|
||||||
void doGenerate(bool async = false);
|
void doGenerate(bool async = false);
|
||||||
|
|
||||||
/// Save the texture file name.
|
/// Save the texture file name.
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CTextureFile);
|
NLMISC_DECLARE_CLASS(CTextureFile);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -112,7 +112,7 @@ private:
|
||||||
|
|
||||||
/// Todo: serialize a font texture.
|
/// Todo: serialize a font texture.
|
||||||
public:
|
public:
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||||
NLMISC_DECLARE_CLASS(CTextureFont);
|
NLMISC_DECLARE_CLASS(CTextureFont);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -111,7 +111,7 @@ public:
|
||||||
void doGenerate(bool async = false);
|
void doGenerate(bool async = false);
|
||||||
|
|
||||||
/// serialization
|
/// serialization
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
|
|
||||||
/// a group of 4 uvs
|
/// a group of 4 uvs
|
||||||
|
|
|
@ -160,7 +160,7 @@ public:
|
||||||
void setAllowDegradation(bool allow);
|
void setAllowDegradation(bool allow);
|
||||||
|
|
||||||
/// Todo: serialize a mem texture.
|
/// Todo: serialize a mem texture.
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||||
NLMISC_DECLARE_CLASS(CTextureMem);
|
NLMISC_DECLARE_CLASS(CTextureMem);
|
||||||
|
|
||||||
/** This create a white square texture of 1x1
|
/** This create a white square texture of 1x1
|
||||||
|
|
|
@ -70,7 +70,7 @@ public:
|
||||||
/// Generate the current selected texture, looking in CPath if necessary.
|
/// Generate the current selected texture, looking in CPath if necessary.
|
||||||
virtual void doGenerate(bool async = false);
|
virtual void doGenerate(bool async = false);
|
||||||
/// Serial this object
|
/// Serial this object
|
||||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
virtual void serial(NLMISC::IStream &f);
|
||||||
NLMISC_DECLARE_CLASS(CTextureMultiFile);
|
NLMISC_DECLARE_CLASS(CTextureMultiFile);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -77,7 +77,7 @@ public:
|
||||||
/// TextureNear are system. Do not need to serialize them...
|
/// TextureNear are system. Do not need to serialize them...
|
||||||
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
||||||
CTextureNear() {nlstop;}
|
CTextureNear() {nlstop;}
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||||
NLMISC_DECLARE_CLASS(CTextureNear);
|
NLMISC_DECLARE_CLASS(CTextureNear);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -77,7 +77,7 @@ public:
|
||||||
{
|
{
|
||||||
return (_Flags&NL3D_CTILE_FREE_FLAG)!=0;
|
return (_Flags&NL3D_CTILE_FREE_FLAG)!=0;
|
||||||
}
|
}
|
||||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
void setFileName (TBitmap bitmapType, const std::string& name)
|
void setFileName (TBitmap bitmapType, const std::string& name)
|
||||||
{
|
{
|
||||||
// not free
|
// not free
|
||||||
|
@ -180,7 +180,7 @@ public:
|
||||||
|
|
||||||
void clear(){ _TileSet.clear(); }
|
void clear(){ _TileSet.clear(); }
|
||||||
|
|
||||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
private:
|
private:
|
||||||
|
|
||||||
// internal use
|
// internal use
|
||||||
|
@ -210,7 +210,7 @@ public:
|
||||||
{
|
{
|
||||||
return _Tile;
|
return _Tile;
|
||||||
}
|
}
|
||||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
sint32 _Tile;
|
sint32 _Tile;
|
||||||
|
@ -236,7 +236,7 @@ public:
|
||||||
void doubleSize ();
|
void doubleSize ();
|
||||||
bool operator== (const CTileBorder& border) const;
|
bool operator== (const CTileBorder& border) const;
|
||||||
void operator= (const CTileBorder& border);
|
void operator= (const CTileBorder& border);
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
bool isSet() const
|
bool isSet() const
|
||||||
{
|
{
|
||||||
return _Set;
|
return _Set;
|
||||||
|
@ -416,7 +416,7 @@ public:
|
||||||
{
|
{
|
||||||
return _ChildName.find(name)!=_ChildName.end();
|
return _ChildName.find(name)!=_ChildName.end();
|
||||||
}
|
}
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
private:
|
private:
|
||||||
static TFlagBorder getComplementaryBorder (TFlagBorder border);
|
static TFlagBorder getComplementaryBorder (TFlagBorder border);
|
||||||
|
|
||||||
|
@ -629,7 +629,7 @@ public:
|
||||||
/// Postfix tile vegetable desc
|
/// Postfix tile vegetable desc
|
||||||
void postfixTileVegetableDesc (const char *filename);
|
void postfixTileVegetableDesc (const char *filename);
|
||||||
|
|
||||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
private:
|
private:
|
||||||
sint createTile ();
|
sint createTile ();
|
||||||
void freeTile (int tileIndex);
|
void freeTile (int tileIndex);
|
||||||
|
|
|
@ -94,7 +94,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serial this tile
|
/// Serial this tile
|
||||||
void serial (class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial (NLMISC::IStream &f);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// RGBA Pixels vector
|
/// RGBA Pixels vector
|
||||||
|
@ -141,7 +141,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Serial this bank
|
/// Serial this bank
|
||||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// The far tile vector
|
/// The far tile vector
|
||||||
std::vector<CTileFar> _TileVector;
|
std::vector<CTileFar> _TileVector;
|
||||||
|
|
|
@ -166,7 +166,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// Serial the template
|
/// Serial the template
|
||||||
virtual void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
virtual void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Serial version
|
// Serial version
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
@ -217,7 +217,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// Serial the template
|
/// Serial the template
|
||||||
virtual void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
virtual void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Serial version
|
// Serial version
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
|
|
@ -237,7 +237,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// Serial the template
|
/// Serial the template
|
||||||
virtual void serial (NLMISC::IStream& f) throw (NLMISC::EStream)
|
virtual void serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Serial version
|
// Serial version
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
|
|
@ -168,7 +168,7 @@ public:
|
||||||
sint64 Date;
|
sint64 Date;
|
||||||
|
|
||||||
/// serial the pools data's
|
/// serial the pools data's
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/// Set this pool name.
|
/// Set this pool name.
|
||||||
void setName(const std::string &name) { _Name = name; }
|
void setName(const std::string &name) { _Name = name; }
|
||||||
|
|
|
@ -97,7 +97,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serial the pools data's
|
/// serial the pools data's
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class CWaterShape;
|
friend class CWaterShape;
|
||||||
|
|
|
@ -108,7 +108,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serial this shape
|
/// serial this shape
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// serial this shape
|
/// serial this shape
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
@ -160,7 +160,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
@ -239,7 +239,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destructor
|
* Destructor
|
||||||
|
@ -323,7 +323,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
|
|
@ -79,7 +79,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node, const char *subName = "") const;
|
void write (xmlNodePtr node, const char *subName = "") const;
|
||||||
void read (xmlNodePtr node, const char *subName = "");
|
void read (xmlNodePtr node, const char *subName = "");
|
||||||
|
@ -122,7 +122,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
@ -181,7 +181,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
|
|
@ -149,7 +149,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
void write (xmlNodePtr node) const;
|
void write (xmlNodePtr node) const;
|
||||||
void read (xmlNodePtr node);
|
void read (xmlNodePtr node);
|
||||||
|
|
|
@ -182,7 +182,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial( NLMISC::IStream &f ) throw(NLMISC::EStream);
|
//void serial( NLMISC::IStream &f );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the variables
|
* Display the variables
|
||||||
|
|
|
@ -104,7 +104,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//virtual void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
virtual void write (xmlNodePtr node) const;
|
virtual void write (xmlNodePtr node) const;
|
||||||
virtual void read (xmlNodePtr node);
|
virtual void read (xmlNodePtr node);
|
||||||
|
@ -186,7 +186,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* serial
|
* serial
|
||||||
*/
|
*/
|
||||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
//void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
virtual void write (xmlNodePtr node) const;
|
virtual void write (xmlNodePtr node) const;
|
||||||
virtual void read (xmlNodePtr node);
|
virtual void read (xmlNodePtr node);
|
||||||
|
|
|
@ -211,6 +211,14 @@ bool strFindReplace(T &str, const char *strFind, const U &strReplace)
|
||||||
return strFindReplace(str, tempStr, strReplace);
|
return strFindReplace(str, tempStr, strReplace);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class T>
|
||||||
|
T strFindReplaceAll(const T &str, const T &search, const T &replace)
|
||||||
|
{
|
||||||
|
T ret = str;
|
||||||
|
while (strFindReplace(ret, search, replace));
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
// set flags in a bit set
|
// set flags in a bit set
|
||||||
template <class T, class U>
|
template <class T, class U>
|
||||||
inline void setFlags(T &dest, U mask, bool on)
|
inline void setFlags(T &dest, U mask, bool on)
|
||||||
|
|
|
@ -132,7 +132,7 @@ public:
|
||||||
// See which parts of array will be discarded if the array is displaced by the given offset
|
// See which parts of array will be discarded if the array is displaced by the given offset
|
||||||
void getDiscardRects(sint moveOffsetX, sint moveOffsetY, std::vector<NLMISC::CRect> &discardedRects);
|
void getDiscardRects(sint moveOffsetX, sint moveOffsetY, std::vector<NLMISC::CRect> &discardedRects);
|
||||||
//
|
//
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
private:
|
private:
|
||||||
TArrayContainer _Array;
|
TArrayContainer _Array;
|
||||||
uint _Width;
|
uint _Width;
|
||||||
|
@ -157,7 +157,7 @@ void CArray2D<T>::clear()
|
||||||
|
|
||||||
//*********************************************************************************
|
//*********************************************************************************
|
||||||
template <class T>
|
template <class T>
|
||||||
void CArray2D<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CArray2D<T>::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCont(_Array);
|
f.serialCont(_Array);
|
||||||
uint32 width = _Width;
|
uint32 width = _Width;
|
||||||
|
|
|
@ -233,6 +233,26 @@ char toLower ( const char ch ); // convert only one character
|
||||||
std::string toUpper ( const std::string &str);
|
std::string toUpper ( const std::string &str);
|
||||||
void toUpper ( char *str);
|
void toUpper ( char *str);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert to an hexadecimal std::string
|
||||||
|
*/
|
||||||
|
std::string toHexa(const uint8 &b);
|
||||||
|
std::string toHexa(const uint8 *data, uint size);
|
||||||
|
std::string toHexa(const std::string &str);
|
||||||
|
std::string toHexa(const char *str);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert from an hexadecimal std::string
|
||||||
|
*/
|
||||||
|
bool fromHexa(const std::string &hexa, uint8 &b);
|
||||||
|
bool fromHexa(const std::string &hexa, uint8 *data);
|
||||||
|
bool fromHexa(const std::string &hexa, std::string &str);
|
||||||
|
bool fromHexa(const char *hexa, uint8 &b);
|
||||||
|
bool fromHexa(const char *hexa, uint8 *data);
|
||||||
|
bool fromHexa(const char *hexa, std::string &str);
|
||||||
|
bool fromHexa(const char hexa, uint8 &b);
|
||||||
|
|
||||||
// Remove all the characters <= 32 (tab, space, new line, return, vertical tab etc..) at the beginning and at the end of a string
|
// Remove all the characters <= 32 (tab, space, new line, return, vertical tab etc..) at the beginning and at the end of a string
|
||||||
template <class T> T trim (const T &str)
|
template <class T> T trim (const T &str)
|
||||||
{
|
{
|
||||||
|
@ -394,6 +414,9 @@ std::string expandEnvironmentVariables(const std::string &s);
|
||||||
bool explodeArguments(const std::string &str, std::vector<std::string> &args);
|
bool explodeArguments(const std::string &str, std::vector<std::string> &args);
|
||||||
std::string joinArguments(const std::vector<std::string> &args);
|
std::string joinArguments(const std::vector<std::string> &args);
|
||||||
|
|
||||||
|
/// Escape an argument to not evaluate environment variables or special cases
|
||||||
|
std::string escapeArgument(const std::string &arg);
|
||||||
|
|
||||||
/// This function kills a program using his pid (on unix, it uses the kill() POSIX function)
|
/// This function kills a program using his pid (on unix, it uses the kill() POSIX function)
|
||||||
bool killProgram(uint32 pid);
|
bool killProgram(uint32 pid);
|
||||||
|
|
||||||
|
|
|
@ -450,8 +450,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void serial (NLMISC::IStream &f) throw (NLMISC::EStream)
|
void serial (NLMISC::IStream &f)
|
||||||
// virtual void serial (NLMISC::IStream &f) throw (NLMISC::EStream)
|
// virtual void serial (NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
if (f.isReading ())
|
if (f.isReading ())
|
||||||
{
|
{
|
||||||
|
|
|
@ -53,7 +53,7 @@ public:
|
||||||
uint getNumAllocatedBlocks() const { return _NumAlloc; }
|
uint getNumAllocatedBlocks() const { return _NumAlloc; }
|
||||||
private:
|
private:
|
||||||
class CChunk;
|
class CChunk;
|
||||||
|
|
||||||
class NL_ALIGN(NL_DEFAULT_MEMORY_ALIGNMENT) CNode
|
class NL_ALIGN(NL_DEFAULT_MEMORY_ALIGNMENT) CNode
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
double getSamplingPeriod() const { return _SamplingPeriod; }
|
double getSamplingPeriod() const { return _SamplingPeriod; }
|
||||||
// Reset smoother. The next returned position will be the exact position of mouse (no smoothing with previous position is done)
|
// Reset smoother. The next returned position will be the exact position of mouse (no smoothing with previous position is done)
|
||||||
void reset();
|
void reset();
|
||||||
// \return trueif no sampling has occurred since last resetor construction
|
// \return true if no sampling has occurred since last resetor construction
|
||||||
bool isReseted() const { return !_Init; }
|
bool isReseted() const { return !_Init; }
|
||||||
// Sample pos, and return smoothed position
|
// Sample pos, and return smoothed position
|
||||||
CVector2f samplePos(const CVector2f &wantedPos, double date);
|
CVector2f samplePos(const CVector2f &wantedPos, double date);
|
||||||
|
|
|
@ -66,7 +66,7 @@ public:
|
||||||
float computeArea() const;
|
float computeArea() const;
|
||||||
|
|
||||||
/// Serial this polygon
|
/// Serial this polygon
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert a concave polygon into a list of convex polygons using a 2d projection.
|
* Convert a concave polygon into a list of convex polygons using a 2d projection.
|
||||||
|
@ -156,7 +156,7 @@ public:
|
||||||
void getBestTriplet(uint &index0, uint &index1, uint &index2);
|
void getBestTriplet(uint &index0, uint &index1, uint &index2);
|
||||||
|
|
||||||
/// Serial this polygon
|
/// Serial this polygon
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
typedef std::pair<sint, sint> TRaster;
|
typedef std::pair<sint, sint> TRaster;
|
||||||
typedef std::vector<TRaster> TRasterVect;
|
typedef std::vector<TRaster> TRasterVect;
|
||||||
|
|
|
@ -86,7 +86,7 @@ public:
|
||||||
* Serialisation.
|
* Serialisation.
|
||||||
* \param f Stream used for serialisation.
|
* \param f Stream used for serialisation.
|
||||||
*/
|
*/
|
||||||
void serial (class NLMISC::IStream &f);
|
void serial (NLMISC::IStream &f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Blend two colors.
|
* Blend two colors.
|
||||||
|
@ -451,7 +451,7 @@ public:
|
||||||
* Serialisation.
|
* Serialisation.
|
||||||
* \param f Stream used for serialisation.
|
* \param f Stream used for serialisation.
|
||||||
*/
|
*/
|
||||||
void serial(class NLMISC::IStream &f);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Blend two colors.
|
* Blend two colors.
|
||||||
|
@ -676,7 +676,7 @@ public:
|
||||||
* Serialisation.
|
* Serialisation.
|
||||||
* \param f Stream used for serialisation.
|
* \param f Stream used for serialisation.
|
||||||
*/
|
*/
|
||||||
void serial(class NLMISC::IStream &f);
|
void serial(NLMISC::IStream &f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set colors.
|
* Set colors.
|
||||||
|
|
|
@ -146,8 +146,8 @@ public :
|
||||||
/**
|
/**
|
||||||
* Serial
|
* Serial
|
||||||
*/
|
*/
|
||||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
void serial(NLMISC::IStream &f);
|
||||||
void serialString(NLMISC::IStream &f, const std::string &defaultType = "") throw(NLMISC::EStream);
|
void serialString(NLMISC::IStream &f, const std::string &defaultType = "");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the list of valid sheet ids with their associated file names
|
* Display the list of valid sheet ids with their associated file names
|
||||||
|
|
|
@ -1,37 +1,37 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION NL_VERSION_RC
|
FILEVERSION NL_VERSION_RC
|
||||||
PRODUCTVERSION NL_VERSION_RC
|
PRODUCTVERSION NL_VERSION_RC
|
||||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS VS_FF_DEBUG
|
FILEFLAGS VS_FF_DEBUG
|
||||||
#else
|
#else
|
||||||
FILEFLAGS 0x0L
|
FILEFLAGS 0x0L
|
||||||
#endif
|
#endif
|
||||||
FILEOS VOS_NT_WINDOWS32
|
FILEOS VOS_NT_WINDOWS32
|
||||||
FILETYPE VFT_DLL
|
FILETYPE VFT_DLL
|
||||||
FILESUBTYPE 0x0L
|
FILESUBTYPE 0x0L
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "NeL Direct3D driver"
|
VALUE "FileDescription", "NeL Direct3D driver"
|
||||||
VALUE "FileVersion", NL_VERSION
|
VALUE "FileVersion", NL_VERSION
|
||||||
VALUE "LegalCopyright", COPYRIGHT
|
VALUE "LegalCopyright", COPYRIGHT
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
VALUE "OriginalFilename", "nel_drv_direct3d_win_d.dll"
|
VALUE "OriginalFilename", "nel_drv_direct3d_win_d.dll"
|
||||||
#else
|
#else
|
||||||
VALUE "OriginalFilename", "nel_drv_direct3d_win_r.dll"
|
VALUE "OriginalFilename", "nel_drv_direct3d_win_r.dll"
|
||||||
#endif
|
#endif
|
||||||
VALUE "ProductName", "Ryzom Core"
|
VALUE "ProductName", "Ryzom Core"
|
||||||
VALUE "ProductVersion", NL_VERSION
|
VALUE "ProductVersion", NL_VERSION
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Translation", 0x409, 1252
|
VALUE "Translation", 0x409, 1252
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
|
@ -1195,11 +1195,11 @@ sint CDriverGL::getTotalVideoMemory() const
|
||||||
|
|
||||||
if (_Extensions.ATIMeminfo)
|
if (_Extensions.ATIMeminfo)
|
||||||
{
|
{
|
||||||
GLint memoryInKiB = 0;
|
GLint params[4];
|
||||||
glGetIntegerv(GL_TEXTURE_FREE_MEMORY_ATI, &memoryInKiB);
|
glGetIntegerv(GL_TEXTURE_FREE_MEMORY_ATI, params);
|
||||||
|
|
||||||
nlinfo("3D: GL_TEXTURE_FREE_MEMORY_ATI returned %d KiB", memoryInKiB);
|
nlinfo("3D: GL_TEXTURE_FREE_MEMORY_ATI returned %d KiB", params[0]);
|
||||||
return memoryInKiB;
|
return params[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(NL_OS_WINDOWS)
|
#if defined(NL_OS_WINDOWS)
|
||||||
|
|
|
@ -635,7 +635,7 @@ bool CDriverGL::renderRawQuads(CMaterial& mat, uint32 startIndex, uint32 numQuad
|
||||||
nlerror("not available in OpenGL ES 1.0, only use 16 bits indices");
|
nlerror("not available in OpenGL ES 1.0, only use 16 bits indices");
|
||||||
#else
|
#else
|
||||||
// indices fits on 32 bits
|
// indices fits on 32 bits
|
||||||
GLint indices[QUAD_BATCH_SIZE];
|
GLint indices[QUAD_BATCH_SIZE * 6];
|
||||||
GLint *curr = indices;
|
GLint *curr = indices;
|
||||||
GLint *end = indices + 6 * numQuadsToDraw;
|
GLint *end = indices + 6 * numQuadsToDraw;
|
||||||
uint32 vertexIndex = currIndex;
|
uint32 vertexIndex = currIndex;
|
||||||
|
|
|
@ -1,37 +1,37 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION NL_VERSION_RC
|
FILEVERSION NL_VERSION_RC
|
||||||
PRODUCTVERSION NL_VERSION_RC
|
PRODUCTVERSION NL_VERSION_RC
|
||||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS VS_FF_DEBUG
|
FILEFLAGS VS_FF_DEBUG
|
||||||
#else
|
#else
|
||||||
FILEFLAGS 0x0L
|
FILEFLAGS 0x0L
|
||||||
#endif
|
#endif
|
||||||
FILEOS VOS_NT_WINDOWS32
|
FILEOS VOS_NT_WINDOWS32
|
||||||
FILETYPE VFT_DLL
|
FILETYPE VFT_DLL
|
||||||
FILESUBTYPE 0x0L
|
FILESUBTYPE 0x0L
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "NeL OpenGL driver"
|
VALUE "FileDescription", "NeL OpenGL driver"
|
||||||
VALUE "FileVersion", NL_VERSION
|
VALUE "FileVersion", NL_VERSION
|
||||||
VALUE "LegalCopyright", COPYRIGHT
|
VALUE "LegalCopyright", COPYRIGHT
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
VALUE "OriginalFilename", "nel_drv_opengl_win_d.dll"
|
VALUE "OriginalFilename", "nel_drv_opengl_win_d.dll"
|
||||||
#else
|
#else
|
||||||
VALUE "OriginalFilename", "nel_drv_opengl_win_r.dll"
|
VALUE "OriginalFilename", "nel_drv_opengl_win_r.dll"
|
||||||
#endif
|
#endif
|
||||||
VALUE "ProductName", "Ryzom Core"
|
VALUE "ProductName", "Ryzom Core"
|
||||||
VALUE "ProductVersion", NL_VERSION
|
VALUE "ProductVersion", NL_VERSION
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Translation", 0x409, 1252
|
VALUE "Translation", 0x409, 1252
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
|
@ -83,8 +83,6 @@ void CUnixEventEmitter::createIM()
|
||||||
{
|
{
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
#ifdef X_HAVE_UTF8_STRING
|
||||||
|
|
||||||
XModifierKeymap *g_mod_map = XGetModifierMapping(_dpy);
|
|
||||||
|
|
||||||
_im = XOpenIM(_dpy, NULL, NULL, NULL);
|
_im = XOpenIM(_dpy, NULL, NULL, NULL);
|
||||||
|
|
||||||
if (_im == NULL)
|
if (_im == NULL)
|
||||||
|
|
|
@ -1,37 +1,37 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION NL_VERSION_RC
|
FILEVERSION NL_VERSION_RC
|
||||||
PRODUCTVERSION NL_VERSION_RC
|
PRODUCTVERSION NL_VERSION_RC
|
||||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS VS_FF_DEBUG
|
FILEFLAGS VS_FF_DEBUG
|
||||||
#else
|
#else
|
||||||
FILEFLAGS 0x0L
|
FILEFLAGS 0x0L
|
||||||
#endif
|
#endif
|
||||||
FILEOS VOS_NT_WINDOWS32
|
FILEOS VOS_NT_WINDOWS32
|
||||||
FILETYPE VFT_DLL
|
FILETYPE VFT_DLL
|
||||||
FILESUBTYPE 0x0L
|
FILESUBTYPE 0x0L
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "NeL OpenGL ES 1.1 driver"
|
VALUE "FileDescription", "NeL OpenGL ES 1.1 driver"
|
||||||
VALUE "FileVersion", NL_VERSION
|
VALUE "FileVersion", NL_VERSION
|
||||||
VALUE "LegalCopyright", COPYRIGHT
|
VALUE "LegalCopyright", COPYRIGHT
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
VALUE "OriginalFilename", "nel_drv_opengles_win_d.dll"
|
VALUE "OriginalFilename", "nel_drv_opengles_win_d.dll"
|
||||||
#else
|
#else
|
||||||
VALUE "OriginalFilename", "nel_drv_opengles_win_r.dll"
|
VALUE "OriginalFilename", "nel_drv_opengles_win_r.dll"
|
||||||
#endif
|
#endif
|
||||||
VALUE "ProductName", "Ryzom Core"
|
VALUE "ProductName", "Ryzom Core"
|
||||||
VALUE "ProductVersion", NL_VERSION
|
VALUE "ProductVersion", NL_VERSION
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "Translation", 0x409, 1252
|
VALUE "Translation", 0x409, 1252
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
|
@ -63,7 +63,7 @@ CFlareShape::CFlareShape() : _Color(NLMISC::CRGBA::White),
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************************************************
|
// ***************************************************************************************************************
|
||||||
void CFlareShape::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CFlareShape::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// Version 4 : - added occlusion test mesh, size reduction, angle modification when object is occluded
|
// Version 4 : - added occlusion test mesh, size reduction, angle modification when object is occluded
|
||||||
// - added lookat mode for first flare
|
// - added lookat mode for first flare
|
||||||
|
|
|
@ -271,7 +271,14 @@ void CFontGenerator::getSizes (ucchar c, uint32 size, uint32 &width, uint32 &hei
|
||||||
error = FT_Load_Glyph (_Face, glyph_index, FT_LOAD_DEFAULT);
|
error = FT_Load_Glyph (_Face, glyph_index, FT_LOAD_DEFAULT);
|
||||||
if (error)
|
if (error)
|
||||||
{
|
{
|
||||||
nlerror ("FT_Load_Glyph() failed: %s", getFT2Error(error));
|
// use fallback for glyph/character errors (composite char limit for example)
|
||||||
|
nlwarning ("FT_Load_Glyph() failed: %s", getFT2Error(error));
|
||||||
|
|
||||||
|
error = FT_Load_Glyph (_Face, 0, FT_LOAD_DEFAULT);
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
nlerror("FT_Load_Glyph() fallback failed: %s", getFT2Error(error));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// convert 24.6 fixed point into integer
|
// convert 24.6 fixed point into integer
|
||||||
|
@ -302,7 +309,14 @@ uint8 *CFontGenerator::getBitmap (ucchar c, uint32 size, bool embolden, bool obl
|
||||||
error = FT_Load_Glyph (_Face, glyph_index, FT_LOAD_DEFAULT);
|
error = FT_Load_Glyph (_Face, glyph_index, FT_LOAD_DEFAULT);
|
||||||
if (error)
|
if (error)
|
||||||
{
|
{
|
||||||
nlerror ("FT_Load_Glyph() failed: %s", getFT2Error(error));
|
// use fallback for glyph/character errors (composite char limit for example)
|
||||||
|
nlwarning ("FT_Load_Glyph() failed: %s", getFT2Error(error));
|
||||||
|
|
||||||
|
error = FT_Load_Glyph (_Face, 0, FT_LOAD_DEFAULT);
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
nlerror("FT_Load_Glyph() fallback failed: %s", getFT2Error(error));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size == 0)
|
if (size == 0)
|
||||||
|
|
|
@ -139,7 +139,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dummy serial...
|
// Dummy serial...
|
||||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
virtual void serial(NLMISC::IStream &/* f */) { nlstop; }
|
||||||
NLMISC_DECLARE_CLASS(CTextureCross);
|
NLMISC_DECLARE_CLASS(CTextureCross);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -861,7 +861,7 @@ void CMeshGeom::renderSimpleWithMaterial(IDriver *drv, const CMatrix &worldMatri
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshGeom::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
@ -2389,7 +2389,7 @@ CMesh::CCorner::CCorner()
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMesh::CCorner::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMesh::CCorner::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
nlassert(0); // not used
|
nlassert(0); // not used
|
||||||
f.serial(Vertex);
|
f.serial(Vertex);
|
||||||
|
@ -2400,7 +2400,7 @@ void CMesh::CCorner::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMesh::CFace::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMesh::CFace::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
for(int i=0;i<3;++i)
|
for(int i=0;i<3;++i)
|
||||||
f.serial(Corner[i]);
|
f.serial(Corner[i]);
|
||||||
|
@ -2409,7 +2409,7 @@ void CMesh::CFace::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMesh::CSkinWeight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMesh::CSkinWeight::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
for(int i=0;i<NL3D_MESH_SKINNING_MAX_MATRIX;++i)
|
for(int i=0;i<NL3D_MESH_SKINNING_MAX_MATRIX;++i)
|
||||||
{
|
{
|
||||||
|
@ -2420,7 +2420,7 @@ void CMesh::CSkinWeight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
/* Serialization is not used.
|
/* Serialization is not used.
|
||||||
void CMesh::CMeshBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMesh::CMeshBuild::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
sint ver= f.serialVersion(0);
|
sint ver= f.serialVersion(0);
|
||||||
|
|
||||||
|
@ -2604,7 +2604,7 @@ void CMesh::render(IDriver *drv, CTransformShape *trans, bool passOpaque)
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMesh::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMesh::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
|
|
@ -139,7 +139,7 @@ CMeshBase::CMeshBaseBuild::CMeshBaseBuild()
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
#if 0
|
#if 0
|
||||||
void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Version 1:
|
Version 1:
|
||||||
|
@ -164,7 +164,7 @@ void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshBase::serialMeshBase(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshBase::serialMeshBase(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
|
|
@ -32,7 +32,7 @@ namespace NL3D
|
||||||
{
|
{
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CBlendShape::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CBlendShape::serial (NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
@ -345,7 +345,7 @@ void CMeshMorpher::updateSkinned (std::vector<CAnimatedMorph> *pBSFactor)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshMorpher::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMorpher::serial (NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
|
|
@ -1604,7 +1604,7 @@ void CMeshMRMGeom::updateShiftedTriangleCache(CMeshMRMInstance *mi, sint curLodI
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshMRMGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMRMGeom::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// because of complexity, serial is separated in save / load.
|
// because of complexity, serial is separated in save / load.
|
||||||
|
|
||||||
|
@ -1618,7 +1618,7 @@ void CMeshMRMGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream)
|
sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Version 5:
|
Version 5:
|
||||||
|
@ -1748,7 +1748,7 @@ sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshMRMGeom::load(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMRMGeom::load(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// Load the header of the stream.
|
// Load the header of the stream.
|
||||||
// ==================
|
// ==================
|
||||||
|
@ -1778,7 +1778,7 @@ void CMeshMRMGeom::load(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshMRMGeom::save(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMRMGeom::save(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Version 5:
|
Version 5:
|
||||||
|
@ -2968,7 +2968,7 @@ void CMeshMRM::render(IDriver *drv, CTransformShape *trans, bool passOpaque)
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CMeshMRM::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMRM::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Version 0:
|
Version 0:
|
||||||
|
|
|
@ -288,7 +288,7 @@ void CMeshMultiLod::render(IDriver *drv, CTransformShape *trans, bool passOpaque
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
|
|
||||||
void CMeshMultiLod::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMultiLod::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
/* ***********************************************
|
/* ***********************************************
|
||||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||||
|
@ -405,7 +405,7 @@ void CMeshMultiLod::clear ()
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
|
|
||||||
void CMeshMultiLod::CMeshSlot::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshMultiLod::CMeshSlot::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// Check version
|
// Check version
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
|
|
@ -573,7 +573,7 @@ void CMeshVPPerPixelLight::end(IDriver *drv)
|
||||||
|
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
void CMeshVPPerPixelLight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CMeshVPPerPixelLight::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
(void)f.serialVersion(0);
|
(void)f.serialVersion(0);
|
||||||
f.serial(SpecularLighting);
|
f.serial(SpecularLighting);
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue