Put in some changes along sg1.4 dev history.
This commit is contained in:
62
LICENSES/boost-coroutine-linden.patch
Normal file
62
LICENSES/boost-coroutine-linden.patch
Normal file
@@ -0,0 +1,62 @@
|
||||
diff -rc ../boost-coroutine/boost/coroutine/coroutine.hpp boost-coroutine/boost/coroutine/coroutine.hpp
|
||||
*** ../boost-coroutine/boost/coroutine/coroutine.hpp Wed Apr 29 14:41:05 2009
|
||||
--- boost-coroutine/boost/coroutine/coroutine.hpp Wed Apr 22 09:35:22 2009
|
||||
***************
|
||||
*** 28,33 ****
|
||||
--- 28,36 ----
|
||||
|
||||
#ifndef BOOST_COROUTINE_COROUTINE_HPP_20060512
|
||||
#define BOOST_COROUTINE_COROUTINE_HPP_20060512
|
||||
+ // On Linux systems, use native swapcontext() et al. rather than
|
||||
+ // Boost.Coroutine homebrew assembler
|
||||
+ #define BOOST_COROUTINE_NO_ASM
|
||||
// default_context_impl.hpp must be first for weird Apple bug
|
||||
#include <boost/coroutine/detail/default_context_impl.hpp>
|
||||
#include <cstddef>
|
||||
diff -rc ../boost-coroutine/boost/coroutine/future.hpp boost-coroutine/boost/coroutine/future.hpp
|
||||
*** ../boost-coroutine/boost/coroutine/future.hpp Wed Apr 29 14:41:05 2009
|
||||
--- boost-coroutine/boost/coroutine/future.hpp Wed Apr 22 09:35:26 2009
|
||||
***************
|
||||
*** 33,38 ****
|
||||
--- 33,41 ----
|
||||
#ifndef BOOST_COROUTINE_WAIT_MAX
|
||||
#define BOOST_COROUTINE_WAIT_MAX 10
|
||||
#endif
|
||||
+ // On Linux systems, use native swapcontext() et al. rather than
|
||||
+ // Boost.Coroutine homebrew assembler
|
||||
+ #define BOOST_COROUTINE_NO_ASM
|
||||
// default_context_impl.hpp must be first for weird Apple bug
|
||||
#include <boost/coroutine/detail/default_context_impl.hpp>
|
||||
#include <boost/none.hpp>
|
||||
diff -u -r old/boost/coroutine/detail/coroutine_impl.hpp new/boost/coroutine/detail/coroutine_impl.hpp
|
||||
--- old/boost/coroutine/detail/coroutine_impl.hpp 2009-10-20 17:10:02.000000000 +0100
|
||||
+++ new/boost/coroutine/detail/coroutine_impl.hpp 2009-10-20 19:22:11.000000000 +0100
|
||||
@@ -56,7 +56,7 @@
|
||||
typedef ContextImpl context_impl;
|
||||
typedef CoroutineType coroutine_type;
|
||||
typedef coroutine_impl<coroutine_type, context_impl> type;
|
||||
- typedef context_base<context_impl> context_base;
|
||||
+ typedef context_base<context_impl> context_base_type;
|
||||
typedef typename coroutine_type::arg_slot_type arg_slot_type;
|
||||
typedef typename coroutine_type::result_type result_type;
|
||||
typedef typename coroutine_type::result_slot_type result_slot_type;
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
template<typename DerivedType>
|
||||
coroutine_impl(DerivedType * this_, std::ptrdiff_t stack_size) :
|
||||
- context_base(*this_, stack_size),
|
||||
+ context_base_type(*this_, stack_size),
|
||||
m_arg(0),
|
||||
m_result(0){}
|
||||
|
||||
diff -u -r old/boost/coroutine/detail/posix_utility.hpp new/boost/coroutine/detail/posix_utility.hpp
|
||||
--- old/boost/coroutine/detail/posix_utility.hpp 2009-04-24 21:30:44.000000000 +0100
|
||||
+++ new/boost/coroutine/detail/posix_utility.hpp 2009-10-20 19:21:27.000000000 +0100
|
||||
@@ -39,6 +39,7 @@
|
||||
#include <cstddef>
|
||||
#include <cstdlib>
|
||||
#include <iostream>
|
||||
+#include <cstring>
|
||||
#include <boost/type_traits.hpp>
|
||||
#if defined(_POSIX_MAPPED_FILES) && _POSIX_MAPPED_FILES > 0
|
||||
#include <sys/mman.h>
|
||||
@@ -1,5 +1,5 @@
|
||||
SLASSET_LIBS_WIN32=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/slviewer-win32-libs-oss-viewer-1.23.4.139024.zip
|
||||
SLASSET_MD5=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/md5sums-oss-viewer-1.23.4.139024.txt
|
||||
SLASSET_LIBS_DARWIN=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/slviewer-darwin-libs-oss-viewer-1.23.4.139024.tar.gz
|
||||
SLASSET_ART=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/slviewer-artwork-oss-viewer-1.23.4.139024.zip
|
||||
SLASSET_LIBS_LINUXI386=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/slviewer-linux-libs-oss-viewer-1.23.4.139024.tar.gz
|
||||
SLASSET_LIBS_WIN32=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/export/slviewer-win32-libs-oss-viewer-1.23.4.0.zip
|
||||
SLASSET_MD5=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/export/md5sums-oss-viewer-1.23.4.0.txt
|
||||
SLASSET_LIBS_DARWIN=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/export/slviewer-darwin-libs-oss-viewer-1.23.4.0.tar.gz
|
||||
SLASSET_ART=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/export/slviewer-artwork-oss-viewer-1.23.4.0.zip
|
||||
SLASSET_LIBS_LINUXI386=http://automated-builds-secondlife-com.s3.amazonaws.com/oss-viewer/export/slviewer-linux-libs-oss-viewer-1.23.4.0.tar.gz
|
||||
|
||||
@@ -128,6 +128,7 @@ Alissa Sabre
|
||||
VWR-10728
|
||||
VWR-12620
|
||||
SNOW-124
|
||||
SNOW-479
|
||||
Angus Boyd
|
||||
VWR-592
|
||||
Ann Congrejo
|
||||
@@ -138,6 +139,9 @@ Ardy Lay
|
||||
SNOW-205
|
||||
SNOW-322
|
||||
SNOW-364
|
||||
SNOW-384
|
||||
SNOW-629
|
||||
SNOW-783
|
||||
Argent Stonecutter
|
||||
VWR-68
|
||||
Armin Weatherwax
|
||||
@@ -176,6 +180,8 @@ blino Nakamura
|
||||
Boroondas Gupte
|
||||
SNOW-201
|
||||
SNOW-396
|
||||
SNOW-589
|
||||
SNOW-624
|
||||
VWR-233
|
||||
WEB-262
|
||||
Bulli Schumann
|
||||
@@ -366,6 +372,8 @@ Kitty Barnett
|
||||
Kunnis Basiat
|
||||
VWR-82
|
||||
VWR-102
|
||||
Lance Corrimal
|
||||
SNOW-717
|
||||
Latif Khalifa
|
||||
VWR-5370
|
||||
Lisa Lowe
|
||||
|
||||
@@ -217,7 +217,7 @@ endif (DARWIN)
|
||||
|
||||
|
||||
if (LINUX OR DARWIN)
|
||||
set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs -Wno-non-virtual-dtor")
|
||||
set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs -Wno-non-virtual-dtor -Woverloaded-virtual")
|
||||
|
||||
if (NOT GCC_DISABLE_FATAL_WARNINGS)
|
||||
set(GCC_WARNINGS "${GCC_WARNINGS} -Werror")
|
||||
|
||||
@@ -14,25 +14,25 @@ else (STANDALONE)
|
||||
use_prebuilt_binary(apr_suite)
|
||||
if (WINDOWS)
|
||||
set(APR_LIBRARIES
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/apr-1.lib
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/apr-1.lib
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.lib
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.lib
|
||||
)
|
||||
set(APRICONV_LIBRARIES
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapriconv-1.lib
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapriconv-1.lib
|
||||
)
|
||||
set(APRUTIL_LIBRARIES
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/aprutil-1.lib ${APRICONV_LIBRARIES}
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/aprutil-1.lib ${APRICONV_LIBRARIES}
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.lib ${APRICONV_LIBRARIES}
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.lib ${APRICONV_LIBRARIES}
|
||||
)
|
||||
elseif (DARWIN)
|
||||
set(APR_LIBRARIES
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.a
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.a
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.0.3.7.dylib
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.0.3.7.dylib
|
||||
)
|
||||
set(APRUTIL_LIBRARIES
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.a
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.a
|
||||
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.0.3.8.dylib
|
||||
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.0.3.8.dylib
|
||||
)
|
||||
set(APRICONV_LIBRARIES iconv)
|
||||
else (WINDOWS)
|
||||
|
||||
@@ -16,37 +16,31 @@ else (STANDALONE)
|
||||
|
||||
if (WINDOWS)
|
||||
set(BOOST_VERSION 1_39)
|
||||
if (MSVC80)
|
||||
set(BOOST_PROGRAM_OPTIONS_LIBRARY
|
||||
optimized libboost_program_options-vc80-mt-${BOOST_VERSION}
|
||||
debug libboost_program_options-vc80-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_REGEX_LIBRARY
|
||||
optimized libboost_regex-vc80-mt-${BOOST_VERSION}
|
||||
debug libboost_regex-vc80-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_SIGNALS_LIBRARY
|
||||
optimized libboost_signals-vc80-mt-${BOOST_VERSION}
|
||||
debug libboost_signals-vc80-mt-gd-${BOOST_VERSION})
|
||||
elseif (MSVC90)
|
||||
set(BOOST_PROGRAM_OPTIONS_LIBRARY
|
||||
optimized libboost_program_options-vc90-mt-${BOOST_VERSION}
|
||||
debug libboost_program_options-vc90-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_REGEX_LIBRARY
|
||||
optimized libboost_regex-vc90-mt-${BOOST_VERSION}
|
||||
debug libboost_regex-vc90-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_SIGNALS_LIBRARY
|
||||
optimized libboost_signals-vc90-mt-${BOOST_VERSION}
|
||||
debug libboost_signals-vc90-mt-gd-${BOOST_VERSION})
|
||||
elseif (MSVC100)
|
||||
set(BOOST_PROGRAM_OPTIONS_LIBRARY
|
||||
optimized libboost_program_options-vc100-mt-${BOOST_VERSION}
|
||||
debug libboost_program_options-vc100-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_REGEX_LIBRARY
|
||||
optimized libboost_regex-vc100-mt-${BOOST_VERSION}
|
||||
debug libboost_regex-vc100-mt-gd-${BOOST_VERSION})
|
||||
set(BOOST_SIGNALS_LIBRARY
|
||||
optimized libboost_signals-vc100-mt-${BOOST_VERSION}
|
||||
debug libboost_signals-vc100-mt-gd-${BOOST_VERSION})
|
||||
endif (MSVC80)
|
||||
|
||||
# SNOW-788
|
||||
# 00-Common.cmake alreay sets MSVC_SUFFIX to be correct for the VS we are using eg VC71, VC80, VC90 etc
|
||||
# The precompiled boost libs for VC71 use a different suffix to VS80 and VS90
|
||||
# This code should ensure the cmake rules are valid for any VS being used in future as long as the approprate
|
||||
# boost libs are avaiable - RC.
|
||||
|
||||
if (MSVC71)
|
||||
set(BOOST_OPTIM_SUFFIX mt-s)
|
||||
set(BOOST_DEBUG_SUFFIX mt-sgd)
|
||||
else (MSVC71)
|
||||
set(BOOST_OPTIM_SUFFIX mt)
|
||||
set(BOOST_DEBUG_SUFFIX mt-gd)
|
||||
endif (MSVC71)
|
||||
|
||||
set(BOOST_PROGRAM_OPTIONS_LIBRARY
|
||||
optimized libboost_program_options-vc${MSVC_SUFFIX}-${BOOST_OPTIM_SUFFIX}-${BOOST_VERSION}
|
||||
debug libboost_program_options-vc${MSVC_SUFFIX}-${BOOST_DEBUG_SUFFIX}-${BOOST_VERSION})
|
||||
set(BOOST_REGEX_LIBRARY
|
||||
optimized libboost_regex-vc${MSVC_SUFFIX}-${BOOST_OPTIM_SUFFIX}-${BOOST_VERSION}
|
||||
debug libboost_regex-vc${MSVC_SUFFIX}-${BOOST_DEBUG_SUFFIX}-${BOOST_VERSION})
|
||||
set(BOOST_SIGNALS_LIBRARY
|
||||
optimized libboost_signals-vc${MSVC_SUFFIX}-${BOOST_OPTIM_SUFFIX}-${BOOST_VERSION}
|
||||
debug libboost_signals-vc${MSVC_SUFFIX}-${BOOST_DEBUG_SUFFIX}-${BOOST_VERSION})
|
||||
|
||||
elseif (DARWIN)
|
||||
set(BOOST_PROGRAM_OPTIONS_LIBRARY boost_program_options-mt)
|
||||
set(BOOST_REGEX_LIBRARY boost_regex-mt)
|
||||
|
||||
@@ -34,6 +34,7 @@ set(cmake_SOURCE_FILES
|
||||
FindNDOF.cmake
|
||||
FindOpenJPEG.cmake
|
||||
FindXmlRpcEpi.cmake
|
||||
FindZLIB.cmake
|
||||
FMOD.cmake
|
||||
FreeType.cmake
|
||||
GStreamer010Plugin.cmake
|
||||
|
||||
@@ -25,6 +25,9 @@ set(all_targets ${all_targets} ${out_targets})
|
||||
|
||||
set(debug_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug")
|
||||
set(debug_files
|
||||
libapr-1.dll
|
||||
libaprutil-1.dll
|
||||
libapriconv-1.dll
|
||||
openjpegd.dll
|
||||
)
|
||||
|
||||
@@ -239,6 +242,9 @@ set(all_targets ${all_targets} ${out_targets})
|
||||
|
||||
set(release_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release")
|
||||
set(release_files
|
||||
libapr-1.dll
|
||||
libaprutil-1.dll
|
||||
libapriconv-1.dll
|
||||
openjpeg.dll
|
||||
)
|
||||
|
||||
|
||||
@@ -21,7 +21,12 @@ EXEC_PROGRAM(${CMAKE_CXX_COMPILER}
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
# Try to find a library that was compiled with the same compiler version as we currently use.
|
||||
SET(JSONCPP_NAMES ${JSONCPP_NAMES} libjson_linux-gcc-${_gcc_COMPILER_VERSION}_libmt.so)
|
||||
IF (STANDALONE)
|
||||
# On standalone, assume that the system installed library was compiled with the used compiler.
|
||||
SET(JSONCPP_NAMES ${JSONCPP_NAMES} libjson.so)
|
||||
ENDIF (STANDALONE)
|
||||
FIND_LIBRARY(JSONCPP_LIBRARY
|
||||
NAMES ${JSONCPP_NAMES}
|
||||
PATHS /usr/lib /usr/local/lib
|
||||
|
||||
@@ -3,12 +3,11 @@
|
||||
# - Find Tut
|
||||
# Find the Tut unit test framework includes and library
|
||||
# This module defines
|
||||
# TUT_INCLUDE_DIR, where to find tut.h, etc.
|
||||
# TUT_INCLUDE_DIR, where to find tut/tut.hpp, etc.
|
||||
# TUT_FOUND, If false, do not try to use Tut.
|
||||
|
||||
FIND_PATH(TUT_INCLUDE_DIR tut.h
|
||||
/usr/local/include/
|
||||
/usr/include
|
||||
find_path(TUT_INCLUDE_DIR tut/tut.hpp
|
||||
NO_SYSTEM_ENVIRONMENT_PATH
|
||||
)
|
||||
|
||||
IF (TUT_INCLUDE_DIR)
|
||||
|
||||
46
indra/cmake/FindZLIB.cmake
Normal file
46
indra/cmake/FindZLIB.cmake
Normal file
@@ -0,0 +1,46 @@
|
||||
# -*- cmake -*-
|
||||
|
||||
# - Find zlib
|
||||
# Find the ZLIB includes and library
|
||||
# This module defines
|
||||
# ZLIB_INCLUDE_DIRS, where to find zlib.h, etc.
|
||||
# ZLIB_LIBRARIES, the libraries needed to use zlib.
|
||||
# ZLIB_FOUND, If false, do not try to use zlib.
|
||||
#
|
||||
# This FindZLIB is about 43 times as fast the one provided with cmake (2.8.x),
|
||||
# because it doesn't look up the version of zlib, resulting in a dramatic
|
||||
# speed up for configure (from 4 minutes 22 seconds to 6 seconds).
|
||||
#
|
||||
# Note: Since this file is only used for standalone, the windows
|
||||
# specific parts were left out.
|
||||
|
||||
FIND_PATH(ZLIB_INCLUDE_DIR zlib.h
|
||||
NO_SYSTEM_ENVIRONMENT_PATH
|
||||
)
|
||||
|
||||
FIND_LIBRARY(ZLIB_LIBRARY z)
|
||||
|
||||
if (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR)
|
||||
SET(ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR})
|
||||
SET(ZLIB_LIBRARIES ${ZLIB_LIBRARY})
|
||||
SET(ZLIB_FOUND "YES")
|
||||
else (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR)
|
||||
SET(ZLIB_FOUND "NO")
|
||||
endif (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR)
|
||||
|
||||
if (ZLIB_FOUND)
|
||||
if (NOT ZLIB_FIND_QUIETLY)
|
||||
message(STATUS "Found ZLIB: ${ZLIB_LIBRARIES}")
|
||||
SET(ZLIB_FIND_QUIETLY TRUE)
|
||||
endif (NOT ZLIB_FIND_QUIETLY)
|
||||
else (ZLIB_FOUND)
|
||||
if (ZLIB_FIND_REQUIRED)
|
||||
message(FATAL_ERROR "Could not find ZLIB library")
|
||||
endif (ZLIB_FIND_REQUIRED)
|
||||
endif (ZLIB_FOUND)
|
||||
|
||||
mark_as_advanced(
|
||||
ZLIB_LIBRARY
|
||||
ZLIB_INCLUDE_DIR
|
||||
)
|
||||
|
||||
@@ -12,15 +12,4 @@ set(LLCOMMON_INCLUDE_DIRS
|
||||
${Boost_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
# Files that need PIC code (pluginAPI) need to set REQUIRE_PIC on 64bit systems
|
||||
# this will link against a llcommon built with Position Independent Code
|
||||
# this is a requirment to link a static library (.a) to a DSO on 64 bit systems
|
||||
|
||||
if(REQUIRE_PIC)
|
||||
set(LLCOMMON_LIBRARIES llcommonPIC)
|
||||
else(REQUIRE_PIC)
|
||||
set(LLCOMMON_LIBRARIES llcommon)
|
||||
endif(REQUIRE_PIC)
|
||||
|
||||
#force clear the flag, files that need this must explicity set it themselves
|
||||
set(REQUIRE_PIC 0)
|
||||
set(LLCOMMON_LIBRARIES llcommon)
|
||||
|
||||
@@ -3,6 +3,7 @@ include(Linking)
|
||||
include(Prebuilt)
|
||||
|
||||
if (STANDALONE)
|
||||
find_package(LLQtWebkit REQUIRED)
|
||||
set(WEBKITLIBPLUGIN OFF CACHE BOOL
|
||||
"WEBKITLIBPLUGIN support for the llplugin/llmedia test apps.")
|
||||
else (STANDALONE)
|
||||
@@ -35,7 +36,7 @@ elseif (DARWIN)
|
||||
)
|
||||
elseif (LINUX)
|
||||
if (STANDALONE)
|
||||
set(WEBKIT_PLUGIN_LIBRARIES llqtwebkit)
|
||||
set(WEBKIT_PLUGIN_LIBRARIES ${LLQTWEBKIT_LIBRARY})
|
||||
else (STANDALONE)
|
||||
set(WEBKIT_PLUGIN_LIBRARIES
|
||||
llqtwebkit
|
||||
|
||||
@@ -76,6 +76,7 @@ class PlatformSetup(object):
|
||||
build_type = build_types['relwithdebinfo']
|
||||
standalone = 'OFF'
|
||||
unattended = 'OFF'
|
||||
universal = 'OFF'
|
||||
project_name = 'Singularity'
|
||||
distcc = True
|
||||
cmake_opts = []
|
||||
@@ -421,7 +422,7 @@ class DarwinSetup(UnixSetup):
|
||||
return 'darwin'
|
||||
|
||||
def arch(self):
|
||||
if self.unattended == 'ON':
|
||||
if self.universal == 'ON':
|
||||
return 'universal'
|
||||
else:
|
||||
return UnixSetup.arch(self)
|
||||
@@ -435,11 +436,11 @@ class DarwinSetup(UnixSetup):
|
||||
word_size=self.word_size,
|
||||
unattended=self.unattended,
|
||||
project_name=self.project_name,
|
||||
universal='',
|
||||
universal=self.universal,
|
||||
opensim_rules=self.opensim_rules,
|
||||
type=self.build_type.upper(),
|
||||
)
|
||||
if self.unattended == 'ON':
|
||||
if self.universal == 'ON':
|
||||
args['universal'] = '-DCMAKE_OSX_ARCHITECTURES:STRING=\'i386;ppc\''
|
||||
#if simple:
|
||||
# return 'cmake %(opts)s %(dir)r' % args
|
||||
@@ -730,6 +731,7 @@ Options:
|
||||
--standalone build standalone, without Linden prebuild libraries
|
||||
--unattended build unattended, do not invoke any tools requiring
|
||||
a human response
|
||||
--universal build a universal binary on Mac OS X (unsupported)
|
||||
-t | --type=NAME build type ("Debug", "Release", "ReleaseSSE2", or "RelWithDebInfo")
|
||||
-m32 | -m64 build architecture (32-bit or 64-bit)
|
||||
-N | --no-distcc disable use of distcc
|
||||
@@ -744,6 +746,8 @@ Commands:
|
||||
build configure and build default target
|
||||
clean delete all build directories, does not affect sources
|
||||
configure configure project by running cmake (default command if none given)
|
||||
configure configure project by running cmake (default if none given)
|
||||
printbuilddirs print the build directory that will be used
|
||||
|
||||
Command-options for "configure":
|
||||
We use cmake variables to change the build configuration.
|
||||
@@ -761,15 +765,6 @@ Examples:
|
||||
'''
|
||||
|
||||
def main(arguments):
|
||||
if os.getenv('DISTCC_DIR') is None:
|
||||
distcc_dir = os.path.join(getcwd(), '.distcc')
|
||||
if not os.path.exists(distcc_dir):
|
||||
os.mkdir(distcc_dir)
|
||||
print "setting DISTCC_DIR to %s" % distcc_dir
|
||||
os.environ['DISTCC_DIR'] = distcc_dir
|
||||
else:
|
||||
print "DISTCC_DIR is set to %s" % os.getenv('DISTCC_DIR')
|
||||
|
||||
setup = setup_platform[sys.platform]()
|
||||
try:
|
||||
opts, args = getopt.getopt(
|
||||
@@ -829,6 +824,14 @@ For example: develop.py configure -DSERVER:BOOL=OFF"""
|
||||
if cmd in ('cmake', 'configure'):
|
||||
setup.run_cmake(args)
|
||||
elif cmd == 'build':
|
||||
if os.getenv('DISTCC_DIR') is None:
|
||||
distcc_dir = os.path.join(getcwd(), '.distcc')
|
||||
if not os.path.exists(distcc_dir):
|
||||
os.mkdir(distcc_dir)
|
||||
print "setting DISTCC_DIR to %s" % distcc_dir
|
||||
os.environ['DISTCC_DIR'] = distcc_dir
|
||||
else:
|
||||
print "DISTCC_DIR is set to %s" % os.getenv('DISTCC_DIR')
|
||||
for d in setup.build_dirs():
|
||||
if not os.path.exists(d):
|
||||
raise CommandError('run "develop.py cmake" first')
|
||||
@@ -839,6 +842,9 @@ For example: develop.py configure -DSERVER:BOOL=OFF"""
|
||||
if args:
|
||||
raise CommandError('clean takes no arguments')
|
||||
setup.cleanup()
|
||||
elif cmd == 'printbuilddirs':
|
||||
for d in setup.build_dirs():
|
||||
print >> sys.stdout, d
|
||||
else:
|
||||
print >> sys.stderr, 'Error: unknown subcommand', repr(cmd)
|
||||
print >> sys.stderr, "(run 'develop.py --help' for help)"
|
||||
|
||||
@@ -39,6 +39,142 @@
|
||||
#include "llanimationstates.h"
|
||||
#include "llstring.h"
|
||||
|
||||
LLUUID const ANIM_AGENT_AFRAID ("6b61c8e8-4747-0d75-12d7-e49ff207a4ca");
|
||||
LLUUID const ANIM_AGENT_AIM_BAZOOKA_R ("b5b4a67d-0aee-30d2-72cd-77b333e932ef");
|
||||
LLUUID const ANIM_AGENT_AIM_BOW_L ("46bb4359-de38-4ed8-6a22-f1f52fe8f506");
|
||||
LLUUID const ANIM_AGENT_AIM_HANDGUN_R ("3147d815-6338-b932-f011-16b56d9ac18b");
|
||||
LLUUID const ANIM_AGENT_AIM_RIFLE_R ("ea633413-8006-180a-c3ba-96dd1d756720");
|
||||
LLUUID const ANIM_AGENT_ANGRY ("5747a48e-073e-c331-f6f3-7c2149613d3e");
|
||||
LLUUID const ANIM_AGENT_AWAY ("fd037134-85d4-f241-72c6-4f42164fedee");
|
||||
LLUUID const ANIM_AGENT_BACKFLIP ("c4ca6188-9127-4f31-0158-23c4e2f93304");
|
||||
LLUUID const ANIM_AGENT_BELLY_LAUGH ("18b3a4b5-b463-bd48-e4b6-71eaac76c515");
|
||||
LLUUID const ANIM_AGENT_BLOW_KISS ("db84829b-462c-ee83-1e27-9bbee66bd624");
|
||||
LLUUID const ANIM_AGENT_BORED ("b906c4ba-703b-1940-32a3-0c7f7d791510");
|
||||
LLUUID const ANIM_AGENT_BOW ("82e99230-c906-1403-4d9c-3889dd98daba");
|
||||
LLUUID const ANIM_AGENT_BRUSH ("349a3801-54f9-bf2c-3bd0-1ac89772af01");
|
||||
LLUUID const ANIM_AGENT_BUSY ("efcf670c-2d18-8128-973a-034ebc806b67");
|
||||
LLUUID const ANIM_AGENT_CLAP ("9b0c1c4e-8ac7-7969-1494-28c874c4f668");
|
||||
LLUUID const ANIM_AGENT_COURTBOW ("9ba1c942-08be-e43a-fb29-16ad440efc50");
|
||||
LLUUID const ANIM_AGENT_CROUCH ("201f3fdf-cb1f-dbec-201f-7333e328ae7c");
|
||||
LLUUID const ANIM_AGENT_CROUCHWALK ("47f5f6fb-22e5-ae44-f871-73aaaf4a6022");
|
||||
LLUUID const ANIM_AGENT_CRY ("92624d3e-1068-f1aa-a5ec-8244585193ed");
|
||||
LLUUID const ANIM_AGENT_CUSTOMIZE ("038fcec9-5ebd-8a8e-0e2e-6e71a0a1ac53");
|
||||
LLUUID const ANIM_AGENT_CUSTOMIZE_DONE ("6883a61a-b27b-5914-a61e-dda118a9ee2c");
|
||||
LLUUID const ANIM_AGENT_DANCE1 ("b68a3d7c-de9e-fc87-eec8-543d787e5b0d");
|
||||
LLUUID const ANIM_AGENT_DANCE2 ("928cae18-e31d-76fd-9cc9-2f55160ff818");
|
||||
LLUUID const ANIM_AGENT_DANCE3 ("30047778-10ea-1af7-6881-4db7a3a5a114");
|
||||
LLUUID const ANIM_AGENT_DANCE4 ("951469f4-c7b2-c818-9dee-ad7eea8c30b7");
|
||||
LLUUID const ANIM_AGENT_DANCE5 ("4bd69a1d-1114-a0b4-625f-84e0a5237155");
|
||||
LLUUID const ANIM_AGENT_DANCE6 ("cd28b69b-9c95-bb78-3f94-8d605ff1bb12");
|
||||
LLUUID const ANIM_AGENT_DANCE7 ("a54d8ee2-28bb-80a9-7f0c-7afbbe24a5d6");
|
||||
LLUUID const ANIM_AGENT_DANCE8 ("b0dc417c-1f11-af36-2e80-7e7489fa7cdc");
|
||||
LLUUID const ANIM_AGENT_DEAD ("57abaae6-1d17-7b1b-5f98-6d11a6411276");
|
||||
LLUUID const ANIM_AGENT_DRINK ("0f86e355-dd31-a61c-fdb0-3a96b9aad05f");
|
||||
LLUUID const ANIM_AGENT_EMBARRASSED ("514af488-9051-044a-b3fc-d4dbf76377c6");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_AFRAID ("aa2df84d-cf8f-7218-527b-424a52de766e");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_ANGER ("1a03b575-9634-b62a-5767-3a679e81f4de");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_BORED ("214aa6c1-ba6a-4578-f27c-ce7688f61d0d");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_CRY ("d535471b-85bf-3b4d-a542-93bea4f59d33");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_DISDAIN ("d4416ff1-09d3-300f-4183-1b68a19b9fc1");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_EMBARRASSED ("0b8c8211-d78c-33e8-fa28-c51a9594e424");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_FROWN ("fee3df48-fa3d-1015-1e26-a205810e3001");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_KISS ("1e8d90cc-a84e-e135-884c-7c82c8b03a14");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_LAUGH ("62570842-0950-96f8-341c-809e65110823");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_OPEN_MOUTH ("d63bc1f9-fc81-9625-a0c6-007176d82eb7");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_REPULSED ("f76cda94-41d4-a229-2872-e0296e58afe1");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_SAD ("eb6ebfb2-a4b3-a19c-d388-4dd5c03823f7");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_SHRUG ("a351b1bc-cc94-aac2-7bea-a7e6ebad15ef");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_SMILE ("b7c7c833-e3d3-c4e3-9fc0-131237446312");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_SURPRISE ("728646d9-cc79-08b2-32d6-937f0a835c24");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_TONGUE_OUT ("835965c6-7f2f-bda2-5deb-2478737f91bf");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_TOOTHSMILE ("b92ec1a5-e7ce-a76b-2b05-bcdb9311417e");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_WINK ("da020525-4d94-59d6-23d7-81fdebf33148");
|
||||
LLUUID const ANIM_AGENT_EXPRESS_WORRY ("9c05e5c7-6f07-6ca4-ed5a-b230390c3950");
|
||||
LLUUID const ANIM_AGENT_FALLDOWN ("666307d9-a860-572d-6fd4-c3ab8865c094");
|
||||
LLUUID const ANIM_AGENT_FEMALE_WALK ("f5fc7433-043d-e819-8298-f519a119b688");
|
||||
LLUUID const ANIM_AGENT_FINGER_WAG ("c1bc7f36-3ba0-d844-f93c-93be945d644f");
|
||||
LLUUID const ANIM_AGENT_FIST_PUMP ("7db00ccd-f380-f3ee-439d-61968ec69c8a");
|
||||
LLUUID const ANIM_AGENT_FLY ("aec4610c-757f-bc4e-c092-c6e9caf18daf");
|
||||
LLUUID const ANIM_AGENT_FLYSLOW ("2b5a38b2-5e00-3a97-a495-4c826bc443e6");
|
||||
LLUUID const ANIM_AGENT_HELLO ("9b29cd61-c45b-5689-ded2-91756b8d76a9");
|
||||
LLUUID const ANIM_AGENT_HOLD_BAZOOKA_R ("ef62d355-c815-4816-2474-b1acc21094a6");
|
||||
LLUUID const ANIM_AGENT_HOLD_BOW_L ("8b102617-bcba-037b-86c1-b76219f90c88");
|
||||
LLUUID const ANIM_AGENT_HOLD_HANDGUN_R ("efdc1727-8b8a-c800-4077-975fc27ee2f2");
|
||||
LLUUID const ANIM_AGENT_HOLD_RIFLE_R ("3d94bad0-c55b-7dcc-8763-033c59405d33");
|
||||
LLUUID const ANIM_AGENT_HOLD_THROW_R ("7570c7b5-1f22-56dd-56ef-a9168241bbb6");
|
||||
LLUUID const ANIM_AGENT_HOVER ("4ae8016b-31b9-03bb-c401-b1ea941db41d");
|
||||
LLUUID const ANIM_AGENT_HOVER_DOWN ("20f063ea-8306-2562-0b07-5c853b37b31e");
|
||||
LLUUID const ANIM_AGENT_HOVER_UP ("62c5de58-cb33-5743-3d07-9e4cd4352864");
|
||||
LLUUID const ANIM_AGENT_IMPATIENT ("5ea3991f-c293-392e-6860-91dfa01278a3");
|
||||
LLUUID const ANIM_AGENT_JUMP ("2305bd75-1ca9-b03b-1faa-b176b8a8c49e");
|
||||
LLUUID const ANIM_AGENT_JUMP_FOR_JOY ("709ea28e-1573-c023-8bf8-520c8bc637fa");
|
||||
LLUUID const ANIM_AGENT_KISS_MY_BUTT ("19999406-3a3a-d58c-a2ac-d72e555dcf51");
|
||||
LLUUID const ANIM_AGENT_LAND ("7a17b059-12b2-41b1-570a-186368b6aa6f");
|
||||
LLUUID const ANIM_AGENT_LAUGH_SHORT ("ca5b3f14-3194-7a2b-c894-aa699b718d1f");
|
||||
LLUUID const ANIM_AGENT_MEDIUM_LAND ("f4f00d6e-b9fe-9292-f4cb-0ae06ea58d57");
|
||||
LLUUID const ANIM_AGENT_MOTORCYCLE_SIT ("08464f78-3a8e-2944-cba5-0c94aff3af29");
|
||||
LLUUID const ANIM_AGENT_MUSCLE_BEACH ("315c3a41-a5f3-0ba4-27da-f893f769e69b");
|
||||
LLUUID const ANIM_AGENT_NO ("5a977ed9-7f72-44e9-4c4c-6e913df8ae74");
|
||||
LLUUID const ANIM_AGENT_NO_UNHAPPY ("d83fa0e5-97ed-7eb2-e798-7bd006215cb4");
|
||||
LLUUID const ANIM_AGENT_NYAH_NYAH ("f061723d-0a18-754f-66ee-29a44795a32f");
|
||||
LLUUID const ANIM_AGENT_ONETWO_PUNCH ("eefc79be-daae-a239-8c04-890f5d23654a");
|
||||
LLUUID const ANIM_AGENT_PEACE ("b312b10e-65ab-a0a4-8b3c-1326ea8e3ed9");
|
||||
LLUUID const ANIM_AGENT_POINT_ME ("17c024cc-eef2-f6a0-3527-9869876d7752");
|
||||
LLUUID const ANIM_AGENT_POINT_YOU ("ec952cca-61ef-aa3b-2789-4d1344f016de");
|
||||
LLUUID const ANIM_AGENT_PRE_JUMP ("7a4e87fe-de39-6fcb-6223-024b00893244");
|
||||
LLUUID const ANIM_AGENT_PUNCH_LEFT ("f3300ad9-3462-1d07-2044-0fef80062da0");
|
||||
LLUUID const ANIM_AGENT_PUNCH_RIGHT ("c8e42d32-7310-6906-c903-cab5d4a34656");
|
||||
LLUUID const ANIM_AGENT_REPULSED ("36f81a92-f076-5893-dc4b-7c3795e487cf");
|
||||
LLUUID const ANIM_AGENT_ROUNDHOUSE_KICK ("49aea43b-5ac3-8a44-b595-96100af0beda");
|
||||
LLUUID const ANIM_AGENT_RPS_COUNTDOWN ("35db4f7e-28c2-6679-cea9-3ee108f7fc7f");
|
||||
LLUUID const ANIM_AGENT_RPS_PAPER ("0836b67f-7f7b-f37b-c00a-460dc1521f5a");
|
||||
LLUUID const ANIM_AGENT_RPS_ROCK ("42dd95d5-0bc6-6392-f650-777304946c0f");
|
||||
LLUUID const ANIM_AGENT_RPS_SCISSORS ("16803a9f-5140-e042-4d7b-d28ba247c325");
|
||||
LLUUID const ANIM_AGENT_RUN ("05ddbff8-aaa9-92a1-2b74-8fe77a29b445");
|
||||
LLUUID const ANIM_AGENT_SAD ("0eb702e2-cc5a-9a88-56a5-661a55c0676a");
|
||||
LLUUID const ANIM_AGENT_SALUTE ("cd7668a6-7011-d7e2-ead8-fc69eff1a104");
|
||||
LLUUID const ANIM_AGENT_SHOOT_BOW_L ("e04d450d-fdb5-0432-fd68-818aaf5935f8");
|
||||
LLUUID const ANIM_AGENT_SHOUT ("6bd01860-4ebd-127a-bb3d-d1427e8e0c42");
|
||||
LLUUID const ANIM_AGENT_SHRUG ("70ea714f-3a97-d742-1b01-590a8fcd1db5");
|
||||
LLUUID const ANIM_AGENT_SIT ("1a5fe8ac-a804-8a5d-7cbd-56bd83184568");
|
||||
LLUUID const ANIM_AGENT_SIT_FEMALE ("b1709c8d-ecd3-54a1-4f28-d55ac0840782");
|
||||
LLUUID const ANIM_AGENT_SIT_GENERIC ("245f3c54-f1c0-bf2e-811f-46d8eeb386e7");
|
||||
LLUUID const ANIM_AGENT_SIT_GROUND ("1c7600d6-661f-b87b-efe2-d7421eb93c86");
|
||||
LLUUID const ANIM_AGENT_SIT_GROUND_CONSTRAINED("1a2bd58e-87ff-0df8-0b4c-53e047b0bb6e");
|
||||
LLUUID const ANIM_AGENT_SIT_TO_STAND ("a8dee56f-2eae-9e7a-05a2-6fb92b97e21e");
|
||||
LLUUID const ANIM_AGENT_SLEEP ("f2bed5f9-9d44-39af-b0cd-257b2a17fe40");
|
||||
LLUUID const ANIM_AGENT_SMOKE_IDLE ("d2f2ee58-8ad1-06c9-d8d3-3827ba31567a");
|
||||
LLUUID const ANIM_AGENT_SMOKE_INHALE ("6802d553-49da-0778-9f85-1599a2266526");
|
||||
LLUUID const ANIM_AGENT_SMOKE_THROW_DOWN ("0a9fb970-8b44-9114-d3a9-bf69cfe804d6");
|
||||
LLUUID const ANIM_AGENT_SNAPSHOT ("eae8905b-271a-99e2-4c0e-31106afd100c");
|
||||
LLUUID const ANIM_AGENT_STAND ("2408fe9e-df1d-1d7d-f4ff-1384fa7b350f");
|
||||
LLUUID const ANIM_AGENT_STANDUP ("3da1d753-028a-5446-24f3-9c9b856d9422");
|
||||
LLUUID const ANIM_AGENT_STAND_1 ("15468e00-3400-bb66-cecc-646d7c14458e");
|
||||
LLUUID const ANIM_AGENT_STAND_2 ("370f3a20-6ca6-9971-848c-9a01bc42ae3c");
|
||||
LLUUID const ANIM_AGENT_STAND_3 ("42b46214-4b44-79ae-deb8-0df61424ff4b");
|
||||
LLUUID const ANIM_AGENT_STAND_4 ("f22fed8b-a5ed-2c93-64d5-bdd8b93c889f");
|
||||
LLUUID const ANIM_AGENT_STRETCH ("80700431-74ec-a008-14f8-77575e73693f");
|
||||
LLUUID const ANIM_AGENT_STRIDE ("1cb562b0-ba21-2202-efb3-30f82cdf9595");
|
||||
LLUUID const ANIM_AGENT_SURF ("41426836-7437-7e89-025d-0aa4d10f1d69");
|
||||
LLUUID const ANIM_AGENT_SURPRISE ("313b9881-4302-73c0-c7d0-0e7a36b6c224");
|
||||
LLUUID const ANIM_AGENT_SWORD_STRIKE ("85428680-6bf9-3e64-b489-6f81087c24bd");
|
||||
LLUUID const ANIM_AGENT_TALK ("5c682a95-6da4-a463-0bf6-0f5b7be129d1");
|
||||
LLUUID const ANIM_AGENT_TANTRUM ("11000694-3f41-adc2-606b-eee1d66f3724");
|
||||
LLUUID const ANIM_AGENT_THROW_R ("aa134404-7dac-7aca-2cba-435f9db875ca");
|
||||
LLUUID const ANIM_AGENT_TRYON_SHIRT ("83ff59fe-2346-f236-9009-4e3608af64c1");
|
||||
LLUUID const ANIM_AGENT_TURNLEFT ("56e0ba0d-4a9f-7f27-6117-32f2ebbf6135");
|
||||
LLUUID const ANIM_AGENT_TURNRIGHT ("2d6daa51-3192-6794-8e2e-a15f8338ec30");
|
||||
LLUUID const ANIM_AGENT_TYPE ("c541c47f-e0c0-058b-ad1a-d6ae3a4584d9");
|
||||
LLUUID const ANIM_AGENT_WALK ("6ed24bd8-91aa-4b12-ccc7-c97c857ab4e0");
|
||||
LLUUID const ANIM_AGENT_WHISPER ("7693f268-06c7-ea71-fa21-2b30d6533f8f");
|
||||
LLUUID const ANIM_AGENT_WHISTLE ("b1ed7982-c68e-a982-7561-52a88a5298c0");
|
||||
LLUUID const ANIM_AGENT_WINK ("869ecdad-a44b-671e-3266-56aef2e3ac2e");
|
||||
LLUUID const ANIM_AGENT_WINK_HOLLYWOOD ("c0c4030f-c02b-49de-24ba-2331f43fe41c");
|
||||
LLUUID const ANIM_AGENT_WORRY ("9f496bd2-589a-709f-16cc-69bf7df1d36c");
|
||||
LLUUID const ANIM_AGENT_YES ("15dd911d-be82-2856-26db-27659b142875");
|
||||
LLUUID const ANIM_AGENT_YES_HAPPY ("b8c8b2a3-9008-1771-3bfc-90924955ab2d");
|
||||
LLUUID const ANIM_AGENT_YOGA_FLOAT ("42ecd00b-9947-a97c-400a-bbc9174c7aeb");
|
||||
|
||||
LLUUID AGENT_WALK_ANIMS[] = {ANIM_AGENT_WALK, ANIM_AGENT_RUN, ANIM_AGENT_CROUCHWALK, ANIM_AGENT_TURNLEFT, ANIM_AGENT_TURNRIGHT};
|
||||
S32 NUM_AGENT_WALK_ANIMS = LL_ARRAY_SIZE(AGENT_WALK_ANIMS);
|
||||
|
||||
|
||||
@@ -49,142 +49,141 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
const S32 MAX_CONCURRENT_ANIMS = 16;
|
||||
|
||||
|
||||
const LLUUID ANIM_AGENT_AFRAID = LLUUID("6b61c8e8-4747-0d75-12d7-e49ff207a4ca");
|
||||
const LLUUID ANIM_AGENT_AIM_BAZOOKA_R = LLUUID("b5b4a67d-0aee-30d2-72cd-77b333e932ef");
|
||||
const LLUUID ANIM_AGENT_AIM_BOW_L = LLUUID("46bb4359-de38-4ed8-6a22-f1f52fe8f506");
|
||||
const LLUUID ANIM_AGENT_AIM_HANDGUN_R = LLUUID("3147d815-6338-b932-f011-16b56d9ac18b");
|
||||
const LLUUID ANIM_AGENT_AIM_RIFLE_R = LLUUID("ea633413-8006-180a-c3ba-96dd1d756720");
|
||||
const LLUUID ANIM_AGENT_ANGRY = LLUUID("5747a48e-073e-c331-f6f3-7c2149613d3e");
|
||||
const LLUUID ANIM_AGENT_AWAY = LLUUID("fd037134-85d4-f241-72c6-4f42164fedee");
|
||||
const LLUUID ANIM_AGENT_BACKFLIP = LLUUID("c4ca6188-9127-4f31-0158-23c4e2f93304");
|
||||
const LLUUID ANIM_AGENT_BELLY_LAUGH = LLUUID("18b3a4b5-b463-bd48-e4b6-71eaac76c515");
|
||||
const LLUUID ANIM_AGENT_BLOW_KISS = LLUUID("db84829b-462c-ee83-1e27-9bbee66bd624");
|
||||
const LLUUID ANIM_AGENT_BORED = LLUUID("b906c4ba-703b-1940-32a3-0c7f7d791510");
|
||||
const LLUUID ANIM_AGENT_BOW = LLUUID("82e99230-c906-1403-4d9c-3889dd98daba");
|
||||
const LLUUID ANIM_AGENT_BRUSH = LLUUID("349a3801-54f9-bf2c-3bd0-1ac89772af01");
|
||||
const LLUUID ANIM_AGENT_BUSY = LLUUID("efcf670c-2d18-8128-973a-034ebc806b67");
|
||||
const LLUUID ANIM_AGENT_CLAP = LLUUID("9b0c1c4e-8ac7-7969-1494-28c874c4f668");
|
||||
const LLUUID ANIM_AGENT_COURTBOW = LLUUID("9ba1c942-08be-e43a-fb29-16ad440efc50");
|
||||
const LLUUID ANIM_AGENT_CROUCH = LLUUID("201f3fdf-cb1f-dbec-201f-7333e328ae7c");
|
||||
const LLUUID ANIM_AGENT_CROUCHWALK = LLUUID("47f5f6fb-22e5-ae44-f871-73aaaf4a6022");
|
||||
const LLUUID ANIM_AGENT_CRY = LLUUID("92624d3e-1068-f1aa-a5ec-8244585193ed");
|
||||
const LLUUID ANIM_AGENT_CUSTOMIZE = LLUUID("038fcec9-5ebd-8a8e-0e2e-6e71a0a1ac53");
|
||||
const LLUUID ANIM_AGENT_CUSTOMIZE_DONE = LLUUID("6883a61a-b27b-5914-a61e-dda118a9ee2c");
|
||||
const LLUUID ANIM_AGENT_DANCE1 = LLUUID("b68a3d7c-de9e-fc87-eec8-543d787e5b0d");
|
||||
const LLUUID ANIM_AGENT_DANCE2 = LLUUID("928cae18-e31d-76fd-9cc9-2f55160ff818");
|
||||
const LLUUID ANIM_AGENT_DANCE3 = LLUUID("30047778-10ea-1af7-6881-4db7a3a5a114");
|
||||
const LLUUID ANIM_AGENT_DANCE4 = LLUUID("951469f4-c7b2-c818-9dee-ad7eea8c30b7");
|
||||
const LLUUID ANIM_AGENT_DANCE5 = LLUUID("4bd69a1d-1114-a0b4-625f-84e0a5237155");
|
||||
const LLUUID ANIM_AGENT_DANCE6 = LLUUID("cd28b69b-9c95-bb78-3f94-8d605ff1bb12");
|
||||
const LLUUID ANIM_AGENT_DANCE7 = LLUUID("a54d8ee2-28bb-80a9-7f0c-7afbbe24a5d6");
|
||||
const LLUUID ANIM_AGENT_DANCE8 = LLUUID("b0dc417c-1f11-af36-2e80-7e7489fa7cdc");
|
||||
const LLUUID ANIM_AGENT_DEAD = LLUUID("57abaae6-1d17-7b1b-5f98-6d11a6411276");
|
||||
const LLUUID ANIM_AGENT_DRINK = LLUUID("0f86e355-dd31-a61c-fdb0-3a96b9aad05f");
|
||||
const LLUUID ANIM_AGENT_EMBARRASSED = LLUUID("514af488-9051-044a-b3fc-d4dbf76377c6");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_AFRAID = LLUUID("aa2df84d-cf8f-7218-527b-424a52de766e");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_ANGER = LLUUID("1a03b575-9634-b62a-5767-3a679e81f4de");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_BORED = LLUUID("214aa6c1-ba6a-4578-f27c-ce7688f61d0d");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_CRY = LLUUID("d535471b-85bf-3b4d-a542-93bea4f59d33");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_DISDAIN = LLUUID("d4416ff1-09d3-300f-4183-1b68a19b9fc1");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_EMBARRASSED = LLUUID("0b8c8211-d78c-33e8-fa28-c51a9594e424");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_FROWN = LLUUID("fee3df48-fa3d-1015-1e26-a205810e3001");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_KISS = LLUUID("1e8d90cc-a84e-e135-884c-7c82c8b03a14");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_LAUGH = LLUUID("62570842-0950-96f8-341c-809e65110823");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_OPEN_MOUTH = LLUUID("d63bc1f9-fc81-9625-a0c6-007176d82eb7");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_REPULSED = LLUUID("f76cda94-41d4-a229-2872-e0296e58afe1");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_SAD = LLUUID("eb6ebfb2-a4b3-a19c-d388-4dd5c03823f7");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_SHRUG = LLUUID("a351b1bc-cc94-aac2-7bea-a7e6ebad15ef");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_SMILE = LLUUID("b7c7c833-e3d3-c4e3-9fc0-131237446312");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_SURPRISE = LLUUID("728646d9-cc79-08b2-32d6-937f0a835c24");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_TONGUE_OUT = LLUUID("835965c6-7f2f-bda2-5deb-2478737f91bf");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_TOOTHSMILE = LLUUID("b92ec1a5-e7ce-a76b-2b05-bcdb9311417e");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_WINK = LLUUID("da020525-4d94-59d6-23d7-81fdebf33148");
|
||||
const LLUUID ANIM_AGENT_EXPRESS_WORRY = LLUUID("9c05e5c7-6f07-6ca4-ed5a-b230390c3950");
|
||||
const LLUUID ANIM_AGENT_FALLDOWN = LLUUID("666307d9-a860-572d-6fd4-c3ab8865c094");
|
||||
const LLUUID ANIM_AGENT_FEMALE_WALK = LLUUID("f5fc7433-043d-e819-8298-f519a119b688");
|
||||
const LLUUID ANIM_AGENT_FINGER_WAG = LLUUID("c1bc7f36-3ba0-d844-f93c-93be945d644f");
|
||||
const LLUUID ANIM_AGENT_FIST_PUMP = LLUUID("7db00ccd-f380-f3ee-439d-61968ec69c8a");
|
||||
const LLUUID ANIM_AGENT_FLY = LLUUID("aec4610c-757f-bc4e-c092-c6e9caf18daf");
|
||||
const LLUUID ANIM_AGENT_FLYSLOW = LLUUID("2b5a38b2-5e00-3a97-a495-4c826bc443e6");
|
||||
const LLUUID ANIM_AGENT_HELLO = LLUUID("9b29cd61-c45b-5689-ded2-91756b8d76a9");
|
||||
const LLUUID ANIM_AGENT_HOLD_BAZOOKA_R = LLUUID("ef62d355-c815-4816-2474-b1acc21094a6");
|
||||
const LLUUID ANIM_AGENT_HOLD_BOW_L = LLUUID("8b102617-bcba-037b-86c1-b76219f90c88");
|
||||
const LLUUID ANIM_AGENT_HOLD_HANDGUN_R = LLUUID("efdc1727-8b8a-c800-4077-975fc27ee2f2");
|
||||
const LLUUID ANIM_AGENT_HOLD_RIFLE_R = LLUUID("3d94bad0-c55b-7dcc-8763-033c59405d33");
|
||||
const LLUUID ANIM_AGENT_HOLD_THROW_R = LLUUID("7570c7b5-1f22-56dd-56ef-a9168241bbb6");
|
||||
const LLUUID ANIM_AGENT_HOVER = LLUUID("4ae8016b-31b9-03bb-c401-b1ea941db41d");
|
||||
const LLUUID ANIM_AGENT_HOVER_DOWN = LLUUID("20f063ea-8306-2562-0b07-5c853b37b31e");
|
||||
const LLUUID ANIM_AGENT_HOVER_UP = LLUUID("62c5de58-cb33-5743-3d07-9e4cd4352864");
|
||||
const LLUUID ANIM_AGENT_IMPATIENT = LLUUID("5ea3991f-c293-392e-6860-91dfa01278a3");
|
||||
const LLUUID ANIM_AGENT_JUMP = LLUUID("2305bd75-1ca9-b03b-1faa-b176b8a8c49e");
|
||||
const LLUUID ANIM_AGENT_JUMP_FOR_JOY = LLUUID("709ea28e-1573-c023-8bf8-520c8bc637fa");
|
||||
const LLUUID ANIM_AGENT_KISS_MY_BUTT = LLUUID("19999406-3a3a-d58c-a2ac-d72e555dcf51");
|
||||
const LLUUID ANIM_AGENT_LAND = LLUUID("7a17b059-12b2-41b1-570a-186368b6aa6f");
|
||||
const LLUUID ANIM_AGENT_LAUGH_SHORT = LLUUID("ca5b3f14-3194-7a2b-c894-aa699b718d1f");
|
||||
const LLUUID ANIM_AGENT_MEDIUM_LAND = LLUUID("f4f00d6e-b9fe-9292-f4cb-0ae06ea58d57");
|
||||
const LLUUID ANIM_AGENT_MOTORCYCLE_SIT = LLUUID("08464f78-3a8e-2944-cba5-0c94aff3af29");
|
||||
const LLUUID ANIM_AGENT_MUSCLE_BEACH = LLUUID("315c3a41-a5f3-0ba4-27da-f893f769e69b");
|
||||
const LLUUID ANIM_AGENT_NO = LLUUID("5a977ed9-7f72-44e9-4c4c-6e913df8ae74");
|
||||
const LLUUID ANIM_AGENT_NO_UNHAPPY = LLUUID("d83fa0e5-97ed-7eb2-e798-7bd006215cb4");
|
||||
const LLUUID ANIM_AGENT_NYAH_NYAH = LLUUID("f061723d-0a18-754f-66ee-29a44795a32f");
|
||||
const LLUUID ANIM_AGENT_ONETWO_PUNCH = LLUUID("eefc79be-daae-a239-8c04-890f5d23654a");
|
||||
const LLUUID ANIM_AGENT_PEACE = LLUUID("b312b10e-65ab-a0a4-8b3c-1326ea8e3ed9");
|
||||
const LLUUID ANIM_AGENT_POINT_ME = LLUUID("17c024cc-eef2-f6a0-3527-9869876d7752");
|
||||
const LLUUID ANIM_AGENT_POINT_YOU = LLUUID("ec952cca-61ef-aa3b-2789-4d1344f016de");
|
||||
const LLUUID ANIM_AGENT_PRE_JUMP = LLUUID("7a4e87fe-de39-6fcb-6223-024b00893244");
|
||||
const LLUUID ANIM_AGENT_PUNCH_LEFT = LLUUID("f3300ad9-3462-1d07-2044-0fef80062da0");
|
||||
const LLUUID ANIM_AGENT_PUNCH_RIGHT = LLUUID("c8e42d32-7310-6906-c903-cab5d4a34656");
|
||||
const LLUUID ANIM_AGENT_REPULSED = LLUUID("36f81a92-f076-5893-dc4b-7c3795e487cf");
|
||||
const LLUUID ANIM_AGENT_ROUNDHOUSE_KICK = LLUUID("49aea43b-5ac3-8a44-b595-96100af0beda");
|
||||
const LLUUID ANIM_AGENT_RPS_COUNTDOWN = LLUUID("35db4f7e-28c2-6679-cea9-3ee108f7fc7f");
|
||||
const LLUUID ANIM_AGENT_RPS_PAPER = LLUUID("0836b67f-7f7b-f37b-c00a-460dc1521f5a");
|
||||
const LLUUID ANIM_AGENT_RPS_ROCK = LLUUID("42dd95d5-0bc6-6392-f650-777304946c0f");
|
||||
const LLUUID ANIM_AGENT_RPS_SCISSORS = LLUUID("16803a9f-5140-e042-4d7b-d28ba247c325");
|
||||
const LLUUID ANIM_AGENT_RUN = LLUUID("05ddbff8-aaa9-92a1-2b74-8fe77a29b445");
|
||||
const LLUUID ANIM_AGENT_SAD = LLUUID("0eb702e2-cc5a-9a88-56a5-661a55c0676a");
|
||||
const LLUUID ANIM_AGENT_SALUTE = LLUUID("cd7668a6-7011-d7e2-ead8-fc69eff1a104");
|
||||
const LLUUID ANIM_AGENT_SHOOT_BOW_L = LLUUID("e04d450d-fdb5-0432-fd68-818aaf5935f8");
|
||||
const LLUUID ANIM_AGENT_SHOUT = LLUUID("6bd01860-4ebd-127a-bb3d-d1427e8e0c42");
|
||||
const LLUUID ANIM_AGENT_SHRUG = LLUUID("70ea714f-3a97-d742-1b01-590a8fcd1db5");
|
||||
const LLUUID ANIM_AGENT_SIT = LLUUID("1a5fe8ac-a804-8a5d-7cbd-56bd83184568");
|
||||
const LLUUID ANIM_AGENT_SIT_FEMALE = LLUUID("b1709c8d-ecd3-54a1-4f28-d55ac0840782");
|
||||
const LLUUID ANIM_AGENT_SIT_GENERIC = LLUUID("245f3c54-f1c0-bf2e-811f-46d8eeb386e7");
|
||||
const LLUUID ANIM_AGENT_SIT_GROUND = LLUUID("1c7600d6-661f-b87b-efe2-d7421eb93c86");
|
||||
const LLUUID ANIM_AGENT_SIT_GROUND_CONSTRAINED = LLUUID("1a2bd58e-87ff-0df8-0b4c-53e047b0bb6e");
|
||||
const LLUUID ANIM_AGENT_SIT_TO_STAND = LLUUID("a8dee56f-2eae-9e7a-05a2-6fb92b97e21e");
|
||||
const LLUUID ANIM_AGENT_SLEEP = LLUUID("f2bed5f9-9d44-39af-b0cd-257b2a17fe40");
|
||||
const LLUUID ANIM_AGENT_SMOKE_IDLE = LLUUID("d2f2ee58-8ad1-06c9-d8d3-3827ba31567a");
|
||||
const LLUUID ANIM_AGENT_SMOKE_INHALE = LLUUID("6802d553-49da-0778-9f85-1599a2266526");
|
||||
const LLUUID ANIM_AGENT_SMOKE_THROW_DOWN = LLUUID("0a9fb970-8b44-9114-d3a9-bf69cfe804d6");
|
||||
const LLUUID ANIM_AGENT_SNAPSHOT = LLUUID("eae8905b-271a-99e2-4c0e-31106afd100c");
|
||||
const LLUUID ANIM_AGENT_STAND = LLUUID("2408fe9e-df1d-1d7d-f4ff-1384fa7b350f");
|
||||
const LLUUID ANIM_AGENT_STANDUP = LLUUID("3da1d753-028a-5446-24f3-9c9b856d9422");
|
||||
const LLUUID ANIM_AGENT_STAND_1 = LLUUID("15468e00-3400-bb66-cecc-646d7c14458e");
|
||||
const LLUUID ANIM_AGENT_STAND_2 = LLUUID("370f3a20-6ca6-9971-848c-9a01bc42ae3c");
|
||||
const LLUUID ANIM_AGENT_STAND_3 = LLUUID("42b46214-4b44-79ae-deb8-0df61424ff4b");
|
||||
const LLUUID ANIM_AGENT_STAND_4 = LLUUID("f22fed8b-a5ed-2c93-64d5-bdd8b93c889f");
|
||||
const LLUUID ANIM_AGENT_STRETCH = LLUUID("80700431-74ec-a008-14f8-77575e73693f");
|
||||
const LLUUID ANIM_AGENT_STRIDE = LLUUID("1cb562b0-ba21-2202-efb3-30f82cdf9595");
|
||||
const LLUUID ANIM_AGENT_SURF = LLUUID("41426836-7437-7e89-025d-0aa4d10f1d69");
|
||||
const LLUUID ANIM_AGENT_SURPRISE = LLUUID("313b9881-4302-73c0-c7d0-0e7a36b6c224");
|
||||
const LLUUID ANIM_AGENT_SWORD_STRIKE = LLUUID("85428680-6bf9-3e64-b489-6f81087c24bd");
|
||||
const LLUUID ANIM_AGENT_TALK = LLUUID("5c682a95-6da4-a463-0bf6-0f5b7be129d1");
|
||||
const LLUUID ANIM_AGENT_TANTRUM = LLUUID("11000694-3f41-adc2-606b-eee1d66f3724");
|
||||
const LLUUID ANIM_AGENT_THROW_R = LLUUID("aa134404-7dac-7aca-2cba-435f9db875ca");
|
||||
const LLUUID ANIM_AGENT_TRYON_SHIRT = LLUUID("83ff59fe-2346-f236-9009-4e3608af64c1");
|
||||
const LLUUID ANIM_AGENT_TURNLEFT = LLUUID("56e0ba0d-4a9f-7f27-6117-32f2ebbf6135");
|
||||
const LLUUID ANIM_AGENT_TURNRIGHT = LLUUID("2d6daa51-3192-6794-8e2e-a15f8338ec30");
|
||||
const LLUUID ANIM_AGENT_TYPE = LLUUID("c541c47f-e0c0-058b-ad1a-d6ae3a4584d9");
|
||||
const LLUUID ANIM_AGENT_WALK = LLUUID("6ed24bd8-91aa-4b12-ccc7-c97c857ab4e0");
|
||||
const LLUUID ANIM_AGENT_WHISPER = LLUUID("7693f268-06c7-ea71-fa21-2b30d6533f8f");
|
||||
const LLUUID ANIM_AGENT_WHISTLE = LLUUID("b1ed7982-c68e-a982-7561-52a88a5298c0");
|
||||
const LLUUID ANIM_AGENT_WINK = LLUUID("869ecdad-a44b-671e-3266-56aef2e3ac2e");
|
||||
const LLUUID ANIM_AGENT_WINK_HOLLYWOOD = LLUUID("c0c4030f-c02b-49de-24ba-2331f43fe41c");
|
||||
const LLUUID ANIM_AGENT_WORRY = LLUUID("9f496bd2-589a-709f-16cc-69bf7df1d36c");
|
||||
const LLUUID ANIM_AGENT_YES = LLUUID("15dd911d-be82-2856-26db-27659b142875");
|
||||
const LLUUID ANIM_AGENT_YES_HAPPY = LLUUID("b8c8b2a3-9008-1771-3bfc-90924955ab2d");
|
||||
const LLUUID ANIM_AGENT_YOGA_FLOAT = LLUUID("42ecd00b-9947-a97c-400a-bbc9174c7aeb");
|
||||
extern LLUUID const ANIM_AGENT_AFRAID;
|
||||
extern LLUUID const ANIM_AGENT_AIM_BAZOOKA_R;
|
||||
extern LLUUID const ANIM_AGENT_AIM_BOW_L;
|
||||
extern LLUUID const ANIM_AGENT_AIM_HANDGUN_R;
|
||||
extern LLUUID const ANIM_AGENT_AIM_RIFLE_R;
|
||||
extern LLUUID const ANIM_AGENT_ANGRY;
|
||||
extern LLUUID const ANIM_AGENT_AWAY;
|
||||
extern LLUUID const ANIM_AGENT_BACKFLIP;
|
||||
extern LLUUID const ANIM_AGENT_BELLY_LAUGH;
|
||||
extern LLUUID const ANIM_AGENT_BLOW_KISS;
|
||||
extern LLUUID const ANIM_AGENT_BORED;
|
||||
extern LLUUID const ANIM_AGENT_BOW;
|
||||
extern LLUUID const ANIM_AGENT_BRUSH;
|
||||
extern LLUUID const ANIM_AGENT_BUSY;
|
||||
extern LLUUID const ANIM_AGENT_CLAP;
|
||||
extern LLUUID const ANIM_AGENT_COURTBOW;
|
||||
extern LLUUID const ANIM_AGENT_CROUCH;
|
||||
extern LLUUID const ANIM_AGENT_CROUCHWALK;
|
||||
extern LLUUID const ANIM_AGENT_CRY;
|
||||
extern LLUUID const ANIM_AGENT_CUSTOMIZE;
|
||||
extern LLUUID const ANIM_AGENT_CUSTOMIZE_DONE;
|
||||
extern LLUUID const ANIM_AGENT_DANCE1;
|
||||
extern LLUUID const ANIM_AGENT_DANCE2;
|
||||
extern LLUUID const ANIM_AGENT_DANCE3;
|
||||
extern LLUUID const ANIM_AGENT_DANCE4;
|
||||
extern LLUUID const ANIM_AGENT_DANCE5;
|
||||
extern LLUUID const ANIM_AGENT_DANCE6;
|
||||
extern LLUUID const ANIM_AGENT_DANCE7;
|
||||
extern LLUUID const ANIM_AGENT_DANCE8;
|
||||
extern LLUUID const ANIM_AGENT_DEAD;
|
||||
extern LLUUID const ANIM_AGENT_DRINK;
|
||||
extern LLUUID const ANIM_AGENT_EMBARRASSED;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_AFRAID;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_ANGER;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_BORED;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_CRY;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_DISDAIN;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_EMBARRASSED;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_FROWN;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_KISS;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_LAUGH;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_OPEN_MOUTH;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_REPULSED;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_SAD;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_SHRUG;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_SMILE;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_SURPRISE;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_TONGUE_OUT;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_TOOTHSMILE;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_WINK;
|
||||
extern LLUUID const ANIM_AGENT_EXPRESS_WORRY;
|
||||
extern LLUUID const ANIM_AGENT_FALLDOWN;
|
||||
extern LLUUID const ANIM_AGENT_FEMALE_WALK;
|
||||
extern LLUUID const ANIM_AGENT_FINGER_WAG;
|
||||
extern LLUUID const ANIM_AGENT_FIST_PUMP;
|
||||
extern LLUUID const ANIM_AGENT_FLY;
|
||||
extern LLUUID const ANIM_AGENT_FLYSLOW;
|
||||
extern LLUUID const ANIM_AGENT_HELLO;
|
||||
extern LLUUID const ANIM_AGENT_HOLD_BAZOOKA_R;
|
||||
extern LLUUID const ANIM_AGENT_HOLD_BOW_L;
|
||||
extern LLUUID const ANIM_AGENT_HOLD_HANDGUN_R;
|
||||
extern LLUUID const ANIM_AGENT_HOLD_RIFLE_R;
|
||||
extern LLUUID const ANIM_AGENT_HOLD_THROW_R;
|
||||
extern LLUUID const ANIM_AGENT_HOVER;
|
||||
extern LLUUID const ANIM_AGENT_HOVER_DOWN;
|
||||
extern LLUUID const ANIM_AGENT_HOVER_UP;
|
||||
extern LLUUID const ANIM_AGENT_IMPATIENT;
|
||||
extern LLUUID const ANIM_AGENT_JUMP;
|
||||
extern LLUUID const ANIM_AGENT_JUMP_FOR_JOY;
|
||||
extern LLUUID const ANIM_AGENT_KISS_MY_BUTT;
|
||||
extern LLUUID const ANIM_AGENT_LAND;
|
||||
extern LLUUID const ANIM_AGENT_LAUGH_SHORT;
|
||||
extern LLUUID const ANIM_AGENT_MEDIUM_LAND;
|
||||
extern LLUUID const ANIM_AGENT_MOTORCYCLE_SIT;
|
||||
extern LLUUID const ANIM_AGENT_MUSCLE_BEACH;
|
||||
extern LLUUID const ANIM_AGENT_NO;
|
||||
extern LLUUID const ANIM_AGENT_NO_UNHAPPY;
|
||||
extern LLUUID const ANIM_AGENT_NYAH_NYAH;
|
||||
extern LLUUID const ANIM_AGENT_ONETWO_PUNCH;
|
||||
extern LLUUID const ANIM_AGENT_PEACE;
|
||||
extern LLUUID const ANIM_AGENT_POINT_ME;
|
||||
extern LLUUID const ANIM_AGENT_POINT_YOU;
|
||||
extern LLUUID const ANIM_AGENT_PRE_JUMP;
|
||||
extern LLUUID const ANIM_AGENT_PUNCH_LEFT;
|
||||
extern LLUUID const ANIM_AGENT_PUNCH_RIGHT;
|
||||
extern LLUUID const ANIM_AGENT_REPULSED;
|
||||
extern LLUUID const ANIM_AGENT_ROUNDHOUSE_KICK;
|
||||
extern LLUUID const ANIM_AGENT_RPS_COUNTDOWN;
|
||||
extern LLUUID const ANIM_AGENT_RPS_PAPER;
|
||||
extern LLUUID const ANIM_AGENT_RPS_ROCK;
|
||||
extern LLUUID const ANIM_AGENT_RPS_SCISSORS;
|
||||
extern LLUUID const ANIM_AGENT_RUN;
|
||||
extern LLUUID const ANIM_AGENT_SAD;
|
||||
extern LLUUID const ANIM_AGENT_SALUTE;
|
||||
extern LLUUID const ANIM_AGENT_SHOOT_BOW_L;
|
||||
extern LLUUID const ANIM_AGENT_SHOUT;
|
||||
extern LLUUID const ANIM_AGENT_SHRUG;
|
||||
extern LLUUID const ANIM_AGENT_SIT;
|
||||
extern LLUUID const ANIM_AGENT_SIT_FEMALE;
|
||||
extern LLUUID const ANIM_AGENT_SIT_GENERIC;
|
||||
extern LLUUID const ANIM_AGENT_SIT_GROUND;
|
||||
extern LLUUID const ANIM_AGENT_SIT_GROUND_CONSTRAINED;
|
||||
extern LLUUID const ANIM_AGENT_SIT_TO_STAND;
|
||||
extern LLUUID const ANIM_AGENT_SLEEP;
|
||||
extern LLUUID const ANIM_AGENT_SMOKE_IDLE;
|
||||
extern LLUUID const ANIM_AGENT_SMOKE_INHALE;
|
||||
extern LLUUID const ANIM_AGENT_SMOKE_THROW_DOWN;
|
||||
extern LLUUID const ANIM_AGENT_SNAPSHOT;
|
||||
extern LLUUID const ANIM_AGENT_STAND;
|
||||
extern LLUUID const ANIM_AGENT_STANDUP;
|
||||
extern LLUUID const ANIM_AGENT_STAND_1;
|
||||
extern LLUUID const ANIM_AGENT_STAND_2;
|
||||
extern LLUUID const ANIM_AGENT_STAND_3;
|
||||
extern LLUUID const ANIM_AGENT_STAND_4;
|
||||
extern LLUUID const ANIM_AGENT_STRETCH;
|
||||
extern LLUUID const ANIM_AGENT_STRIDE;
|
||||
extern LLUUID const ANIM_AGENT_SURF;
|
||||
extern LLUUID const ANIM_AGENT_SURPRISE;
|
||||
extern LLUUID const ANIM_AGENT_SWORD_STRIKE;
|
||||
extern LLUUID const ANIM_AGENT_TALK;
|
||||
extern LLUUID const ANIM_AGENT_TANTRUM;
|
||||
extern LLUUID const ANIM_AGENT_THROW_R;
|
||||
extern LLUUID const ANIM_AGENT_TRYON_SHIRT;
|
||||
extern LLUUID const ANIM_AGENT_TURNLEFT;
|
||||
extern LLUUID const ANIM_AGENT_TURNRIGHT;
|
||||
extern LLUUID const ANIM_AGENT_TYPE;
|
||||
extern LLUUID const ANIM_AGENT_WALK;
|
||||
extern LLUUID const ANIM_AGENT_WHISPER;
|
||||
extern LLUUID const ANIM_AGENT_WHISTLE;
|
||||
extern LLUUID const ANIM_AGENT_WINK;
|
||||
extern LLUUID const ANIM_AGENT_WINK_HOLLYWOOD;
|
||||
extern LLUUID const ANIM_AGENT_WORRY;
|
||||
extern LLUUID const ANIM_AGENT_YES;
|
||||
extern LLUUID const ANIM_AGENT_YES_HAPPY;
|
||||
extern LLUUID const ANIM_AGENT_YOGA_FLOAT;
|
||||
|
||||
extern LLUUID AGENT_WALK_ANIMS[];
|
||||
extern S32 NUM_AGENT_WALK_ANIMS;
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
|
||||
#include "llcharacter.h"
|
||||
#include "llstring.h"
|
||||
#include "llfasttimer.h"
|
||||
|
||||
#define SKEL_HEADER "Linden Skeleton 1.0"
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ project(llcommon)
|
||||
|
||||
include(00-Common)
|
||||
include(LLCommon)
|
||||
include(Linking)
|
||||
|
||||
include_directories(
|
||||
${EXPAT_INCLUDE_DIRS}
|
||||
@@ -12,6 +13,8 @@ include_directories(
|
||||
)
|
||||
|
||||
set(llcommon_SOURCE_FILES
|
||||
imageids.cpp
|
||||
indra_constants.cpp
|
||||
llapp.cpp
|
||||
llapr.cpp
|
||||
llassettype.cpp
|
||||
@@ -202,24 +205,15 @@ target_link_libraries(
|
||||
${APR_LIBRARIES}
|
||||
${EXPAT_LIBRARIES}
|
||||
${ZLIB_LIBRARIES}
|
||||
${WINDOWS_LIBRARIES}
|
||||
)
|
||||
|
||||
if(WORD_SIZE EQUAL 64)
|
||||
add_library (llcommonPIC ${llcommon_SOURCE_FILES})
|
||||
add_dependencies(llcommonPIC prepare)
|
||||
|
||||
if(WINDOWS)
|
||||
add_definitions(/FIXED:NO)
|
||||
else(WINDOWS) # not windows therefore gcc LINUX and DARWIN
|
||||
add_definitions(-fPIC)
|
||||
endif(WINDOWS)
|
||||
|
||||
target_link_libraries(
|
||||
llcommonPIC
|
||||
${APRUTIL_LIBRARIES}
|
||||
${APR_LIBRARIES}
|
||||
${EXPAT_LIBRARIES}
|
||||
${ZLIB_LIBRARIES}
|
||||
if (DARWIN)
|
||||
# Don't embed a full path in the library's install name
|
||||
set_target_properties(
|
||||
llcommon
|
||||
PROPERTIES
|
||||
BUILD_WITH_INSTALL_RPATH 1
|
||||
INSTALL_NAME_DIR "@executable_path/../Resources"
|
||||
)
|
||||
endif(WORD_SIZE EQUAL 64)
|
||||
|
||||
endif (DARWIN)
|
||||
|
||||
77
indra/llcommon/imageids.cpp
Normal file
77
indra/llcommon/imageids.cpp
Normal file
@@ -0,0 +1,77 @@
|
||||
/**
|
||||
* @file imageids.cpp
|
||||
*
|
||||
* $LicenseInfo:firstyear=2001&license=viewergpl$
|
||||
*
|
||||
* Copyright (c) 2001-2010, Linden Research, Inc.
|
||||
*
|
||||
* Second Life Viewer Source Code
|
||||
* The source code in this file ("Source Code") is provided by Linden Lab
|
||||
* to you under the terms of the GNU General Public License, version 2.0
|
||||
* ("GPL"), unless you have obtained a separate licensing agreement
|
||||
* ("Other License"), formally executed by you and Linden Lab. Terms of
|
||||
* the GPL can be found in doc/GPL-license.txt in this distribution, or
|
||||
* online at http://secondlife.com/developers/opensource/gplv2
|
||||
*
|
||||
* There are special exceptions to the terms and conditions of the GPL as
|
||||
* it is applied to this Source Code. View the full text of the exception
|
||||
* in the file doc/FLOSS-exception.txt in this software distribution, or
|
||||
* online at
|
||||
* http://secondlife.com/developers/opensource/flossexception
|
||||
*
|
||||
* By copying, modifying or distributing this software, you acknowledge
|
||||
* that you have read and understood your obligations described above,
|
||||
* and agree to abide by those obligations.
|
||||
*
|
||||
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
|
||||
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
|
||||
* COMPLETENESS OR PERFORMANCE.
|
||||
* $/LicenseInfo$
|
||||
*
|
||||
*/
|
||||
|
||||
#include "linden_common.h"
|
||||
|
||||
#include "imageids.h"
|
||||
|
||||
#include "lluuid.h"
|
||||
|
||||
//
|
||||
// USE OF THIS FILE IS DEPRECATED
|
||||
//
|
||||
// Please use viewerart.ini and the standard
|
||||
// art import path. // indicates if file is only
|
||||
// on dataserver, or also
|
||||
// pre-cached on viewer
|
||||
|
||||
// Grass Images
|
||||
const LLUUID IMG_SMOKE ("b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d"); // VIEWER
|
||||
|
||||
const LLUUID IMG_DEFAULT ("d2114404-dd59-4a4d-8e6c-49359e91bbf0"); // VIEWER
|
||||
|
||||
const LLUUID IMG_SUN ("cce0f112-878f-4586-a2e2-a8f104bba271"); // dataserver
|
||||
const LLUUID IMG_MOON ("d07f6eed-b96a-47cd-b51d-400ad4a1c428"); // dataserver
|
||||
const LLUUID IMG_CLOUD_POOF ("fc4b9f0b-d008-45c6-96a4-01dd947ac621"); // dataserver
|
||||
const LLUUID IMG_SHOT ("35f217a3-f618-49cf-bbca-c86d486551a9"); // dataserver
|
||||
const LLUUID IMG_SPARK ("d2e75ac1-d0fb-4532-820e-a20034ac814d"); // dataserver
|
||||
const LLUUID IMG_FIRE ("aca40aa8-44cf-44ca-a0fa-93e1a2986f82"); // dataserver
|
||||
const LLUUID IMG_FACE_SELECT ("a85ac674-cb75-4af6-9499-df7c5aaf7a28"); // face selector
|
||||
const LLUUID IMG_DEFAULT_AVATAR ("c228d1cf-4b5d-4ba8-84f4-899a0796aa97"); // dataserver
|
||||
const LLUUID IMG_INVISIBLE ("3a367d1c-bef1-6d43-7595-e88c1e3aadb3"); // dataserver
|
||||
|
||||
const LLUUID IMG_EXPLOSION ("68edcf47-ccd7-45b8-9f90-1649d7f12806"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_2 ("21ce046c-83fe-430a-b629-c7660ac78d7c"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_3 ("fedea30a-1be8-47a6-bc06-337a04a39c4b"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_4 ("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); // On dataserver
|
||||
const LLUUID IMG_SMOKE_POOF ("1e63e323-5fe0-452e-92f8-b98bd0f764e3"); // On dataserver
|
||||
|
||||
const LLUUID IMG_BIG_EXPLOSION_1 ("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); // On dataserver
|
||||
const LLUUID IMG_BIG_EXPLOSION_2 ("9c8eca51-53d5-42a7-bb58-cef070395db8"); // On dataserver
|
||||
|
||||
const LLUUID IMG_BLOOM1 ("3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef"); // VIEWER
|
||||
const LLUUID TERRAIN_DIRT_DETAIL ("0bc58228-74a0-7e83-89bc-5c23464bcec5"); // VIEWER
|
||||
const LLUUID TERRAIN_GRASS_DETAIL ("63338ede-0037-c4fd-855b-015d77112fc8"); // VIEWER
|
||||
const LLUUID TERRAIN_MOUNTAIN_DETAIL ("303cd381-8560-7579-23f1-f0a880799740"); // VIEWER
|
||||
const LLUUID TERRAIN_ROCK_DETAIL ("53a2f406-4895-1d13-d541-d2e3b86bc19c"); // VIEWER
|
||||
|
||||
const LLUUID DEFAULT_WATER_NORMAL ("822ded49-9a6c-f61c-cb89-6df54f42cdf4"); // VIEWER
|
||||
@@ -33,46 +33,43 @@
|
||||
#ifndef LL_IMAGEIDS_H
|
||||
#define LL_IMAGEIDS_H
|
||||
|
||||
#include "lluuid.h"
|
||||
|
||||
//
|
||||
// USE OF THIS FILE IS DEPRECATED
|
||||
//
|
||||
// Please use viewerart.ini and the standard
|
||||
// art import path. // indicates if file is only
|
||||
// on dataserver, or also
|
||||
// pre-cached on viewer
|
||||
// art import path.
|
||||
|
||||
// Grass Images
|
||||
const LLUUID IMG_SMOKE ("b4ba225c-373f-446d-9f7e-6cb7b5cf9b3d"); // VIEWER
|
||||
class LLUUID;
|
||||
|
||||
const LLUUID IMG_DEFAULT ("d2114404-dd59-4a4d-8e6c-49359e91bbf0"); // VIEWER
|
||||
LL_COMMON_API extern const LLUUID IMG_SMOKE;
|
||||
|
||||
const LLUUID IMG_SUN ("cce0f112-878f-4586-a2e2-a8f104bba271"); // dataserver
|
||||
const LLUUID IMG_MOON ("d07f6eed-b96a-47cd-b51d-400ad4a1c428"); // dataserver
|
||||
const LLUUID IMG_CLOUD_POOF ("fc4b9f0b-d008-45c6-96a4-01dd947ac621"); // dataserver
|
||||
const LLUUID IMG_SHOT ("35f217a3-f618-49cf-bbca-c86d486551a9"); // dataserver
|
||||
const LLUUID IMG_SPARK ("d2e75ac1-d0fb-4532-820e-a20034ac814d"); // dataserver
|
||||
const LLUUID IMG_FIRE ("aca40aa8-44cf-44ca-a0fa-93e1a2986f82"); // dataserver
|
||||
const LLUUID IMG_FACE_SELECT ("a85ac674-cb75-4af6-9499-df7c5aaf7a28"); // face selector
|
||||
const LLUUID IMG_DEFAULT_AVATAR ("c228d1cf-4b5d-4ba8-84f4-899a0796aa97"); // dataserver
|
||||
const LLUUID IMG_INVISIBLE ("3a367d1c-bef1-6d43-7595-e88c1e3aadb3"); // dataserver
|
||||
LL_COMMON_API extern const LLUUID IMG_DEFAULT;
|
||||
|
||||
const LLUUID IMG_EXPLOSION ("68edcf47-ccd7-45b8-9f90-1649d7f12806"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_2 ("21ce046c-83fe-430a-b629-c7660ac78d7c"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_3 ("fedea30a-1be8-47a6-bc06-337a04a39c4b"); // On dataserver
|
||||
const LLUUID IMG_EXPLOSION_4 ("abf0d56b-82e5-47a2-a8ad-74741bb2c29e"); // On dataserver
|
||||
const LLUUID IMG_SMOKE_POOF ("1e63e323-5fe0-452e-92f8-b98bd0f764e3"); // On dataserver
|
||||
LL_COMMON_API extern const LLUUID IMG_SUN;
|
||||
LL_COMMON_API extern const LLUUID IMG_MOON;
|
||||
LL_COMMON_API extern const LLUUID IMG_CLOUD_POOF;
|
||||
LL_COMMON_API extern const LLUUID IMG_SHOT;
|
||||
LL_COMMON_API extern const LLUUID IMG_SPARK;
|
||||
LL_COMMON_API extern const LLUUID IMG_FIRE;
|
||||
LL_COMMON_API extern const LLUUID IMG_FACE_SELECT;
|
||||
LL_COMMON_API extern const LLUUID IMG_DEFAULT_AVATAR;
|
||||
LL_COMMON_API extern const LLUUID IMG_INVISIBLE;
|
||||
|
||||
const LLUUID IMG_BIG_EXPLOSION_1 ("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); // On dataserver
|
||||
const LLUUID IMG_BIG_EXPLOSION_2 ("9c8eca51-53d5-42a7-bb58-cef070395db8"); // On dataserver
|
||||
LL_COMMON_API extern const LLUUID IMG_EXPLOSION;
|
||||
LL_COMMON_API extern const LLUUID IMG_EXPLOSION_2;
|
||||
LL_COMMON_API extern const LLUUID IMG_EXPLOSION_3;
|
||||
LL_COMMON_API extern const LLUUID IMG_EXPLOSION_4;
|
||||
LL_COMMON_API extern const LLUUID IMG_SMOKE_POOF;
|
||||
|
||||
const LLUUID IMG_BLOOM1 ("3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef"); // VIEWER
|
||||
const LLUUID TERRAIN_DIRT_DETAIL ("0bc58228-74a0-7e83-89bc-5c23464bcec5"); // VIEWER
|
||||
const LLUUID TERRAIN_GRASS_DETAIL ("63338ede-0037-c4fd-855b-015d77112fc8"); // VIEWER
|
||||
const LLUUID TERRAIN_MOUNTAIN_DETAIL ("303cd381-8560-7579-23f1-f0a880799740"); // VIEWER
|
||||
const LLUUID TERRAIN_ROCK_DETAIL ("53a2f406-4895-1d13-d541-d2e3b86bc19c"); // VIEWER
|
||||
LL_COMMON_API extern const LLUUID IMG_BIG_EXPLOSION_1;
|
||||
LL_COMMON_API extern const LLUUID IMG_BIG_EXPLOSION_2;
|
||||
|
||||
const LLUUID DEFAULT_WATER_NORMAL ("822ded49-9a6c-f61c-cb89-6df54f42cdf4"); // VIEWER
|
||||
LL_COMMON_API extern const LLUUID IMG_BLOOM1;
|
||||
LL_COMMON_API extern const LLUUID TERRAIN_DIRT_DETAIL;
|
||||
LL_COMMON_API extern const LLUUID TERRAIN_GRASS_DETAIL;
|
||||
LL_COMMON_API extern const LLUUID TERRAIN_MOUNTAIN_DETAIL;
|
||||
LL_COMMON_API extern const LLUUID TERRAIN_ROCK_DETAIL;
|
||||
|
||||
LL_COMMON_API extern const LLUUID DEFAULT_WATER_NORMAL;
|
||||
|
||||
#endif
|
||||
|
||||
47
indra/llcommon/indra_constants.cpp
Normal file
47
indra/llcommon/indra_constants.cpp
Normal file
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* @file indra_constants.cpp
|
||||
* @brief some useful short term constants for Indra
|
||||
*
|
||||
* $LicenseInfo:firstyear=2001&license=viewergpl$
|
||||
*
|
||||
* Copyright (c) 2001-2010, Linden Research, Inc.
|
||||
*
|
||||
* Second Life Viewer Source Code
|
||||
* The source code in this file ("Source Code") is provided by Linden Lab
|
||||
* to you under the terms of the GNU General Public License, version 2.0
|
||||
* ("GPL"), unless you have obtained a separate licensing agreement
|
||||
* ("Other License"), formally executed by you and Linden Lab. Terms of
|
||||
* the GPL can be found in doc/GPL-license.txt in this distribution, or
|
||||
* online at http://secondlife.com/developers/opensource/gplv2
|
||||
*
|
||||
* There are special exceptions to the terms and conditions of the GPL as
|
||||
* it is applied to this Source Code. View the full text of the exception
|
||||
* in the file doc/FLOSS-exception.txt in this software distribution, or
|
||||
* online at
|
||||
* http://secondlife.com/developers/opensource/flossexception
|
||||
*
|
||||
* By copying, modifying or distributing this software, you acknowledge
|
||||
* that you have read and understood your obligations described above,
|
||||
* and agree to abide by those obligations.
|
||||
*
|
||||
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
|
||||
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
|
||||
* COMPLETENESS OR PERFORMANCE.
|
||||
* $/LicenseInfo$
|
||||
*/
|
||||
|
||||
#include "linden_common.h"
|
||||
|
||||
#include "indra_constants.h"
|
||||
|
||||
#include "lluuid.h"
|
||||
|
||||
// "agent id" for things that should be done to ALL agents
|
||||
const LLUUID LL_UUID_ALL_AGENTS("44e87126-e794-4ded-05b3-7c42da3d5cdb");
|
||||
|
||||
// Governor Linden's agent id.
|
||||
const LLUUID ALEXANDRIA_LINDEN_ID("ba2a564a-f0f1-4b82-9c61-b7520bfcd09f");
|
||||
const LLUUID GOVERNOR_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1");
|
||||
const LLUUID REALESTATE_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1");
|
||||
// Maintenance's group id.
|
||||
const LLUUID MAINTENANCE_GROUP_ID("dc7b21cd-3c89-fcaa-31c8-25f9ffd224cd");
|
||||
@@ -34,7 +34,9 @@
|
||||
#define LL_INDRA_CONSTANTS_H
|
||||
|
||||
#include "stdtypes.h"
|
||||
#include "lluuid.h"
|
||||
#include "llpreprocessor.h"
|
||||
|
||||
class LLUUID;
|
||||
|
||||
// At 45 Hz collisions seem stable and objects seem
|
||||
// to settle down at a reasonable rate.
|
||||
@@ -262,14 +264,15 @@ const U8 GOD_LIKE = 1;
|
||||
const U8 GOD_NOT = 0;
|
||||
|
||||
// "agent id" for things that should be done to ALL agents
|
||||
const LLUUID LL_UUID_ALL_AGENTS("44e87126-e794-4ded-05b3-7c42da3d5cdb");
|
||||
LL_COMMON_API extern const LLUUID LL_UUID_ALL_AGENTS;
|
||||
|
||||
// Governor Linden's agent id.
|
||||
const LLUUID ALEXANDRIA_LINDEN_ID("ba2a564a-f0f1-4b82-9c61-b7520bfcd09f");
|
||||
const LLUUID GOVERNOR_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1");
|
||||
const LLUUID REALESTATE_LINDEN_ID("3d6181b0-6a4b-97ef-18d8-722652995cf1");
|
||||
// inventory library owner
|
||||
LL_COMMON_API extern const LLUUID ALEXANDRIA_LINDEN_ID;
|
||||
|
||||
LL_COMMON_API extern const LLUUID GOVERNOR_LINDEN_ID;
|
||||
LL_COMMON_API extern const LLUUID REALESTATE_LINDEN_ID;
|
||||
// Maintenance's group id.
|
||||
const LLUUID MAINTENANCE_GROUP_ID("dc7b21cd-3c89-fcaa-31c8-25f9ffd224cd");
|
||||
LL_COMMON_API extern const LLUUID MAINTENANCE_GROUP_ID;
|
||||
|
||||
// Flags for kick message
|
||||
const U32 KICK_FLAGS_DEFAULT = 0x0;
|
||||
|
||||
@@ -51,42 +51,36 @@
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <ctime>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <iosfwd>
|
||||
|
||||
// Work Microsoft compiler warnings
|
||||
// Work around Microsoft compiler warnings in STL headers
|
||||
#ifdef LL_WINDOWS
|
||||
#pragma warning (disable : 4702) // unreachable code
|
||||
#pragma warning (disable : 4244) // conversion from time_t to S32
|
||||
#endif // LL_WINDOWS
|
||||
|
||||
#include <algorithm>
|
||||
// *TODO: Eliminate these, most library .cpp files don't need them.
|
||||
// Add them to llviewerprecompiledheaders.h if necessary.
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#ifdef LL_WINDOWS
|
||||
#pragma warning (3 : 4702) // we like level 3, not 4
|
||||
// level 4 warnings that we need to disable:
|
||||
#pragma warning (disable : 4100) // unreferenced formal parameter
|
||||
#pragma warning (disable : 4127) // conditional expression is constant (e.g. while(1) )
|
||||
#pragma warning (disable : 4244) // possible loss of data on conversions
|
||||
#pragma warning (disable : 4396) // the inline specifier cannot be used when a friend declaration refers to a specialization of a function template
|
||||
#pragma warning (disable : 4512) // assignment operator could not be generated
|
||||
#pragma warning (disable : 4706) // assignment within conditional (even if((x = y)) )
|
||||
// Reenable warnings we disabled above
|
||||
#pragma warning (3 : 4702) // unreachable code, we like level 3, not 4
|
||||
// moved msvc warnings to llpreprocessor.h *TODO - delete this comment after merge conflicts are unlikely -brad
|
||||
#endif // LL_WINDOWS
|
||||
|
||||
// Linden only libs in alpha-order other than stdtypes.h
|
||||
// *NOTE: Please keep includes here to a minimum, see above.
|
||||
#include "stdtypes.h"
|
||||
#include "lldefs.h"
|
||||
#include "llerror.h"
|
||||
#include "llextendedstatus.h"
|
||||
#include "llfasttimer.h"
|
||||
// Don't do this, adds 15K lines of header code to every library file.
|
||||
//#include "llfasttimer.h"
|
||||
#include "llfile.h"
|
||||
#include "llformat.h"
|
||||
#include "llstring.h"
|
||||
#include "llsys.h"
|
||||
#include "lltimer.h"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -424,7 +424,7 @@ void LLApp::incSigChildCount()
|
||||
int LLApp::getPid()
|
||||
{
|
||||
#if LL_WINDOWS
|
||||
return 0;
|
||||
return GetCurrentProcessId();
|
||||
#else
|
||||
return getpid();
|
||||
#endif
|
||||
|
||||
@@ -34,15 +34,18 @@
|
||||
#define LL_LLAPP_H
|
||||
|
||||
#include <map>
|
||||
#include "llapr.h"
|
||||
#include "llrun.h"
|
||||
#include "llsd.h"
|
||||
#include "lloptioninterface.h"
|
||||
|
||||
// Forward declarations
|
||||
template <typename Type> class LLAtomic32;
|
||||
typedef LLAtomic32<U32> LLAtomicU32;
|
||||
class LLErrorThread;
|
||||
class LLApp;
|
||||
|
||||
class LLLiveFile;
|
||||
#if LL_LINUX
|
||||
typedef struct siginfo siginfo_t;
|
||||
#endif
|
||||
|
||||
typedef void (*LLAppErrorHandler)();
|
||||
typedef void (*LLAppChildCallback)(int pid, bool exited, int status);
|
||||
@@ -63,7 +66,7 @@ public:
|
||||
};
|
||||
#endif
|
||||
|
||||
class LLApp : public LLOptionInterface
|
||||
class LL_COMMON_API LLApp : public LLOptionInterface
|
||||
{
|
||||
friend class LLErrorThread;
|
||||
public:
|
||||
@@ -190,8 +193,6 @@ public:
|
||||
#if !LL_WINDOWS
|
||||
static U32 getSigChildCount();
|
||||
static void incSigChildCount();
|
||||
#else
|
||||
#define getpid GetCurrentProcessId
|
||||
#endif
|
||||
static int getPid();
|
||||
|
||||
|
||||
@@ -48,25 +48,24 @@
|
||||
#include "apr_atomic.h"
|
||||
#include "llstring.h"
|
||||
|
||||
extern apr_thread_mutex_t* gLogMutexp;
|
||||
extern apr_thread_mutex_t* gCallStacksLogMutexp;
|
||||
extern LL_COMMON_API apr_thread_mutex_t* gLogMutexp;
|
||||
|
||||
/**
|
||||
* @brief initialize the common apr constructs -- apr itself, the
|
||||
* global pool, and a mutex.
|
||||
*/
|
||||
void ll_init_apr();
|
||||
void LL_COMMON_API ll_init_apr();
|
||||
|
||||
/**
|
||||
* @brief Cleanup those common apr constructs.
|
||||
*/
|
||||
void ll_cleanup_apr();
|
||||
void LL_COMMON_API ll_cleanup_apr();
|
||||
|
||||
//
|
||||
//LL apr_pool
|
||||
//manage apr_pool_t, destroy allocated apr_pool in the destruction function.
|
||||
//
|
||||
class LLAPRPool
|
||||
class LL_COMMON_API LLAPRPool
|
||||
{
|
||||
public:
|
||||
LLAPRPool(apr_pool_t *parent = NULL, apr_size_t size = 0, BOOL releasePoolFlag = TRUE) ;
|
||||
@@ -92,7 +91,7 @@ protected:
|
||||
//which clears memory automatically.
|
||||
//so it can not hold static data or data after memory is cleared
|
||||
//
|
||||
class LLVolatileAPRPool : protected LLAPRPool
|
||||
class LL_COMMON_API LLVolatileAPRPool : protected LLAPRPool
|
||||
{
|
||||
public:
|
||||
LLVolatileAPRPool(apr_pool_t *parent = NULL, apr_size_t size = 0, BOOL releasePoolFlag = TRUE);
|
||||
@@ -126,7 +125,7 @@ private:
|
||||
* destructor handles the unlock. Instances of this class are
|
||||
* <b>not</b> thread safe.
|
||||
*/
|
||||
class LLScopedLock : private boost::noncopyable
|
||||
class LL_COMMON_API LLScopedLock : private boost::noncopyable
|
||||
{
|
||||
public:
|
||||
/**
|
||||
@@ -201,7 +200,7 @@ typedef LLAtomic32<S32> LLAtomicS32;
|
||||
// 2, a global pool.
|
||||
//
|
||||
|
||||
class LLAPRFile : boost::noncopyable
|
||||
class LL_COMMON_API LLAPRFile : boost::noncopyable
|
||||
{
|
||||
// make this non copyable since a copy closes the file
|
||||
private:
|
||||
@@ -257,10 +256,10 @@ public:
|
||||
* APR_SUCCESS.
|
||||
* @return Returns <code>true</code> if status is an error condition.
|
||||
*/
|
||||
bool ll_apr_warn_status(apr_status_t status);
|
||||
bool LL_COMMON_API ll_apr_warn_status(apr_status_t status);
|
||||
|
||||
void ll_apr_assert_status(apr_status_t status);
|
||||
void LL_COMMON_API ll_apr_assert_status(apr_status_t status);
|
||||
|
||||
extern "C" apr_pool_t* gAPRPoolp; // Global APR memory pool
|
||||
extern "C" LL_COMMON_API apr_pool_t* gAPRPoolp; // Global APR memory pool
|
||||
|
||||
#endif // LL_LLAPR_H
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
#include "stdenums.h" // for EDragAndDropType
|
||||
|
||||
class LLAssetType
|
||||
class LL_COMMON_API LLAssetType
|
||||
{
|
||||
public:
|
||||
enum EType
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
#ifndef LLBASE32_H
|
||||
#define LLBASE32_h
|
||||
|
||||
class LLBase32
|
||||
class LL_COMMON_API LLBase32
|
||||
{
|
||||
public:
|
||||
static std::string encode(const U8* input, size_t input_size);
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
#ifndef LLBASE64_H
|
||||
#define LLBASE64_h
|
||||
|
||||
class LLBase64
|
||||
class LL_COMMON_API LLBase64
|
||||
{
|
||||
public:
|
||||
static std::string encode(const U8* input, size_t input_size);
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
#include "lltimer.h"
|
||||
#include "llfile.h"
|
||||
|
||||
class LLCommon
|
||||
class LL_COMMON_API LLCommon
|
||||
{
|
||||
public:
|
||||
static void initClass();
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
// llinfos << "File crc: " << crc.getCRC() << llendl;
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
class LLCRC
|
||||
class LL_COMMON_API LLCRC
|
||||
{
|
||||
protected:
|
||||
U32 mCurrent;
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
#include "llframetimer.h"
|
||||
|
||||
class LLCriticalDamp
|
||||
class LL_COMMON_API LLCriticalDamp
|
||||
{
|
||||
public:
|
||||
LLCriticalDamp();
|
||||
|
||||
@@ -77,6 +77,6 @@ enum ECursorType {
|
||||
UI_CURSOR_COUNT // Number of elements in this enum (NOT a cursor)
|
||||
};
|
||||
|
||||
ECursorType getCursorFromString(const std::string& cursor_string);
|
||||
LL_COMMON_API ECursorType getCursorFromString(const std::string& cursor_string);
|
||||
|
||||
#endif // LL_LLCURSORTYPES_H
|
||||
|
||||
@@ -113,6 +113,8 @@ void LLDate::toHTTPDateStream(std::ostream& s) const
|
||||
#else
|
||||
s.setf(ios::right);
|
||||
#endif
|
||||
static char const* const weekdays[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
|
||||
static char const* const months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
|
||||
std::string day = weekdays[exp_time.tm_wday];
|
||||
std::string month = months[exp_time.tm_mon];
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
*
|
||||
* The date class represents a point in time after epoch - 1970-01-01.
|
||||
*/
|
||||
class LLDate
|
||||
class LL_COMMON_API LLDate
|
||||
{
|
||||
public:
|
||||
/**
|
||||
@@ -153,14 +153,9 @@ private:
|
||||
};
|
||||
|
||||
// Helper function to stream out a date
|
||||
std::ostream& operator<<(std::ostream& s, const LLDate& date);
|
||||
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLDate& date);
|
||||
|
||||
// Helper function to stream in a date
|
||||
std::istream& operator>>(std::istream& s, LLDate& date);
|
||||
|
||||
|
||||
const static std::string weekdays[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
|
||||
|
||||
const static std::string months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
|
||||
LL_COMMON_API std::istream& operator>>(std::istream& s, LLDate& date);
|
||||
|
||||
#endif // LL_LLDATE_H
|
||||
|
||||
@@ -57,7 +57,9 @@
|
||||
#include "llsd.h"
|
||||
#include "llsdserialize.h"
|
||||
#include "llstl.h"
|
||||
#include "lltimer.h"
|
||||
|
||||
extern apr_thread_mutex_t* gCallStacksLogMutexp;
|
||||
|
||||
namespace {
|
||||
#if !LL_WINDOWS
|
||||
|
||||
@@ -131,7 +131,7 @@ namespace LLError
|
||||
|
||||
class CallSite;
|
||||
|
||||
class Log
|
||||
class LL_COMMON_API Log
|
||||
{
|
||||
public:
|
||||
static bool shouldLog(CallSite&);
|
||||
@@ -140,7 +140,7 @@ namespace LLError
|
||||
static void flush(std::ostringstream*, const CallSite&);
|
||||
};
|
||||
|
||||
class CallSite
|
||||
class LL_COMMON_API CallSite
|
||||
{
|
||||
// Represents a specific place in the code where a message is logged
|
||||
// This is public because it is used by the macros below. It is not
|
||||
@@ -189,7 +189,7 @@ namespace LLError
|
||||
//LLCallStacks is designed not to be thread-safe.
|
||||
//so try not to use it in multiple parallel threads at same time.
|
||||
//Used in a single thread at a time is fine.
|
||||
class LLCallStacks
|
||||
class LL_COMMON_API LLCallStacks
|
||||
{
|
||||
private:
|
||||
static char** sBuffer ;
|
||||
|
||||
@@ -63,12 +63,12 @@ public:
|
||||
|
||||
namespace LLError
|
||||
{
|
||||
void initForServer(const std::string& identity);
|
||||
LL_COMMON_API void initForServer(const std::string& identity);
|
||||
// resets all logging settings to defaults needed by server processes
|
||||
// logs to stderr, syslog, and windows debug log
|
||||
// the identity string is used for in the syslog
|
||||
|
||||
void initForApplication(const std::string& dir);
|
||||
LL_COMMON_API void initForApplication(const std::string& dir);
|
||||
// resets all logging settings to defaults needed by applicaitons
|
||||
// logs to stderr and windows debug log
|
||||
// sets up log configuration from the file logcontrol.xml in dir
|
||||
@@ -79,14 +79,14 @@ namespace LLError
|
||||
Setting a level means log messages at that level or above.
|
||||
*/
|
||||
|
||||
void setPrintLocation(bool);
|
||||
void setDefaultLevel(LLError::ELevel);
|
||||
void setFunctionLevel(const std::string& function_name, LLError::ELevel);
|
||||
void setClassLevel(const std::string& class_name, LLError::ELevel);
|
||||
void setFileLevel(const std::string& file_name, LLError::ELevel);
|
||||
void setTagLevel(const std::string& file_name, LLError::ELevel);
|
||||
LL_COMMON_API void setPrintLocation(bool);
|
||||
LL_COMMON_API void setDefaultLevel(LLError::ELevel);
|
||||
LL_COMMON_API void setFunctionLevel(const std::string& function_name, LLError::ELevel);
|
||||
LL_COMMON_API void setClassLevel(const std::string& class_name, LLError::ELevel);
|
||||
LL_COMMON_API void setFileLevel(const std::string& file_name, LLError::ELevel);
|
||||
LL_COMMON_API void setTagLevel(const std::string& file_name, LLError::ELevel);
|
||||
|
||||
void configure(const LLSD&);
|
||||
LL_COMMON_API void configure(const LLSD&);
|
||||
// the LLSD can configure all of the settings
|
||||
// usually read automatically from the live errorlog.xml file
|
||||
|
||||
@@ -96,25 +96,25 @@ namespace LLError
|
||||
*/
|
||||
|
||||
typedef void(*FatalFunction)(const std::string& message);
|
||||
void crashAndLoop(const std::string& message);
|
||||
LL_COMMON_API void crashAndLoop(const std::string& message);
|
||||
// Default fatal funtion: access null pointer and loops forever
|
||||
|
||||
void setFatalFunction(FatalFunction);
|
||||
LL_COMMON_API void setFatalFunction(FatalFunction);
|
||||
// The fatal function will be called when an message of LEVEL_ERROR
|
||||
// is logged. Note: supressing a LEVEL_ERROR message from being logged
|
||||
// (by, for example, setting a class level to LEVEL_NONE), will keep
|
||||
// the that message from causing the fatal funciton to be invoked.
|
||||
|
||||
typedef std::string (*TimeFunction)();
|
||||
std::string utcTime();
|
||||
LL_COMMON_API std::string utcTime();
|
||||
|
||||
void setTimeFunction(TimeFunction);
|
||||
LL_COMMON_API void setTimeFunction(TimeFunction);
|
||||
// The function is use to return the current time, formatted for
|
||||
// display by those error recorders that want the time included.
|
||||
|
||||
|
||||
|
||||
class Recorder
|
||||
class LL_COMMON_API Recorder
|
||||
{
|
||||
// An object that handles the actual output or error messages.
|
||||
public:
|
||||
@@ -128,17 +128,17 @@ namespace LLError
|
||||
// included in the text of the message
|
||||
};
|
||||
|
||||
void addRecorder(Recorder*);
|
||||
void removeRecorder(Recorder*);
|
||||
LL_COMMON_API void addRecorder(Recorder*);
|
||||
LL_COMMON_API void removeRecorder(Recorder*);
|
||||
// each error message is passed to each recorder via recordMessage()
|
||||
|
||||
void logToFile(const std::string& filename);
|
||||
void logToFixedBuffer(LLLineBuffer*);
|
||||
LL_COMMON_API void logToFile(const std::string& filename);
|
||||
LL_COMMON_API void logToFixedBuffer(LLLineBuffer*);
|
||||
// Utilities to add recorders for logging to a file or a fixed buffer
|
||||
// A second call to the same function will remove the logger added
|
||||
// with the first.
|
||||
// Passing the empty string or NULL to just removes any prior.
|
||||
std::string logFileName();
|
||||
LL_COMMON_API std::string logFileName();
|
||||
// returns name of current logging file, empty string if none
|
||||
|
||||
|
||||
@@ -147,11 +147,11 @@ namespace LLError
|
||||
*/
|
||||
|
||||
class Settings;
|
||||
Settings* saveAndResetSettings();
|
||||
void restoreSettings(Settings *);
|
||||
LL_COMMON_API Settings* saveAndResetSettings();
|
||||
LL_COMMON_API void restoreSettings(Settings *);
|
||||
|
||||
std::string abbreviateFile(const std::string& filePath);
|
||||
int shouldLogCallCount();
|
||||
LL_COMMON_API std::string abbreviateFile(const std::string& filePath);
|
||||
LL_COMMON_API int shouldLogCallCount();
|
||||
|
||||
};
|
||||
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
#include "linden_common.h"
|
||||
#include "llerrorthread.h"
|
||||
#include "llapp.h"
|
||||
#include "lltimer.h"
|
||||
|
||||
LLErrorThread::LLErrorThread()
|
||||
: LLThread("Error"),
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#include "llthread.h"
|
||||
|
||||
class LLErrorThread : public LLThread
|
||||
class LL_COMMON_API LLErrorThread : public LLThread
|
||||
{
|
||||
public:
|
||||
LLErrorThread();
|
||||
|
||||
@@ -44,7 +44,7 @@ class LLEventDispatcher;
|
||||
class LLObservable;
|
||||
|
||||
// Abstract event. All events derive from LLEvent
|
||||
class LLEvent : public LLThreadSafeRefCount
|
||||
class LL_COMMON_API LLEvent : public LLThreadSafeRefCount
|
||||
{
|
||||
protected:
|
||||
virtual ~LLEvent();
|
||||
@@ -72,7 +72,7 @@ private:
|
||||
};
|
||||
|
||||
// Abstract listener. All listeners derive from LLEventListener
|
||||
class LLEventListener : public LLThreadSafeRefCount
|
||||
class LL_COMMON_API LLEventListener : public LLThreadSafeRefCount
|
||||
{
|
||||
protected:
|
||||
virtual ~LLEventListener();
|
||||
@@ -89,7 +89,7 @@ public:
|
||||
};
|
||||
|
||||
// A listener which tracks references to it and cleans up when it's deallocated
|
||||
class LLSimpleListener : public LLEventListener
|
||||
class LL_COMMON_API LLSimpleListener : public LLEventListener
|
||||
{
|
||||
public:
|
||||
void clearDispatchers();
|
||||
@@ -114,7 +114,7 @@ struct LLListenerEntry
|
||||
// Base class for a dispatcher - an object which listens
|
||||
// to events being fired and relays them to their
|
||||
// appropriate destinations.
|
||||
class LLEventDispatcher : public LLThreadSafeRefCount
|
||||
class LL_COMMON_API LLEventDispatcher : public LLThreadSafeRefCount
|
||||
{
|
||||
protected:
|
||||
virtual ~LLEventDispatcher();
|
||||
@@ -157,7 +157,7 @@ private:
|
||||
// In order for this class to work properly, it needs
|
||||
// an instance of an LLEventDispatcher to route events to their
|
||||
// listeners.
|
||||
class LLObservable
|
||||
class LL_COMMON_API LLObservable
|
||||
{
|
||||
public:
|
||||
// Initialize with the default Dispatcher
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
#include <sched.h>
|
||||
#elif LL_DARWIN
|
||||
#include <sys/time.h>
|
||||
#include "lltimer.h" // get_clock_count()
|
||||
#else
|
||||
#error "architecture not supported"
|
||||
#endif
|
||||
|
||||
@@ -35,9 +35,9 @@
|
||||
|
||||
#define FAST_TIMER_ON 1
|
||||
|
||||
U64 get_cpu_clock_count();
|
||||
LL_COMMON_API U64 get_cpu_clock_count();
|
||||
|
||||
class LLFastTimer
|
||||
class LL_COMMON_API LLFastTimer
|
||||
{
|
||||
public:
|
||||
enum EFastTimerType
|
||||
|
||||
@@ -70,7 +70,7 @@ typedef struct stat llstat;
|
||||
|
||||
#include "llstring.h" // safe char* -> std::string conversion
|
||||
|
||||
class LLFile
|
||||
class LL_COMMON_API LLFile
|
||||
{
|
||||
public:
|
||||
// All these functions take UTF8 path/filenames.
|
||||
@@ -95,7 +95,7 @@ public:
|
||||
|
||||
#if USE_LLFILESTREAMS
|
||||
|
||||
class llifstream : public std::basic_istream < char , std::char_traits < char > >
|
||||
class LL_COMMON_API llifstream : public std::basic_istream < char , std::char_traits < char > >
|
||||
{
|
||||
// input stream associated with a C stream
|
||||
public:
|
||||
@@ -136,7 +136,7 @@ private:
|
||||
};
|
||||
|
||||
|
||||
class llofstream : public std::basic_ostream< char , std::char_traits < char > >
|
||||
class LL_COMMON_API llofstream : public std::basic_ostream< char , std::char_traits < char > >
|
||||
{
|
||||
public:
|
||||
typedef std::basic_ostream< char , std::char_traits < char > > _Myt;
|
||||
@@ -185,7 +185,7 @@ private:
|
||||
//#define llifstream std::ifstream
|
||||
//#define llofstream std::ofstream
|
||||
|
||||
class llifstream : public std::ifstream
|
||||
class LL_COMMON_API llifstream : public std::ifstream
|
||||
{
|
||||
public:
|
||||
llifstream() : std::ifstream()
|
||||
@@ -203,7 +203,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class llofstream : public std::ofstream
|
||||
class LL_COMMON_API llofstream : public std::ofstream
|
||||
{
|
||||
public:
|
||||
llofstream() : std::ofstream()
|
||||
|
||||
@@ -59,8 +59,8 @@ typedef enum {
|
||||
/* This allocates/fills in a FL_Locale structure with pointers to
|
||||
strings (which should be treated as static), or NULL for inappropriate /
|
||||
undetected fields. */
|
||||
FL_Success FL_FindLocale(FL_Locale **locale, FL_Domain domain);
|
||||
LL_COMMON_API FL_Success FL_FindLocale(FL_Locale **locale, FL_Domain domain);
|
||||
/* This should be used to free the struct written by FL_FindLocale */
|
||||
void FL_FreeLocale(FL_Locale **locale);
|
||||
LL_COMMON_API void FL_FreeLocale(FL_Locale **locale);
|
||||
|
||||
#endif /*__findlocale_h_*/
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
#include "llerrorcontrol.h"
|
||||
|
||||
// fixed buffer implementation
|
||||
class LLFixedBuffer : public LLLineBuffer
|
||||
class LL_COMMON_API LLFixedBuffer : public LLLineBuffer
|
||||
{
|
||||
public:
|
||||
LLFixedBuffer(const U32 max_lines = 20);
|
||||
|
||||
@@ -40,6 +40,6 @@
|
||||
// *NOTE: buffer limited to 1024, (but vsnprintf prevents overrun)
|
||||
// should perhaps be replaced with boost::format.
|
||||
|
||||
std::string llformat(const char *fmt, ...);
|
||||
LL_COMMON_API std::string llformat(const char *fmt, ...);
|
||||
|
||||
#endif // LL_LLFORMAT_H
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
#include "lltimer.h"
|
||||
#include "timing.h"
|
||||
|
||||
class LLFrameTimer
|
||||
class LL_COMMON_API LLFrameTimer
|
||||
{
|
||||
public:
|
||||
LLFrameTimer() : mStartTime( sFrameTime ), mExpiry(0), mStarted(TRUE) {}
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
// Note: Win32 does not support the heartbeat/smackdown system;
|
||||
// heartbeat-delivery turns into a no-op there.
|
||||
|
||||
class LLHeartbeat
|
||||
class LL_COMMON_API LLHeartbeat
|
||||
{
|
||||
public:
|
||||
// secs_between_heartbeat: after a heartbeat is successfully delivered,
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
class LLApp;
|
||||
|
||||
class LLLiveAppConfig : public LLLiveFile
|
||||
class LL_COMMON_API LLLiveAppConfig : public LLLiveFile
|
||||
{
|
||||
public:
|
||||
// To use this, instantiate a LLLiveAppConfig object inside your main loop.
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
const F32 configFileRefreshRate = 5.0; // seconds
|
||||
|
||||
|
||||
class LLLiveFile
|
||||
class LL_COMMON_API LLLiveFile
|
||||
{
|
||||
public:
|
||||
LLLiveFile(const std::string &filename, const F32 refresh_period = 5.f);
|
||||
|
||||
@@ -41,7 +41,7 @@ class LLLogImpl;
|
||||
class LLApp;
|
||||
class LLSD;
|
||||
|
||||
class LLLog
|
||||
class LL_COMMON_API LLLog
|
||||
{
|
||||
public:
|
||||
LLLog(LLApp* app);
|
||||
|
||||
@@ -185,9 +185,6 @@ const S32 OBJECT_OWNER = 6;
|
||||
const S32 OBJECT_GROUP = 7;
|
||||
const S32 OBJECT_CREATOR = 8;
|
||||
|
||||
// llTextBox() magic token string - yes this is a hack. sue me.
|
||||
const std::string TEXTBOX_MAGIC_TOKEN = "!!llTextBox!!";
|
||||
|
||||
// changed() event flags
|
||||
const U32 CHANGED_NONE = 0x0;
|
||||
const U32 CHANGED_INVENTORY = 0x1;
|
||||
|
||||
@@ -83,6 +83,7 @@ documentation and/or software.
|
||||
#include "llmd5.h"
|
||||
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
// how many bytes to grab at a time when checking files
|
||||
const int LLMD5::BLOCK_LEN = 4096;
|
||||
|
||||
@@ -80,7 +80,7 @@ const int MD5RAW_BYTES = 16;
|
||||
const int MD5HEX_STR_SIZE = 33; // char hex[MD5HEX_STR_SIZE]; with null
|
||||
const int MD5HEX_STR_BYTES = 32; // message system fixed size
|
||||
|
||||
class LLMD5 {
|
||||
class LL_COMMON_API LLMD5 {
|
||||
// first, some types:
|
||||
typedef unsigned int uint4; // assumes integer is 4 words long
|
||||
typedef unsigned short int uint2; // assumes short integer is 2 words long
|
||||
|
||||
@@ -283,6 +283,11 @@ LLRefCount::LLRefCount() :
|
||||
{
|
||||
}
|
||||
|
||||
LLRefCount::LLRefCount(const LLRefCount& other)
|
||||
: mRef(0)
|
||||
{
|
||||
}
|
||||
|
||||
LLRefCount::~LLRefCount()
|
||||
{
|
||||
if (mRef != 0)
|
||||
@@ -291,6 +296,12 @@ LLRefCount::~LLRefCount()
|
||||
}
|
||||
}
|
||||
|
||||
LLRefCount& LLRefCount::operator=(const LLRefCount&)
|
||||
{
|
||||
// do nothing, since ref count is specific to *this* reference
|
||||
return *this;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
#if defined(LL_WINDOWS)
|
||||
|
||||
@@ -45,7 +45,7 @@ const U32 LLREFCOUNT_SENTINEL_VALUE = 0xAAAAAAAA;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
class LLMemory
|
||||
class LL_COMMON_API LLMemory
|
||||
{
|
||||
public:
|
||||
static void initClass();
|
||||
@@ -68,12 +68,12 @@ private:
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
class LLRefCount
|
||||
class LL_COMMON_API LLRefCount
|
||||
{
|
||||
protected:
|
||||
LLRefCount(const LLRefCount&); // not implemented
|
||||
LLRefCount(const LLRefCount&);
|
||||
private:
|
||||
LLRefCount&operator=(const LLRefCount&); // not implemented
|
||||
LLRefCount&operator=(const LLRefCount&);
|
||||
|
||||
protected:
|
||||
virtual ~LLRefCount(); // use unref()
|
||||
@@ -467,6 +467,6 @@ private:
|
||||
|
||||
// Return the resident set size of the current process, in bytes.
|
||||
// Return value is zero if not known.
|
||||
U64 getCurrentRSS();
|
||||
LL_COMMON_API U64 getCurrentRSS();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
* be careful to always pass in a valid memory location that exists
|
||||
* for at least as long as this streambuf.
|
||||
*/
|
||||
class LLMemoryStreamBuf : public std::streambuf
|
||||
class LL_COMMON_API LLMemoryStreamBuf : public std::streambuf
|
||||
{
|
||||
public:
|
||||
LLMemoryStreamBuf(const U8* start, S32 length);
|
||||
@@ -74,7 +74,7 @@ protected:
|
||||
* be careful to always pass in a valid memory location that exists
|
||||
* for at least as long as this streambuf.
|
||||
*/
|
||||
class LLMemoryStream : public std::istream
|
||||
class LL_COMMON_API LLMemoryStream : public std::istream
|
||||
{
|
||||
public:
|
||||
LLMemoryStream(const U8* start, S32 length);
|
||||
|
||||
@@ -57,7 +57,7 @@ static void operator delete(void* p) { ll_release(p); }
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
class LLMemType
|
||||
class LL_COMMON_API LLMemType
|
||||
{
|
||||
public:
|
||||
// Also update sTypeDesc in llmemory.cpp
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
class LLMetricsImpl;
|
||||
class LLSD;
|
||||
|
||||
class LLMetrics
|
||||
class LL_COMMON_API LLMetrics
|
||||
{
|
||||
public:
|
||||
LLMetrics();
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#include "stdtypes.h"
|
||||
|
||||
class LLMortician
|
||||
class LL_COMMON_API LLMortician
|
||||
{
|
||||
public:
|
||||
LLMortician() { mIsDead = FALSE; }
|
||||
|
||||
@@ -92,47 +92,62 @@
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// Deal with the differeneces on Windows
|
||||
#if LL_MSVC
|
||||
namespace snprintf_hack
|
||||
{
|
||||
int snprintf(char *str, size_t size, const char *format, ...);
|
||||
}
|
||||
|
||||
// #define snprintf safe_snprintf /* Flawfinder: ignore */
|
||||
using snprintf_hack::snprintf;
|
||||
#endif // LL_MSVC
|
||||
|
||||
// Static linking with apr on windows needs to be declared.
|
||||
#ifdef LL_WINDOWS
|
||||
#ifndef APR_DECLARE_STATIC
|
||||
#define APR_DECLARE_STATIC // For APR on Windows
|
||||
#endif
|
||||
#ifndef APU_DECLARE_STATIC
|
||||
#define APU_DECLARE_STATIC // For APR util on Windows
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(LL_WINDOWS)
|
||||
#define BOOST_REGEX_NO_LIB 1
|
||||
#define CURL_STATICLIB 1
|
||||
#define XML_STATIC
|
||||
#endif // LL_WINDOWS
|
||||
|
||||
|
||||
// Deal with VC6 problems
|
||||
#if LL_MSVC
|
||||
#pragma warning( 3 : 4701 ) // "local variable used without being initialized" Treat this as level 3, not level 4.
|
||||
#pragma warning( 3 : 4702 ) // "unreachable code" Treat this as level 3, not level 4.
|
||||
#pragma warning( 3 : 4189 ) // "local variable initialized but not referenced" Treat this as level 3, not level 4.
|
||||
//#pragma warning( 3 : 4018 ) // "signed/unsigned mismatch" Treat this as level 3, not level 4.
|
||||
#pragma warning( 3 : 4263 ) // 'function' : member function does not override any base class virtual member function
|
||||
#pragma warning( 3 : 4264 ) // "'virtual_function' : no override available for virtual member function from base 'class'; function is hidden"
|
||||
#pragma warning( 3 : 4265 ) // "class has virtual functions, but destructor is not virtual"
|
||||
#pragma warning( disable : 4786 ) // silly MS warning deep inside their <map> include file
|
||||
#pragma warning( 3 : 4266 ) // 'function' : no override available for virtual member function from base 'type'; function is hidden
|
||||
#pragma warning (disable : 4180) // qualifier applied to function type has no meaning; ignored
|
||||
#pragma warning( disable : 4284 ) // silly MS warning deep inside their <map> include file
|
||||
#pragma warning( disable : 4503 ) // 'decorated name length exceeded, name was truncated'. Does not seem to affect compilation.
|
||||
#pragma warning( disable : 4800 ) // 'BOOL' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
#pragma warning( disable : 4996 ) // warning: deprecated
|
||||
|
||||
// Linker optimization with "extern template" generates these warnings
|
||||
#pragma warning( disable : 4231 ) // nonstandard extension used : 'extern' before template explicit instantiation
|
||||
#pragma warning( disable : 4506 ) // no definition for inline function
|
||||
|
||||
// level 4 warnings that we need to disable:
|
||||
#pragma warning (disable : 4100) // unreferenced formal parameter
|
||||
#pragma warning (disable : 4127) // conditional expression is constant (e.g. while(1) )
|
||||
#pragma warning (disable : 4244) // possible loss of data on conversions
|
||||
#pragma warning (disable : 4396) // the inline specifier cannot be used when a friend declaration refers to a specialization of a function template
|
||||
#pragma warning (disable : 4512) // assignment operator could not be generated
|
||||
#pragma warning (disable : 4706) // assignment within conditional (even if((x = y)) )
|
||||
|
||||
#pragma warning (disable : 4251) // member needs to have dll-interface to be used by clients of class
|
||||
#pragma warning (disable : 4275) // non dll-interface class used as base for dll-interface class
|
||||
#endif // LL_MSVC
|
||||
|
||||
#if LL_WINDOWS
|
||||
#define LL_DLLEXPORT __declspec(dllexport)
|
||||
#define LL_DLLIMPORT __declspec(dllimport)
|
||||
#elif LL_LINUX
|
||||
#define LL_DLLEXPORT __attribute__ ((visibility("default")))
|
||||
#define LL_DLLIMPORT
|
||||
#else
|
||||
#define LL_DLLEXPORT
|
||||
#define LL_DLLIMPORT
|
||||
#endif // LL_WINDOWS
|
||||
|
||||
#ifdef llcommon_EXPORTS
|
||||
// Compiling llcommon (shared)
|
||||
#define LL_COMMON_API LL_DLLEXPORT
|
||||
#else // llcommon_EXPORTS
|
||||
// Using llcommon (shared)
|
||||
#define LL_COMMON_API LL_DLLIMPORT
|
||||
#endif // llcommon_EXPORTS
|
||||
|
||||
#endif // not LL_LINDEN_PREPROCESSOR_H
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
It also keeps track of whether the process is still running, and can kill it if required.
|
||||
*/
|
||||
|
||||
class LLProcessLauncher
|
||||
class LL_COMMON_API LLProcessLauncher
|
||||
{
|
||||
LOG_CLASS(LLProcessLauncher);
|
||||
public:
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
#include "linden_common.h"
|
||||
#include "llqueuedthread.h"
|
||||
#include "llstl.h"
|
||||
#include "lltimer.h"
|
||||
|
||||
//============================================================================
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
// Note: ~LLQueuedThread is O(N) N=# of queued threads, assumed to be small
|
||||
// It is assumed that LLQueuedThreads are rarely created/destroyed.
|
||||
|
||||
class LLQueuedThread : public LLThread
|
||||
class LL_COMMON_API LLQueuedThread : public LLThread
|
||||
{
|
||||
//------------------------------------------------------------------------
|
||||
public:
|
||||
@@ -80,7 +80,7 @@ public:
|
||||
//------------------------------------------------------------------------
|
||||
public:
|
||||
|
||||
class QueuedRequest : public LLSimpleHashEntry<handle_t>
|
||||
class LL_COMMON_API QueuedRequest : public LLSimpleHashEntry<handle_t>
|
||||
{
|
||||
friend class LLQueuedThread;
|
||||
|
||||
|
||||
@@ -65,32 +65,32 @@
|
||||
/**
|
||||
*@brief Generate a float from [0, RAND_MAX).
|
||||
*/
|
||||
S32 ll_rand();
|
||||
LL_COMMON_API S32 ll_rand();
|
||||
|
||||
/**
|
||||
*@brief Generate a float from [0, val) or (val, 0].
|
||||
*/
|
||||
S32 ll_rand(S32 val);
|
||||
LL_COMMON_API S32 ll_rand(S32 val);
|
||||
|
||||
/**
|
||||
*@brief Generate a float from [0, 1.0).
|
||||
*/
|
||||
F32 ll_frand();
|
||||
LL_COMMON_API F32 ll_frand();
|
||||
|
||||
/**
|
||||
*@brief Generate a float from [0, val) or (val, 0].
|
||||
*/
|
||||
F32 ll_frand(F32 val);
|
||||
LL_COMMON_API F32 ll_frand(F32 val);
|
||||
|
||||
/**
|
||||
*@brief Generate a double from [0, 1.0).
|
||||
*/
|
||||
F64 ll_drand();
|
||||
LL_COMMON_API F64 ll_drand();
|
||||
|
||||
/**
|
||||
*@brief Generate a double from [0, val) or (val, 0].
|
||||
*/
|
||||
F64 ll_drand(F64 val);
|
||||
LL_COMMON_API F64 ll_drand(F64 val);
|
||||
|
||||
/**
|
||||
* @brief typedefs for good boost lagged fibonacci.
|
||||
|
||||
@@ -38,6 +38,8 @@
|
||||
#include <vector>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include "llpreprocessor.h"
|
||||
|
||||
class LLRunnable;
|
||||
|
||||
/**
|
||||
@@ -48,7 +50,7 @@ class LLRunnable;
|
||||
* which are scheduled to run on a repeating or one time basis.
|
||||
* @see LLRunnable
|
||||
*/
|
||||
class LLRunner
|
||||
class LL_COMMON_API LLRunner
|
||||
{
|
||||
public:
|
||||
/**
|
||||
@@ -149,7 +151,7 @@ protected:
|
||||
* something useful.
|
||||
* @see LLRunner
|
||||
*/
|
||||
class LLRunnable
|
||||
class LL_COMMON_API LLRunnable
|
||||
{
|
||||
public:
|
||||
LLRunnable();
|
||||
|
||||
@@ -162,6 +162,7 @@ namespace
|
||||
|
||||
virtual LLSD::Type type() const { return T; }
|
||||
|
||||
using LLSD::Impl::assign;
|
||||
virtual void assign(LLSD::Impl*& var, DataRef value) {
|
||||
if (shared())
|
||||
{
|
||||
@@ -348,6 +349,10 @@ namespace
|
||||
|
||||
virtual LLSD::Boolean asBoolean() const { return !mData.empty(); }
|
||||
|
||||
using LLSD::Impl::get; // Unhiding get(LLSD::Integer)
|
||||
using LLSD::Impl::erase; // Unhiding erase(LLSD::Integer)
|
||||
using LLSD::Impl::ref; // Unhiding ref(LLSD::Integer)
|
||||
|
||||
virtual bool has(const LLSD::String&) const;
|
||||
virtual LLSD get(const LLSD::String&) const;
|
||||
LLSD& insert(const LLSD::String& k, const LLSD& v);
|
||||
@@ -440,6 +445,11 @@ namespace
|
||||
virtual LLSD::Boolean asBoolean() const { return !mData.empty(); }
|
||||
|
||||
virtual int size() const;
|
||||
|
||||
using LLSD::Impl::get; // Unhiding get(LLSD::Integer)
|
||||
using LLSD::Impl::erase; // Unhiding erase(LLSD::Integer)
|
||||
using LLSD::Impl::ref; // Unhiding ref(LLSD::Integer)
|
||||
|
||||
virtual LLSD get(LLSD::Integer) const;
|
||||
void set(LLSD::Integer, const LLSD&);
|
||||
LLSD& insert(LLSD::Integer, const LLSD&);
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
@nosubgrouping
|
||||
*/
|
||||
|
||||
class LLSD
|
||||
class LL_COMMON_API LLSD
|
||||
{
|
||||
public:
|
||||
LLSD(); ///< initially Undefined
|
||||
@@ -390,7 +390,7 @@ struct llsd_select_string : public std::unary_function<LLSD, LLSD::String>
|
||||
}
|
||||
};
|
||||
|
||||
std::ostream& operator<<(std::ostream& s, const LLSD& llsd);
|
||||
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLSD& llsd);
|
||||
|
||||
/** QUESTIONS & TO DOS
|
||||
- Would Binary be more convenient as usigned char* buffer semantics?
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
* @class LLSDParser
|
||||
* @brief Abstract base class for LLSD parsers.
|
||||
*/
|
||||
class LLSDParser : public LLRefCount
|
||||
class LL_COMMON_API LLSDParser : public LLRefCount
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -220,7 +220,7 @@ protected:
|
||||
* @class LLSDNotationParser
|
||||
* @brief Parser which handles the original notation format for LLSD.
|
||||
*/
|
||||
class LLSDNotationParser : public LLSDParser
|
||||
class LL_COMMON_API LLSDNotationParser : public LLSDParser
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -293,7 +293,7 @@ private:
|
||||
* @class LLSDXMLParser
|
||||
* @brief Parser which handles XML format LLSD.
|
||||
*/
|
||||
class LLSDXMLParser : public LLSDParser
|
||||
class LL_COMMON_API LLSDXMLParser : public LLSDParser
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -341,7 +341,7 @@ private:
|
||||
* @class LLSDBinaryParser
|
||||
* @brief Parser which handles binary formatted LLSD.
|
||||
*/
|
||||
class LLSDBinaryParser : public LLSDParser
|
||||
class LL_COMMON_API LLSDBinaryParser : public LLSDParser
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -406,7 +406,7 @@ private:
|
||||
* @class LLSDFormatter
|
||||
* @brief Abstract base class for formatting LLSD.
|
||||
*/
|
||||
class LLSDFormatter : public LLRefCount
|
||||
class LL_COMMON_API LLSDFormatter : public LLRefCount
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -478,7 +478,7 @@ protected:
|
||||
* @class LLSDNotationFormatter
|
||||
* @brief Formatter which outputs the original notation format for LLSD.
|
||||
*/
|
||||
class LLSDNotationFormatter : public LLSDFormatter
|
||||
class LL_COMMON_API LLSDNotationFormatter : public LLSDFormatter
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -519,7 +519,7 @@ public:
|
||||
* @class LLSDXMLFormatter
|
||||
* @brief Formatter which outputs the LLSD as XML.
|
||||
*/
|
||||
class LLSDXMLFormatter : public LLSDFormatter
|
||||
class LL_COMMON_API LLSDXMLFormatter : public LLSDFormatter
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -587,7 +587,7 @@ protected:
|
||||
* Map: '{' + 4 byte integer size every(key + value) + '}'<br>
|
||||
* map keys are serialized as 'k' + 4 byte integer size + string
|
||||
*/
|
||||
class LLSDBinaryFormatter : public LLSDFormatter
|
||||
class LL_COMMON_API LLSDBinaryFormatter : public LLSDFormatter
|
||||
{
|
||||
protected:
|
||||
/**
|
||||
@@ -676,7 +676,7 @@ typedef LLSDOStreamer<LLSDXMLFormatter> LLSDXMLStreamer;
|
||||
* @class LLSDSerialize
|
||||
* @brief Serializer / deserializer for the various LLSD formats
|
||||
*/
|
||||
class LLSDSerialize
|
||||
class LL_COMMON_API LLSDSerialize
|
||||
{
|
||||
public:
|
||||
enum ELLSD_Serialize
|
||||
|
||||
@@ -562,7 +562,7 @@ void LLSDXMLParser::Impl::parsePart(const char* buf, int len)
|
||||
|
||||
#ifdef XML_PARSER_PERFORMANCE_TESTS
|
||||
|
||||
extern U64 totalTime();
|
||||
extern LL_COMMON_API U64 totalTime();
|
||||
U64 readElementTime = 0;
|
||||
U64 startElementTime = 0;
|
||||
U64 endElementTime = 0;
|
||||
|
||||
@@ -68,28 +68,28 @@ LLSD ll_sd_from_color4(const LLColor4& c);
|
||||
LLColor4 ll_color4_from_sd(const LLSD& sd);
|
||||
|
||||
// U32
|
||||
LLSD ll_sd_from_U32(const U32);
|
||||
U32 ll_U32_from_sd(const LLSD& sd);
|
||||
LL_COMMON_API LLSD ll_sd_from_U32(const U32);
|
||||
LL_COMMON_API U32 ll_U32_from_sd(const LLSD& sd);
|
||||
|
||||
// U64
|
||||
LLSD ll_sd_from_U64(const U64);
|
||||
U64 ll_U64_from_sd(const LLSD& sd);
|
||||
LL_COMMON_API LLSD ll_sd_from_U64(const U64);
|
||||
LL_COMMON_API U64 ll_U64_from_sd(const LLSD& sd);
|
||||
|
||||
// IP Address
|
||||
LLSD ll_sd_from_ipaddr(const U32);
|
||||
U32 ll_ipaddr_from_sd(const LLSD& sd);
|
||||
LL_COMMON_API LLSD ll_sd_from_ipaddr(const U32);
|
||||
LL_COMMON_API U32 ll_ipaddr_from_sd(const LLSD& sd);
|
||||
|
||||
// Binary to string
|
||||
LLSD ll_string_from_binary(const LLSD& sd);
|
||||
LL_COMMON_API LLSD ll_string_from_binary(const LLSD& sd);
|
||||
|
||||
//String to binary
|
||||
LLSD ll_binary_from_string(const LLSD& sd);
|
||||
LL_COMMON_API LLSD ll_binary_from_string(const LLSD& sd);
|
||||
|
||||
// Serializes sd to static buffer and returns pointer, useful for gdb debugging.
|
||||
char* ll_print_sd(const LLSD& sd);
|
||||
LL_COMMON_API char* ll_print_sd(const LLSD& sd);
|
||||
|
||||
// Serializes sd to static buffer and returns pointer, using "pretty printing" mode.
|
||||
char* ll_pretty_print_sd(const LLSD& sd);
|
||||
LL_COMMON_API char* ll_pretty_print_sd(const LLSD& sd);
|
||||
|
||||
//compares the structure of an LLSD to a template LLSD and stores the
|
||||
//"valid" values in a 3rd LLSD. Default values
|
||||
@@ -98,7 +98,7 @@ char* ll_pretty_print_sd(const LLSD& sd);
|
||||
//Returns false if the test is of same type but values differ in type
|
||||
//Otherwise, returns true
|
||||
|
||||
BOOL compare_llsd_with_template(
|
||||
LL_COMMON_API BOOL compare_llsd_with_template(
|
||||
const LLSD& llsd_to_test,
|
||||
const LLSD& template_llsd,
|
||||
LLSD& resultant_llsd);
|
||||
|
||||
@@ -34,46 +34,46 @@
|
||||
#define LL_LLSECONDLIFEURLS_H
|
||||
|
||||
// Account registration web page
|
||||
extern const std::string CREATE_ACCOUNT_URL;
|
||||
LL_COMMON_API extern const std::string CREATE_ACCOUNT_URL;
|
||||
|
||||
// Manage Account
|
||||
extern const std::string MANAGE_ACCOUNT;
|
||||
LL_COMMON_API extern const std::string MANAGE_ACCOUNT;
|
||||
|
||||
extern const std::string AUCTION_URL;
|
||||
LL_COMMON_API extern const std::string AUCTION_URL;
|
||||
|
||||
extern const std::string EVENTS_URL;
|
||||
LL_COMMON_API extern const std::string EVENTS_URL;
|
||||
|
||||
// Tier up to a new land level.
|
||||
extern const std::string TIER_UP_URL;
|
||||
LL_COMMON_API extern const std::string TIER_UP_URL;
|
||||
|
||||
// Tier up to a new land level.
|
||||
extern const std::string LAND_URL;
|
||||
LL_COMMON_API extern const std::string LAND_URL;
|
||||
|
||||
// Upgrade from basic membership to premium membership
|
||||
extern const std::string UPGRADE_TO_PREMIUM_URL;
|
||||
LL_COMMON_API extern const std::string UPGRADE_TO_PREMIUM_URL;
|
||||
|
||||
// How to get DirectX 9
|
||||
extern const std::string DIRECTX_9_URL;
|
||||
LL_COMMON_API extern const std::string DIRECTX_9_URL;
|
||||
|
||||
// Out of date VIA chipset
|
||||
extern const std::string VIA_URL;
|
||||
LL_COMMON_API extern const std::string VIA_URL;
|
||||
|
||||
// Support URL
|
||||
extern const std::string SUPPORT_URL;
|
||||
LL_COMMON_API extern const std::string SUPPORT_URL;
|
||||
|
||||
// Linden Blogs page
|
||||
extern const std::string BLOGS_URL;
|
||||
LL_COMMON_API extern const std::string BLOGS_URL;
|
||||
|
||||
// Currency page
|
||||
extern const std::string BUY_CURRENCY_URL;
|
||||
LL_COMMON_API extern const std::string BUY_CURRENCY_URL;
|
||||
|
||||
// LSL script wiki
|
||||
extern const std::string LSL_DOC_URL;
|
||||
LL_COMMON_API extern const std::string LSL_DOC_URL;
|
||||
|
||||
// SL KnowledgeBase page
|
||||
extern const std::string SL_KB_URL;
|
||||
LL_COMMON_API extern const std::string SL_KB_URL;
|
||||
|
||||
// Release Notes Redirect URL for Server and Viewer
|
||||
extern const std::string RELEASE_NOTES_BASE_URL;
|
||||
LL_COMMON_API extern const std::string RELEASE_NOTES_BASE_URL;
|
||||
|
||||
#endif
|
||||
|
||||
@@ -64,7 +64,7 @@ public:
|
||||
};
|
||||
|
||||
template <typename HASH_KEY_TYPE, int TABLE_SIZE>
|
||||
class LLSimpleHash
|
||||
class LL_COMMON_API LLSimpleHash
|
||||
{
|
||||
public:
|
||||
LLSimpleHash()
|
||||
|
||||
@@ -52,7 +52,7 @@ class LLSD;
|
||||
// amounts of time with very low memory cost.
|
||||
//
|
||||
|
||||
class LLStatAccum
|
||||
class LL_COMMON_API LLStatAccum
|
||||
{
|
||||
protected:
|
||||
LLStatAccum(bool use_frame_timer);
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
F64 mLastSampleValue;
|
||||
};
|
||||
|
||||
class LLStatMeasure : public LLStatAccum
|
||||
class LL_COMMON_API LLStatMeasure : public LLStatAccum
|
||||
// gathers statistics about things that are measured
|
||||
// ex.: tempature, time dilation
|
||||
{
|
||||
@@ -124,7 +124,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class LLStatRate : public LLStatAccum
|
||||
class LL_COMMON_API LLStatRate : public LLStatAccum
|
||||
// gathers statistics about things that can be counted over time
|
||||
// ex.: LSL instructions executed, messages sent, simulator frames completed
|
||||
// renders it in terms of rate of thing per second
|
||||
@@ -140,7 +140,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class LLStatTime : public LLStatAccum
|
||||
class LL_COMMON_API LLStatTime : public LLStatAccum
|
||||
// gathers statistics about time spent in a block of code
|
||||
// measure average duration per second in the block
|
||||
{
|
||||
@@ -171,7 +171,7 @@ private:
|
||||
|
||||
|
||||
// Use this class on the stack to record statistics about an area of code
|
||||
class LLPerfBlock
|
||||
class LL_COMMON_API LLPerfBlock
|
||||
{
|
||||
public:
|
||||
struct StatEntry
|
||||
@@ -213,7 +213,7 @@ private:
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class LLPerfStats
|
||||
class LL_COMMON_API LLPerfStats
|
||||
{
|
||||
public:
|
||||
LLPerfStats(const std::string& process_name = "unknown", S32 process_pid = 0);
|
||||
@@ -249,7 +249,7 @@ private:
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
class LLStat
|
||||
class LL_COMMON_API LLStat
|
||||
{
|
||||
public:
|
||||
LLStat(const U32 num_bins = 32, BOOL use_frame_timer = FALSE);
|
||||
|
||||
@@ -39,23 +39,23 @@
|
||||
// unless specifed otherwise these all return input_stream.good()
|
||||
|
||||
// skips spaces and tabs
|
||||
bool skip_whitespace(std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_whitespace(std::istream& input_stream);
|
||||
|
||||
// skips whitespace and newlines
|
||||
bool skip_emptyspace(std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_emptyspace(std::istream& input_stream);
|
||||
|
||||
// skips emptyspace and lines that start with a #
|
||||
bool skip_comments_and_emptyspace(std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_comments_and_emptyspace(std::istream& input_stream);
|
||||
|
||||
// skips to character after next newline
|
||||
bool skip_line(std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_line(std::istream& input_stream);
|
||||
|
||||
// skips to beginning of next non-emptyspace
|
||||
bool skip_to_next_word(std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_to_next_word(std::istream& input_stream);
|
||||
|
||||
// skips to character after the end of next keyword
|
||||
// a 'keyword' is defined as the first word on a line
|
||||
bool skip_to_end_of_next_keyword(const char* keyword, std::istream& input_stream);
|
||||
LL_COMMON_API bool skip_to_end_of_next_keyword(const char* keyword, std::istream& input_stream);
|
||||
|
||||
// skip_to_start_of_next_keyword() is disabled -- might tickle corruption bug
|
||||
// in windows iostream
|
||||
@@ -65,14 +65,14 @@ bool skip_to_end_of_next_keyword(const char* keyword, std::istream& input_stream
|
||||
|
||||
// characters are pulled out of input_stream and appended to output_string
|
||||
// returns result of input_stream.good() after characters are pulled
|
||||
bool get_word(std::string& output_string, std::istream& input_stream);
|
||||
bool get_line(std::string& output_string, std::istream& input_stream);
|
||||
LL_COMMON_API bool get_word(std::string& output_string, std::istream& input_stream);
|
||||
LL_COMMON_API bool get_line(std::string& output_string, std::istream& input_stream);
|
||||
|
||||
// characters are pulled out of input_stream (up to a max of 'n')
|
||||
// and appended to output_string
|
||||
// returns result of input_stream.good() after characters are pulled
|
||||
bool get_word(std::string& output_string, std::istream& input_stream, int n);
|
||||
bool get_line(std::string& output_string, std::istream& input_stream, int n);
|
||||
LL_COMMON_API bool get_word(std::string& output_string, std::istream& input_stream, int n);
|
||||
LL_COMMON_API bool get_line(std::string& output_string, std::istream& input_stream, int n);
|
||||
|
||||
// unget_line() is disabled -- might tickle corruption bug in windows iostream
|
||||
//// backs up the input_stream by line_size + 1 characters
|
||||
@@ -82,28 +82,28 @@ bool get_line(std::string& output_string, std::istream& input_stream, int n);
|
||||
|
||||
// removes the last char in 'line' if it matches 'c'
|
||||
// returns true if removed last char
|
||||
bool remove_last_char(char c, std::string& line);
|
||||
LL_COMMON_API bool remove_last_char(char c, std::string& line);
|
||||
|
||||
// replaces escaped characters with the correct characters from left to right
|
||||
// "\\" ---> '\\'
|
||||
// "\n" ---> '\n'
|
||||
void unescape_string(std::string& line);
|
||||
LL_COMMON_API void unescape_string(std::string& line);
|
||||
|
||||
// replaces unescaped characters with expanded equivalents from left to right
|
||||
// '\\' ---> "\\"
|
||||
// '\n' ---> "\n"
|
||||
void escape_string(std::string& line);
|
||||
LL_COMMON_API void escape_string(std::string& line);
|
||||
|
||||
// replaces each '\n' character with ' '
|
||||
void replace_newlines_with_whitespace(std::string& line);
|
||||
LL_COMMON_API void replace_newlines_with_whitespace(std::string& line);
|
||||
|
||||
// erases any double-quote characters in line
|
||||
void remove_double_quotes(std::string& line);
|
||||
LL_COMMON_API void remove_double_quotes(std::string& line);
|
||||
|
||||
// the 'keyword' is defined as the first word on a line
|
||||
// the 'value' is everything after the keyword on the same line
|
||||
// starting at the first non-whitespace and ending right before the newline
|
||||
void get_keyword_and_value(std::string& keyword,
|
||||
LL_COMMON_API void get_keyword_and_value(std::string& keyword,
|
||||
std::string& value,
|
||||
const std::string& line);
|
||||
|
||||
@@ -111,13 +111,13 @@ void get_keyword_and_value(std::string& keyword,
|
||||
// read anymore or until we hit the count. Some istream
|
||||
// implimentations have a max that they will read.
|
||||
// Returns the number of bytes read.
|
||||
std::streamsize fullread(
|
||||
LL_COMMON_API std::streamsize fullread(
|
||||
std::istream& istr,
|
||||
char* buf,
|
||||
std::streamsize requested);
|
||||
|
||||
|
||||
std::istream& operator>>(std::istream& str, const char *tocheck);
|
||||
LL_COMMON_API std::istream& operator>>(std::istream& str, const char *tocheck);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <cstdio>
|
||||
#include <algorithm>
|
||||
|
||||
#if LL_LINUX || LL_SOLARIS
|
||||
#include <wctype.h>
|
||||
@@ -144,7 +145,7 @@ struct char_traits<U16>
|
||||
};
|
||||
#endif
|
||||
|
||||
class LLStringOps
|
||||
class LL_COMMON_API LLStringOps
|
||||
{
|
||||
public:
|
||||
static char toUpper(char elem) { return toupper((unsigned char)elem); }
|
||||
@@ -181,8 +182,8 @@ public:
|
||||
* @brief Return a string constructed from in without crashing if the
|
||||
* pointer is NULL.
|
||||
*/
|
||||
std::string ll_safe_string(const char* in);
|
||||
std::string ll_safe_string(const char* in, S32 maxlen);
|
||||
std::string LL_COMMON_API ll_safe_string(const char* in);
|
||||
std::string LL_COMMON_API ll_safe_string(const char* in, S32 maxlen);
|
||||
|
||||
|
||||
// Allowing assignments from non-strings into format_map_t is apparently
|
||||
@@ -352,7 +353,7 @@ inline std::string chop_tail_copy(
|
||||
* @brief This translates a nybble stored as a hex value from 0-f back
|
||||
* to a nybble in the low order bits of the return byte.
|
||||
*/
|
||||
U8 hex_as_nybble(char hex);
|
||||
LL_COMMON_API U8 hex_as_nybble(char hex);
|
||||
|
||||
/**
|
||||
* @brief read the contents of a file into a string.
|
||||
@@ -363,7 +364,7 @@ U8 hex_as_nybble(char hex);
|
||||
* @param filename The full name of the file to read.
|
||||
* @return Returns true on success. If false, str is unmodified.
|
||||
*/
|
||||
bool _read_file_into_string(std::string& str, const std::string& filename);
|
||||
LL_COMMON_API bool _read_file_into_string(std::string& str, const std::string& filename);
|
||||
|
||||
/**
|
||||
* Unicode support
|
||||
@@ -372,52 +373,52 @@ bool _read_file_into_string(std::string& str, const std::string& filename);
|
||||
// Make the incoming string a utf8 string. Replaces any unknown glyph
|
||||
// with the UNKOWN_CHARACTER. Once any unknown glph is found, the rest
|
||||
// of the data may not be recovered.
|
||||
std::string rawstr_to_utf8(const std::string& raw);
|
||||
LL_COMMON_API std::string rawstr_to_utf8(const std::string& raw);
|
||||
|
||||
//
|
||||
// We should never use UTF16 except when communicating with Win32!
|
||||
//
|
||||
typedef std::basic_string<U16> llutf16string;
|
||||
|
||||
LLWString utf16str_to_wstring(const llutf16string &utf16str, S32 len);
|
||||
LLWString utf16str_to_wstring(const llutf16string &utf16str);
|
||||
LL_COMMON_API LLWString utf16str_to_wstring(const llutf16string &utf16str, S32 len);
|
||||
LL_COMMON_API LLWString utf16str_to_wstring(const llutf16string &utf16str);
|
||||
|
||||
llutf16string wstring_to_utf16str(const LLWString &utf32str, S32 len);
|
||||
llutf16string wstring_to_utf16str(const LLWString &utf32str);
|
||||
LL_COMMON_API llutf16string wstring_to_utf16str(const LLWString &utf32str, S32 len);
|
||||
LL_COMMON_API llutf16string wstring_to_utf16str(const LLWString &utf32str);
|
||||
|
||||
llutf16string utf8str_to_utf16str ( const std::string& utf8str, S32 len);
|
||||
llutf16string utf8str_to_utf16str ( const std::string& utf8str );
|
||||
LL_COMMON_API llutf16string utf8str_to_utf16str ( const std::string& utf8str, S32 len);
|
||||
LL_COMMON_API llutf16string utf8str_to_utf16str ( const std::string& utf8str );
|
||||
|
||||
LLWString utf8str_to_wstring(const std::string &utf8str, S32 len);
|
||||
LLWString utf8str_to_wstring(const std::string &utf8str);
|
||||
LL_COMMON_API LLWString utf8str_to_wstring(const std::string &utf8str, S32 len);
|
||||
LL_COMMON_API LLWString utf8str_to_wstring(const std::string &utf8str);
|
||||
// Same function, better name. JC
|
||||
inline LLWString utf8string_to_wstring(const std::string& utf8_string) { return utf8str_to_wstring(utf8_string); }
|
||||
|
||||
//
|
||||
S32 wchar_to_utf8chars(llwchar inchar, char* outchars);
|
||||
LL_COMMON_API S32 wchar_to_utf8chars(llwchar inchar, char* outchars);
|
||||
|
||||
std::string wstring_to_utf8str(const LLWString &utf32str, S32 len);
|
||||
std::string wstring_to_utf8str(const LLWString &utf32str);
|
||||
LL_COMMON_API std::string wstring_to_utf8str(const LLWString &utf32str, S32 len);
|
||||
LL_COMMON_API std::string wstring_to_utf8str(const LLWString &utf32str);
|
||||
|
||||
std::string utf16str_to_utf8str(const llutf16string &utf16str, S32 len);
|
||||
std::string utf16str_to_utf8str(const llutf16string &utf16str);
|
||||
LL_COMMON_API std::string utf16str_to_utf8str(const llutf16string &utf16str, S32 len);
|
||||
LL_COMMON_API std::string utf16str_to_utf8str(const llutf16string &utf16str);
|
||||
|
||||
// Length of this UTF32 string in bytes when transformed to UTF8
|
||||
S32 wstring_utf8_length(const LLWString& wstr);
|
||||
LL_COMMON_API S32 wstring_utf8_length(const LLWString& wstr);
|
||||
|
||||
// Length in bytes of this wide char in a UTF8 string
|
||||
S32 wchar_utf8_length(const llwchar wc);
|
||||
LL_COMMON_API S32 wchar_utf8_length(const llwchar wc);
|
||||
|
||||
std::string utf8str_tolower(const std::string& utf8str);
|
||||
LL_COMMON_API std::string utf8str_tolower(const std::string& utf8str);
|
||||
|
||||
// Length in llwchar (UTF-32) of the first len units (16 bits) of the given UTF-16 string.
|
||||
S32 utf16str_wstring_length(const llutf16string &utf16str, S32 len);
|
||||
LL_COMMON_API S32 utf16str_wstring_length(const llutf16string &utf16str, S32 len);
|
||||
|
||||
// Length in utf16string (UTF-16) of wlen wchars beginning at woffset.
|
||||
S32 wstring_utf16_length(const LLWString & wstr, S32 woffset, S32 wlen);
|
||||
LL_COMMON_API S32 wstring_utf16_length(const LLWString & wstr, S32 woffset, S32 wlen);
|
||||
|
||||
// Length in wstring (i.e., llwchar count) of a part of a wstring specified by utf16 length (i.e., utf16 units.)
|
||||
S32 wstring_wstring_length_from_utf16_length(const LLWString & wstr, S32 woffset, S32 utf16_length, BOOL *unaligned = NULL);
|
||||
LL_COMMON_API S32 wstring_wstring_length_from_utf16_length(const LLWString & wstr, S32 woffset, S32 utf16_length, BOOL *unaligned = NULL);
|
||||
|
||||
/**
|
||||
* @brief Properly truncate a utf8 string to a maximum byte count.
|
||||
@@ -429,11 +430,11 @@ S32 wstring_wstring_length_from_utf16_length(const LLWString & wstr, S32 woffset
|
||||
* @param max_len The maximum number of bytes in the return value.
|
||||
* @return Returns a valid utf8 string with byte count <= max_len.
|
||||
*/
|
||||
std::string utf8str_truncate(const std::string& utf8str, const S32 max_len);
|
||||
LL_COMMON_API std::string utf8str_truncate(const std::string& utf8str, const S32 max_len);
|
||||
|
||||
std::string utf8str_trim(const std::string& utf8str);
|
||||
LL_COMMON_API std::string utf8str_trim(const std::string& utf8str);
|
||||
|
||||
S32 utf8str_compare_insensitive(
|
||||
LL_COMMON_API S32 utf8str_compare_insensitive(
|
||||
const std::string& lhs,
|
||||
const std::string& rhs);
|
||||
|
||||
@@ -444,17 +445,17 @@ S32 utf8str_compare_insensitive(
|
||||
* @param target_char The wchar to be replaced
|
||||
* @param replace_char The wchar which is written on replace
|
||||
*/
|
||||
std::string utf8str_substChar(
|
||||
LL_COMMON_API std::string utf8str_substChar(
|
||||
const std::string& utf8str,
|
||||
const llwchar target_char,
|
||||
const llwchar replace_char);
|
||||
|
||||
std::string utf8str_makeASCII(const std::string& utf8str);
|
||||
LL_COMMON_API std::string utf8str_makeASCII(const std::string& utf8str);
|
||||
|
||||
// Hack - used for evil notecards.
|
||||
std::string mbcsstring_makeASCII(const std::string& str);
|
||||
LL_COMMON_API std::string mbcsstring_makeASCII(const std::string& str);
|
||||
|
||||
std::string utf8str_removeCRLF(const std::string& utf8str);
|
||||
LL_COMMON_API std::string utf8str_removeCRLF(const std::string& utf8str);
|
||||
|
||||
|
||||
#if LL_WINDOWS
|
||||
@@ -479,14 +480,21 @@ std::string utf8str_removeCRLF(const std::string& utf8str);
|
||||
* formatted string.
|
||||
*
|
||||
*/
|
||||
int safe_snprintf(char* str, size_t size, const char* format, ...);
|
||||
|
||||
// Deal with the differeneces on Windows
|
||||
namespace snprintf_hack
|
||||
{
|
||||
LL_COMMON_API int snprintf(char *str, size_t size, const char *format, ...);
|
||||
}
|
||||
|
||||
using snprintf_hack::snprintf;
|
||||
|
||||
/**
|
||||
* @brief Convert a wide string to std::string
|
||||
*
|
||||
* This replaces the unsafe W2A macro from ATL.
|
||||
*/
|
||||
std::string ll_convert_wide_to_string(const wchar_t* in);
|
||||
LL_COMMON_API std::string ll_convert_wide_to_string(const wchar_t* in);
|
||||
|
||||
//@}
|
||||
#endif // LL_WINDOWS
|
||||
@@ -509,7 +517,7 @@ namespace LLStringFn
|
||||
* with zero non-printable characters.
|
||||
* @param The replacement character. use LL_UNKNOWN_CHAR if unsure.
|
||||
*/
|
||||
void replace_nonprintable_in_ascii(
|
||||
LL_COMMON_API void replace_nonprintable_in_ascii(
|
||||
std::basic_string<char>& string,
|
||||
char replacement);
|
||||
|
||||
@@ -523,7 +531,7 @@ namespace LLStringFn
|
||||
* with zero non-printable characters and zero pipe characters.
|
||||
* @param The replacement character. use LL_UNKNOWN_CHAR if unsure.
|
||||
*/
|
||||
void replace_nonprintable_and_pipe_in_ascii(std::basic_string<char>& str,
|
||||
LL_COMMON_API void replace_nonprintable_and_pipe_in_ascii(std::basic_string<char>& str,
|
||||
char replacement);
|
||||
|
||||
|
||||
@@ -532,7 +540,7 @@ namespace LLStringFn
|
||||
* Returns a copy of the string with those characters removed.
|
||||
* Works with US ASCII and UTF-8 encoded strings. JC
|
||||
*/
|
||||
std::string strip_invalid_xml(const std::string& input);
|
||||
LL_COMMON_API std::string strip_invalid_xml(const std::string& input);
|
||||
|
||||
|
||||
/**
|
||||
@@ -543,7 +551,7 @@ namespace LLStringFn
|
||||
* with zero non-printable characters.
|
||||
* @param The replacement character. use LL_UNKNOWN_CHAR if unsure.
|
||||
*/
|
||||
void replace_ascii_controlchars(
|
||||
LL_COMMON_API void replace_ascii_controlchars(
|
||||
std::basic_string<char>& string,
|
||||
char replacement);
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
|
||||
const U32 MAX_STRINGS_LENGTH = 256;
|
||||
|
||||
class LLStringTableEntry
|
||||
class LL_COMMON_API LLStringTableEntry
|
||||
{
|
||||
public:
|
||||
LLStringTableEntry(const char *str)
|
||||
@@ -83,7 +83,7 @@ public:
|
||||
S32 mCount;
|
||||
};
|
||||
|
||||
class LLStringTable
|
||||
class LL_COMMON_API LLStringTable
|
||||
{
|
||||
public:
|
||||
LLStringTable(int tablesize);
|
||||
@@ -117,7 +117,7 @@ public:
|
||||
#endif
|
||||
};
|
||||
|
||||
extern LLStringTable gStringTable;
|
||||
extern LL_COMMON_API LLStringTable gStringTable;
|
||||
|
||||
//============================================================================
|
||||
|
||||
@@ -127,7 +127,7 @@ extern LLStringTable gStringTable;
|
||||
|
||||
typedef const std::string* LLStdStringHandle;
|
||||
|
||||
class LLStdStringTable
|
||||
class LL_COMMON_API LLStdStringTable
|
||||
{
|
||||
public:
|
||||
LLStdStringTable(S32 tablesize = 0)
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
#include <iosfwd>
|
||||
#include <string>
|
||||
|
||||
class LLOSInfo
|
||||
class LL_COMMON_API LLOSInfo
|
||||
{
|
||||
public:
|
||||
LLOSInfo();
|
||||
@@ -70,7 +70,7 @@ private:
|
||||
};
|
||||
|
||||
|
||||
class LLCPUInfo
|
||||
class LL_COMMON_API LLCPUInfo
|
||||
{
|
||||
public:
|
||||
LLCPUInfo();
|
||||
@@ -99,7 +99,7 @@ private:
|
||||
//
|
||||
// CLASS LLMemoryInfo
|
||||
|
||||
class LLMemoryInfo
|
||||
class LL_COMMON_API LLMemoryInfo
|
||||
|
||||
/*! @brief Class to query the memory subsystem
|
||||
|
||||
@@ -123,15 +123,15 @@ public:
|
||||
};
|
||||
|
||||
|
||||
std::ostream& operator<<(std::ostream& s, const LLOSInfo& info);
|
||||
std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info);
|
||||
std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info);
|
||||
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info);
|
||||
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info);
|
||||
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info);
|
||||
|
||||
// gunzip srcfile into dstfile. Returns FALSE on error.
|
||||
BOOL gunzip_file(const std::string& srcfile, const std::string& dstfile);
|
||||
LL_COMMON_API BOOL gunzip_file(const std::string& srcfile, const std::string& dstfile);
|
||||
// gzip srcfile into dstfile. Returns FALSE on error.
|
||||
BOOL gzip_file(const std::string& srcfile, const std::string& dstfile);
|
||||
LL_COMMON_API BOOL gzip_file(const std::string& srcfile, const std::string& dstfile);
|
||||
|
||||
extern LLCPUInfo gSysCPU;
|
||||
LL_COMMON_API extern LLCPUInfo gSysCPU;
|
||||
|
||||
#endif // LL_LLSYS_H
|
||||
|
||||
@@ -43,7 +43,7 @@ class LLThread;
|
||||
class LLMutex;
|
||||
class LLCondition;
|
||||
|
||||
class LLThread
|
||||
class LL_COMMON_API LLThread
|
||||
{
|
||||
public:
|
||||
typedef enum e_thread_status
|
||||
@@ -125,7 +125,7 @@ protected:
|
||||
|
||||
//============================================================================
|
||||
|
||||
class LLMutex
|
||||
class LL_COMMON_API LLMutex
|
||||
{
|
||||
public:
|
||||
LLMutex(apr_pool_t *apr_poolp); // NULL pool constructs a new pool for the mutex
|
||||
@@ -145,7 +145,7 @@ protected:
|
||||
};
|
||||
|
||||
// Actually a condition/mutex pair (since each condition needs to be associated with a mutex).
|
||||
class LLCondition : public LLMutex
|
||||
class LL_COMMON_API LLCondition : public LLMutex
|
||||
{
|
||||
public:
|
||||
LLCondition(apr_pool_t *apr_poolp); // Defaults to global pool, could use the thread pool as well.
|
||||
@@ -159,7 +159,7 @@ protected:
|
||||
apr_thread_cond_t *mAPRCondp;
|
||||
};
|
||||
|
||||
class LLMutexLock
|
||||
class LL_COMMON_API LLMutexLock
|
||||
{
|
||||
public:
|
||||
LLMutexLock(LLMutex* mutex)
|
||||
@@ -192,7 +192,7 @@ void LLThread::unlockData()
|
||||
|
||||
// see llmemory.h for LLPointer<> definition
|
||||
|
||||
class LLThreadSafeRefCount
|
||||
class LL_COMMON_API LLThreadSafeRefCount
|
||||
{
|
||||
public:
|
||||
static void initThreadSafeRefCount(); // creates sMutex
|
||||
@@ -244,7 +244,7 @@ private:
|
||||
|
||||
// Simple responder for self destructing callbacks
|
||||
// Pure virtual class
|
||||
class LLResponder : public LLThreadSafeRefCount
|
||||
class LL_COMMON_API LLResponder : public LLThreadSafeRefCount
|
||||
{
|
||||
protected:
|
||||
virtual ~LLResponder();
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
#include "linden_common.h"
|
||||
|
||||
#include "lltimer.h"
|
||||
#include "timing.h" // totalTime prototype.
|
||||
|
||||
#include "u64.h"
|
||||
|
||||
@@ -51,9 +52,6 @@
|
||||
//
|
||||
// Locally used constants
|
||||
//
|
||||
const U32 SEC_PER_DAY = 86400;
|
||||
const F64 SEC_TO_MICROSEC = 1000000.f;
|
||||
const U64 SEC_TO_MICROSEC_U64 = 1000000;
|
||||
const F64 USEC_TO_SEC_F64 = 0.000001;
|
||||
|
||||
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
#include <limits.h>
|
||||
|
||||
#include "stdtypes.h"
|
||||
#include "llpreprocessor.h"
|
||||
#include "lldate.h"
|
||||
|
||||
#include <string>
|
||||
@@ -54,7 +55,7 @@ const U32 USEC_PER_HOUR = USEC_PER_MIN * MIN_PER_HOUR;
|
||||
const U32 SEC_PER_HOUR = SEC_PER_MIN * MIN_PER_HOUR;
|
||||
const F64 SEC_PER_USEC = 1.0 / (F64) USEC_PER_SEC;
|
||||
|
||||
class LLTimer
|
||||
class LL_COMMON_API LLTimer
|
||||
{
|
||||
public:
|
||||
static LLTimer *sTimer; // global timer
|
||||
@@ -113,17 +114,17 @@ public:
|
||||
//
|
||||
// Various functions for initializing/accessing clock and timing stuff. Don't use these without REALLY knowing how they work.
|
||||
//
|
||||
U64 get_clock_count();
|
||||
F64 calc_clock_frequency(U32 msecs);
|
||||
void update_clock_frequencies();
|
||||
LL_COMMON_API U64 get_clock_count();
|
||||
LL_COMMON_API F64 calc_clock_frequency(U32 msecs);
|
||||
LL_COMMON_API void update_clock_frequencies();
|
||||
|
||||
// Sleep for milliseconds
|
||||
void ms_sleep(U32 ms);
|
||||
U32 micro_sleep(U64 us, U32 max_yields = 0xFFFFFFFF);
|
||||
LL_COMMON_API void ms_sleep(U32 ms);
|
||||
LL_COMMON_API U32 micro_sleep(U64 us, U32 max_yields = 0xFFFFFFFF);
|
||||
|
||||
// Returns the correct UTC time in seconds, like time(NULL).
|
||||
// Useful on the viewer, which may have its local clock set wrong.
|
||||
time_t time_corrected();
|
||||
LL_COMMON_API time_t time_corrected();
|
||||
|
||||
static inline time_t time_min()
|
||||
{
|
||||
@@ -154,26 +155,26 @@ static inline time_t time_max()
|
||||
}
|
||||
|
||||
// Correction factor used by time_corrected() above.
|
||||
extern S32 gUTCOffset;
|
||||
LL_COMMON_API extern S32 gUTCOffset;
|
||||
|
||||
// Is the current computer (in its current time zone)
|
||||
// observing daylight savings time?
|
||||
BOOL is_daylight_savings();
|
||||
LL_COMMON_API BOOL is_daylight_savings();
|
||||
|
||||
// Converts internal "struct tm" time buffer to Pacific Standard/Daylight Time
|
||||
// Usage:
|
||||
// S32 utc_time;
|
||||
// utc_time = time_corrected();
|
||||
// struct tm* internal_time = utc_to_pacific_time(utc_time, gDaylight);
|
||||
struct tm* utc_to_pacific_time(time_t utc_time, BOOL pacific_daylight_time);
|
||||
LL_COMMON_API struct tm* utc_to_pacific_time(time_t utc_time, BOOL pacific_daylight_time);
|
||||
|
||||
void microsecondsToTimecodeString(U64 current_time, std::string& tcstring);
|
||||
void secondsToTimecodeString(F32 current_time, std::string& tcstring);
|
||||
void timeToFormattedString(time_t time, std::string format, std::string ×tr);
|
||||
void timeStructToFormattedString(struct tm * time, std::string format, std::string ×tr);
|
||||
LL_COMMON_API void microsecondsToTimecodeString(U64 current_time, std::string& tcstring);
|
||||
LL_COMMON_API void secondsToTimecodeString(F32 current_time, std::string& tcstring);
|
||||
LL_COMMON_API void timeToFormattedString(time_t time, std::string format, std::string ×tr);
|
||||
LL_COMMON_API void timeStructToFormattedString(struct tm * time, std::string format, std::string ×tr);
|
||||
|
||||
// class for scheduling a function to be called at a given frequency (approximate, inprecise)
|
||||
class LLEventTimer
|
||||
class LL_COMMON_API LLEventTimer
|
||||
{
|
||||
public:
|
||||
LLEventTimer(F32 period); // period is the amount of time between each call to tick() in seconds
|
||||
|
||||
@@ -47,7 +47,7 @@ class LLApp;
|
||||
* See: http://www.ietf.org/rfc/rfc3986.txt
|
||||
*
|
||||
*/
|
||||
class LLURI
|
||||
class LL_COMMON_API LLURI
|
||||
{
|
||||
public:
|
||||
LLURI();
|
||||
@@ -189,6 +189,6 @@ private:
|
||||
};
|
||||
|
||||
// this operator required for tut
|
||||
bool operator!=(const LLURI& first, const LLURI& second);
|
||||
LL_COMMON_API bool operator!=(const LLURI& first, const LLURI& second);
|
||||
|
||||
#endif // LL_LLURI_H
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
#include <iostream>
|
||||
#include <set>
|
||||
#include "stdtypes.h"
|
||||
#include "llpreprocessor.h"
|
||||
|
||||
const S32 UUID_BYTES = 16;
|
||||
const S32 UUID_WORDS = 4;
|
||||
@@ -47,7 +48,7 @@ struct uuid_time_t {
|
||||
U32 low;
|
||||
};
|
||||
|
||||
class LLUUID
|
||||
class LL_COMMON_API LLUUID
|
||||
{
|
||||
public:
|
||||
//
|
||||
@@ -106,8 +107,8 @@ public:
|
||||
LLUUID combine(const LLUUID& other) const;
|
||||
void combine(const LLUUID& other, LLUUID& result) const;
|
||||
|
||||
friend std::ostream& operator<<(std::ostream& s, const LLUUID &uuid);
|
||||
friend std::istream& operator>>(std::istream& s, LLUUID &uuid);
|
||||
friend LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLUUID &uuid);
|
||||
friend LL_COMMON_API std::istream& operator>>(std::istream& s, LLUUID &uuid);
|
||||
|
||||
void toString(char *out) const; // Does not allocate memory, needs 36 characters (including \0)
|
||||
void toString(std::string& out) const;
|
||||
@@ -323,7 +324,7 @@ typedef std::set<LLUUID, lluuid_less> uuid_list_t;
|
||||
*/
|
||||
typedef LLUUID LLAssetID;
|
||||
|
||||
class LLTransactionID : public LLUUID
|
||||
class LL_COMMON_API LLTransactionID : public LLUUID
|
||||
{
|
||||
public:
|
||||
LLTransactionID() : LLUUID() { }
|
||||
|
||||
@@ -50,7 +50,7 @@ class LLWorkerClass;
|
||||
// Note: ~LLWorkerThread is O(N) N=# of worker threads, assumed to be small
|
||||
// It is assumed that LLWorkerThreads are rarely created/destroyed.
|
||||
|
||||
class LLWorkerThread : public LLQueuedThread
|
||||
class LL_COMMON_API LLWorkerThread : public LLQueuedThread
|
||||
{
|
||||
friend class LLWorkerClass;
|
||||
public:
|
||||
@@ -117,7 +117,7 @@ private:
|
||||
// Only one background task can be active at a time (per instance).
|
||||
// i.e. don't call addWork() if haveWork() returns true
|
||||
|
||||
class LLWorkerClass
|
||||
class LL_COMMON_API LLWorkerClass
|
||||
{
|
||||
friend class LLWorkerThread;
|
||||
friend class LLWorkerThread::WorkRequest;
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
class LLReflective;
|
||||
class LLMetaProperty;
|
||||
class LLMetaMethod;
|
||||
class LLMetaClass
|
||||
class LL_COMMON_API LLMetaClass
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
|
||||
class LLMetaClass;
|
||||
class LLReflective;
|
||||
class LLMetaProperty
|
||||
class LL_COMMON_API LLMetaProperty
|
||||
{
|
||||
public:
|
||||
LLMetaProperty(const std::string& name, const LLMetaClass& object_class);
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
#define LL_REFLECTIVE_H
|
||||
|
||||
class LLMetaClass;
|
||||
class LLReflective
|
||||
class LL_COMMON_API LLReflective
|
||||
{
|
||||
public:
|
||||
LLReflective();
|
||||
|
||||
@@ -44,6 +44,6 @@ const U64 SEC_TO_MICROSEC_U64 = 1000000;
|
||||
const U32 SEC_PER_DAY = 86400;
|
||||
|
||||
// This is just a stub, implementation in lltimer.cpp. This file will be deprecated in the future.
|
||||
U64 totalTime(); // Returns current system time in microseconds
|
||||
LL_COMMON_API U64 totalTime(); // Returns current system time in microseconds
|
||||
|
||||
#endif
|
||||
|
||||
@@ -39,14 +39,14 @@
|
||||
* @param str The string to parse.
|
||||
* @return Returns the first U64 value found in the string or 0 on failure.
|
||||
*/
|
||||
U64 str_to_U64(const std::string& str);
|
||||
LL_COMMON_API U64 str_to_U64(const std::string& str);
|
||||
|
||||
/**
|
||||
* @brief Given a U64 value, return a printable representation.
|
||||
* @param value The U64 to turn into a printable character array.
|
||||
* @return Returns the result string.
|
||||
*/
|
||||
std::string U64_to_str(U64 value);
|
||||
LL_COMMON_API std::string U64_to_str(U64 value);
|
||||
|
||||
/**
|
||||
* @brief Given a U64 value, return a printable representation.
|
||||
@@ -65,16 +65,16 @@ std::string U64_to_str(U64 value);
|
||||
* @param result_size The size of the buffer allocated. Use U64_BUF.
|
||||
* @return Returns the result pointer.
|
||||
*/
|
||||
char* U64_to_str(U64 value, char* result, S32 result_size);
|
||||
LL_COMMON_API char* U64_to_str(U64 value, char* result, S32 result_size);
|
||||
|
||||
/**
|
||||
* @brief Convert a U64 to the closest F64 value.
|
||||
*/
|
||||
F64 U64_to_F64(const U64 value);
|
||||
LL_COMMON_API F64 U64_to_F64(const U64 value);
|
||||
|
||||
/**
|
||||
* @brief Helper function to wrap strtoull() which is not available on windows.
|
||||
*/
|
||||
U64 llstrtou64(const char* str, char** end, S32 base);
|
||||
LL_COMMON_API U64 llstrtou64(const char* str, char** end, S32 base);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -62,8 +62,8 @@ target_link_libraries(
|
||||
${ZLIB_LIBRARIES}
|
||||
)
|
||||
|
||||
# Add tests
|
||||
if (LL_TESTS)
|
||||
# Add tests
|
||||
ADD_BUILD_TEST(llimageworker llimage)
|
||||
endif (LL_TESTS)
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
#include "llparcelflags.h"
|
||||
#include "llpermissions.h"
|
||||
#include "v3math.h"
|
||||
|
||||
#include "lltimer.h"
|
||||
|
||||
// Grid out of which parcels taken is stepped every 4 meters.
|
||||
const F32 PARCEL_GRID_STEP_METERS = 4.f;
|
||||
|
||||
@@ -684,6 +684,7 @@ void LLCamera::calculateFrustumPlanes(F32 left, F32 right, F32 top, F32 bottom)
|
||||
mLocalPlanes[PLANE_BOTTOM].setVec( a, c, b);
|
||||
|
||||
//calculate center and radius squared of frustum in world absolute coordinates
|
||||
static LLVector3 const X_AXIS(1.f, 0.f, 0.f);
|
||||
mFrustCenter = X_AXIS*mFarPlane*0.5f;
|
||||
mFrustCenter = transformToAbsolute(mFrustCenter);
|
||||
mFrustRadiusSquared = mFarPlane*0.5f;
|
||||
|
||||
@@ -56,15 +56,6 @@ const F32 MIN_FAR_PLANE = 0.2f;
|
||||
static const F32 MIN_FIELD_OF_VIEW = 5.0f * DEG_TO_RAD;
|
||||
static const F32 MAX_FIELD_OF_VIEW = 175.f * DEG_TO_RAD;
|
||||
|
||||
static const LLVector3 X_AXIS(1.f,0.f,0.f);
|
||||
static const LLVector3 Y_AXIS(0.f,1.f,0.f);
|
||||
static const LLVector3 Z_AXIS(0.f,0.f,1.f);
|
||||
|
||||
static const LLVector3 NEG_X_AXIS(-1.f,0.f,0.f);
|
||||
static const LLVector3 NEG_Y_AXIS(0.f,-1.f,0.f);
|
||||
static const LLVector3 NEG_Z_AXIS(0.f,0.f,-1.f);
|
||||
|
||||
|
||||
// An LLCamera is an LLCoorFrame with a view frustum.
|
||||
// This means that it has several methods for moving it around
|
||||
// that are inherited from the LLCoordFrame() class :
|
||||
|
||||
@@ -68,8 +68,7 @@ template <class T>
|
||||
class LLOctreeTraveler : public LLTreeTraveler<T>
|
||||
{
|
||||
public:
|
||||
virtual void traverse(const LLTreeNode<T>* node);
|
||||
virtual void visit(const LLTreeNode<T>* state) { }
|
||||
virtual void traverse(const LLOctreeNode<T>* node);
|
||||
virtual void visit(const LLOctreeNode<T>* branch) = 0;
|
||||
};
|
||||
|
||||
@@ -713,9 +712,8 @@ public:
|
||||
// LLOctreeTraveler
|
||||
//========================
|
||||
template <class T>
|
||||
void LLOctreeTraveler<T>::traverse(const LLTreeNode<T>* tree_node)
|
||||
void LLOctreeTraveler<T>::traverse(const LLOctreeNode<T>* node)
|
||||
{
|
||||
const LLOctreeNode<T>* node = (const LLOctreeNode<T>*) tree_node;
|
||||
node->accept(this);
|
||||
for (U32 i = 0; i < node->getChildCount(); i++)
|
||||
{
|
||||
|
||||
@@ -82,8 +82,6 @@ class LLTreeTraveler
|
||||
{
|
||||
public:
|
||||
virtual ~LLTreeTraveler() { };
|
||||
virtual void traverse(const LLTreeNode<T>* node) = 0;
|
||||
virtual void visit(const LLTreeNode<T>* node) = 0;
|
||||
};
|
||||
|
||||
template <class T>
|
||||
|
||||
@@ -100,6 +100,7 @@ set(llmessage_SOURCE_FILES
|
||||
patch_dct.cpp
|
||||
patch_idct.cpp
|
||||
llsocks5.cpp
|
||||
sound_ids.cpp
|
||||
)
|
||||
|
||||
set(llmessage_HEADER_FILES
|
||||
|
||||
@@ -1039,12 +1039,12 @@ LLSD LLAssetStorage::getPendingDetails(LLAssetStorage::ERequestType rt,
|
||||
{
|
||||
const request_list_t* requests = getRequestList(rt);
|
||||
LLSD sd;
|
||||
sd["requests"] = getPendingDetails(requests, asset_type, detail_prefix);
|
||||
sd["requests"] = getPendingDetailsImpl(requests, asset_type, detail_prefix);
|
||||
return sd;
|
||||
}
|
||||
|
||||
// virtual
|
||||
LLSD LLAssetStorage::getPendingDetails(const LLAssetStorage::request_list_t* requests,
|
||||
LLSD LLAssetStorage::getPendingDetailsImpl(const LLAssetStorage::request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const std::string& detail_prefix) const
|
||||
{
|
||||
@@ -1127,11 +1127,11 @@ LLSD LLAssetStorage::getPendingRequest(LLAssetStorage::ERequestType rt,
|
||||
const LLUUID& asset_id) const
|
||||
{
|
||||
const request_list_t* requests = getRequestList(rt);
|
||||
return getPendingRequest(requests, asset_type, asset_id);
|
||||
return getPendingRequestImpl(requests, asset_type, asset_id);
|
||||
}
|
||||
|
||||
// virtual
|
||||
LLSD LLAssetStorage::getPendingRequest(const LLAssetStorage::request_list_t* requests,
|
||||
LLSD LLAssetStorage::getPendingRequestImpl(const LLAssetStorage::request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const LLUUID& asset_id) const
|
||||
{
|
||||
@@ -1150,7 +1150,7 @@ bool LLAssetStorage::deletePendingRequest(LLAssetStorage::ERequestType rt,
|
||||
const LLUUID& asset_id)
|
||||
{
|
||||
request_list_t* requests = getRequestList(rt);
|
||||
if (deletePendingRequest(requests, asset_type, asset_id))
|
||||
if (deletePendingRequestImpl(requests, asset_type, asset_id))
|
||||
{
|
||||
llinfos << "Asset " << getRequestName(rt) << " request for "
|
||||
<< asset_id << "." << LLAssetType::lookup(asset_type)
|
||||
@@ -1161,7 +1161,7 @@ bool LLAssetStorage::deletePendingRequest(LLAssetStorage::ERequestType rt,
|
||||
}
|
||||
|
||||
// virtual
|
||||
bool LLAssetStorage::deletePendingRequest(LLAssetStorage::request_list_t* requests,
|
||||
bool LLAssetStorage::deletePendingRequestImpl(LLAssetStorage::request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const LLUUID& asset_id)
|
||||
{
|
||||
|
||||
@@ -317,15 +317,15 @@ public:
|
||||
void markAssetToxic( const LLUUID& uuid );
|
||||
|
||||
protected:
|
||||
virtual LLSD getPendingDetails(const request_list_t* requests,
|
||||
virtual LLSD getPendingDetailsImpl(const request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const std::string& detail_prefix) const;
|
||||
|
||||
virtual LLSD getPendingRequest(const request_list_t* requests,
|
||||
virtual LLSD getPendingRequestImpl(const request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const LLUUID& asset_id) const;
|
||||
|
||||
virtual bool deletePendingRequest(request_list_t* requests,
|
||||
virtual bool deletePendingRequestImpl(request_list_t* requests,
|
||||
LLAssetType::EType asset_type,
|
||||
const LLUUID& asset_id);
|
||||
|
||||
|
||||
@@ -282,6 +282,8 @@ LLCurl::Easy* LLCurl::Easy::getEasy()
|
||||
if (LLSocks::getInstance()->getHttpProxyType() == LLPROXY_SOCKS)
|
||||
{
|
||||
curl_easy_setopt(easy->mCurlEasyHandle, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
|
||||
if(LLSocks::getInstance()->getSelectedAuthMethod()==METHOD_PASSWORD)
|
||||
curl_easy_setopt(easy->mCurlEasyHandle, CURLOPT_PROXYUSERPWD,LLSocks::getInstance()->getProxyUserPwd().c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -471,6 +473,8 @@ void LLCurl::Easy::prepRequest(const std::string& url,
|
||||
if (LLSocks::getInstance()->getHttpProxyType() == LLPROXY_SOCKS)
|
||||
{
|
||||
setopt(CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
|
||||
if(LLSocks::getInstance()->getSelectedAuthMethod()==METHOD_PASSWORD)
|
||||
setoptString(CURLOPT_PROXYUSERPWD,LLSocks::getInstance()->getProxyUserPwd());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user