Merge with develop

--HG--
branch : compatibility-develop
hg/compatibility-develop
Nimetu 6 years ago
commit 011277ab14

@ -1,5 +1,6 @@
jobs: jobs:
- job: ubuntu16 - job: ubuntu16
timeoutInMinutes: 120
pool: pool:
vmImage: 'Ubuntu-16.04' vmImage: 'Ubuntu-16.04'
steps: steps:
@ -26,12 +27,13 @@ jobs:
sudo apt-get install libsquish-dev -y sudo apt-get install libsquish-dev -y
sudo apt-get install liblzma-dev -y sudo apt-get install liblzma-dev -y
sudo apt-get install libgsf-1-dev -y sudo apt-get install libgsf-1-dev -y
sudo apt-get install qtbase5-dev qttools5-dev qttools5-dev-tools
displayName: 'Dependencies' displayName: 'Dependencies'
- script: | - script: |
mkdir build mkdir build
cmake --version cmake --version
cd build cd build
cmake -DWITH_STATIC=ON -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=ON -DWITH_LUA51=ON -DWITH_RYZOM_SERVER=ON -DWITH_RYZOM_TOOLS=OFF -DWITH_NEL_TOOLS=ON -DWITH_LIBGSF=ON ../code cmake -DWITH_STATIC=ON -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=ON -DWITH_LUA51=ON -DWITH_RYZOM=ON -DWITH_RYZOM_SERVER=ON -DWITH_RYZOM_CLIENT=ON -DWITH_RYZOM_TOOLS=ON -DWITH_NEL_TOOLS=ON -DWITH_NELNS=ON -DWITH_NELNS_LOGIN_SYSTEM=ON -DWITH_NELNS_SERVER=ON -DWITH_QT5=ON -DWITH_LIBGSF=ON ../code
cat CMakeCache.txt cat CMakeCache.txt
displayName: 'CMake' displayName: 'CMake'
- script: | - script: |

@ -72,6 +72,37 @@ IF(EXISTS "${ROOT_DIR}/.hg/")
ENDIF() ENDIF()
ENDIF() ENDIF()
IF(EXISTS "${ROOT_DIR}/.git/")
FIND_PACKAGE(Git)
IF(GIT_FOUND)
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-list HEAD --count
WORKING_DIRECTORY ${ROOT_DIR}
RESULT_VARIABLE git_exit_code
OUTPUT_VARIABLE REVISION)
IF(NOT ${git_exit_code} EQUAL 0)
message(WARNING "git rev-list failed, unable to include version.")
ENDIF()
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-parse --short=8 HEAD
WORKING_DIRECTORY ${ROOT_DIR}
RESULT_VARIABLE git_exit_code
OUTPUT_VARIABLE CHANGESET)
IF(NOT ${git_exit_code} EQUAL 0)
message(WARNING "git rev-parse failed, unable to include version.")
ENDIF()
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD
WORKING_DIRECTORY ${ROOT_DIR}
RESULT_VARIABLE git_exit_code
OUTPUT_VARIABLE BRANCH)
IF(NOT ${git_exit_code} EQUAL 0)
message(WARNING "git rev-parse failed, unable to include git branch.")
ENDIF()
STRING(STRIP ${REVISION} REVISION)
STRING(STRIP ${CHANGESET} CHANGESET)
STRING(STRIP ${BRANCH} BRANCH)
ENDIF()
ENDIF()
# if processing exported sources, use "revision" file if exists # if processing exported sources, use "revision" file if exists
IF(SOURCE_DIR AND NOT DEFINED REVISION) IF(SOURCE_DIR AND NOT DEFINED REVISION)
SET(REVISION_FILE ${SOURCE_DIR}/revision) SET(REVISION_FILE ${SOURCE_DIR}/revision)

@ -211,6 +211,11 @@ namespace NLGUI
int luaGetNumGroups(CLuaState &ls); int luaGetNumGroups(CLuaState &ls);
int luaGetGroup(CLuaState &ls); int luaGetGroup(CLuaState &ls);
// debug functions
int luaDumpSize(CLuaState &ls);
int luaDumpEltsOrder(CLuaState &ls);
int luaDumpGroups(CLuaState &ls);
void setMaxSizeRef(const std::string &maxSizeRef); void setMaxSizeRef(const std::string &maxSizeRef);
std::string getMaxSizeRefAsString() const; std::string getMaxSizeRefAsString() const;
@ -223,6 +228,9 @@ namespace NLGUI
REFLECT_LUA_METHOD("delGroup", luaDelGroup); REFLECT_LUA_METHOD("delGroup", luaDelGroup);
REFLECT_LUA_METHOD("getNumGroups", luaGetNumGroups); REFLECT_LUA_METHOD("getNumGroups", luaGetNumGroups);
REFLECT_LUA_METHOD("getGroup", luaGetGroup); REFLECT_LUA_METHOD("getGroup", luaGetGroup);
REFLECT_LUA_METHOD("dumpSize", luaDumpSize);
REFLECT_LUA_METHOD("dumpEltsOrder", luaDumpEltsOrder);
REFLECT_LUA_METHOD("dumpGroups", luaDumpGroups);
REFLECT_STRING ("left_click", getLeftClickHandler, setLeftClickHandler); REFLECT_STRING ("left_click", getLeftClickHandler, setLeftClickHandler);
REFLECT_STRING ("right_click", getRightClickHandler, setRightClickHandler); REFLECT_STRING ("right_click", getRightClickHandler, setRightClickHandler);
REFLECT_STRING ("left_click_params", getLeftClickHandlerParams, setLeftClickHandlerParams); REFLECT_STRING ("left_click_params", getLeftClickHandlerParams, setLeftClickHandlerParams);
@ -274,8 +282,8 @@ namespace NLGUI
sint getInsertionOrder(CViewBase *vb) const; sint getInsertionOrder(CViewBase *vb) const;
// for debug only // for debug only
void dumpGroups(); void dumpGroups() const;
void dumpEltsOrder(); void dumpEltsOrder() const;
virtual void renderWiredQuads(CInterfaceElement::TRenderWired type, const std::string &uiFilter); virtual void renderWiredQuads(CInterfaceElement::TRenderWired type, const std::string &uiFilter);

@ -5793,7 +5793,7 @@ namespace NLGUI
// *************************************************************************** // ***************************************************************************
void CGroupHTML::htmlHR(const CHtmlElement &elm) void CGroupHTML::htmlHR(const CHtmlElement &elm)
{ {
newParagraph(0); endParagraph();
CInterfaceGroup *sep = CWidgetManager::getInstance()->getParser()->createGroupInstance("html_hr", "", NULL, 0); CInterfaceGroup *sep = CWidgetManager::getInstance()->getParser()->createGroupInstance("html_hr", "", NULL, 0);
if (sep) if (sep)
@ -5816,7 +5816,7 @@ namespace NLGUI
} }
renderPseudoElement(":before", elm); renderPseudoElement(":before", elm);
getParagraph()->addChild(sep); addHtmlGroup(sep, 0);
renderPseudoElement(":after", elm); renderPseudoElement(":after", elm);
endParagraph(); endParagraph();
@ -5828,10 +5828,9 @@ namespace NLGUI
{ {
if (elm.hasNonEmptyAttribute("style")) if (elm.hasNonEmptyAttribute("style"))
{ {
_Style.Root = _Style.Current; _Style.applyStyle(elm.getAttribute("style"));
_Style.applyRootStyle(elm.getAttribute("style"));
_Style.Current = _Style.Root;
} }
_Style.Root = _Style.Current;
applyBackground(elm); applyBackground(elm);
} }

@ -829,7 +829,7 @@ namespace NLGUI
const std::map< uint32, SLinkData > &linkMap = const std::map< uint32, SLinkData > &linkMap =
CWidgetManager::getInstance()->getParser()->getLinkMap(); CWidgetManager::getInstance()->getParser()->getLinkMap();
xmlNodePtr node = NULL; xmlNodePtr node = NULL;
std::map< uint32, SLinkData >::const_iterator itr; std::map< uint32, SLinkData >::const_iterator itr;
@ -847,17 +847,17 @@ namespace NLGUI
xmlAddChild( parentNode, node ); xmlAddChild( parentNode, node );
xmlSetProp( node, BAD_CAST "expr", BAD_CAST data.expr.c_str() ); xmlSetProp( node, BAD_CAST "expr", BAD_CAST data.expr.c_str() );
if( !data.target.empty() ) if( !data.target.empty() )
xmlSetProp( node, BAD_CAST "target", BAD_CAST data.target.c_str() ); xmlSetProp( node, BAD_CAST "target", BAD_CAST data.target.c_str() );
if( !data.action.empty() ) if( !data.action.empty() )
{ {
xmlSetProp( node, BAD_CAST "action", BAD_CAST data.action.c_str() ); xmlSetProp( node, BAD_CAST "action", BAD_CAST data.action.c_str() );
if( !data.params.empty() ) if( !data.params.empty() )
xmlSetProp( node, BAD_CAST "params", BAD_CAST data.params.c_str() ); xmlSetProp( node, BAD_CAST "params", BAD_CAST data.params.c_str() );
if( !data.cond.empty() ) if( !data.cond.empty() )
xmlSetProp( node, BAD_CAST "cond", BAD_CAST data.cond.c_str() ); xmlSetProp( node, BAD_CAST "cond", BAD_CAST data.cond.c_str() );
} }
@ -1792,7 +1792,7 @@ namespace NLGUI
CInterfaceGroup *pChild = *itg; CInterfaceGroup *pChild = *itg;
if (pChild->getActive()) if (pChild->getActive())
{ {
// bool bUnder = // bool bUnder =
pChild->getViewsUnder (x, y, clipX, clipY, clipW, clipH, vVB); pChild->getViewsUnder (x, y, clipX, clipY, clipW, clipH, vVB);
// if (bUnder && !vICL.empty()) // if (bUnder && !vICL.empty())
// return true; // return true;
@ -1847,7 +1847,7 @@ namespace NLGUI
CInterfaceGroup *pChild = *itg; CInterfaceGroup *pChild = *itg;
if (pChild->getActive()) if (pChild->getActive())
{ {
// bool bUnder = // bool bUnder =
pChild->getCtrlsUnder (x, y, clipX, clipY, clipW, clipH, vICL); pChild->getCtrlsUnder (x, y, clipX, clipY, clipW, clipH, vICL);
// if (bUnder && !vICL.empty()) // if (bUnder && !vICL.empty())
// return true; // return true;
@ -1903,7 +1903,7 @@ namespace NLGUI
CInterfaceGroup *pChild = *itg; CInterfaceGroup *pChild = *itg;
if (pChild->getActive()) if (pChild->getActive())
{ {
// bool bUnder = // bool bUnder =
pChild->getGroupsUnder (x, y, clipX, clipY, clipW, clipH, vIGL); pChild->getGroupsUnder (x, y, clipX, clipY, clipW, clipH, vIGL);
// if (bUnder && !vICL.empty()) // if (bUnder && !vICL.empty())
// return true; // return true;
@ -2149,7 +2149,34 @@ namespace NLGUI
} }
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
void CInterfaceGroup::dumpGroups() int CInterfaceGroup::luaDumpSize(CLuaState &ls)
{
const char *funcName = "dumpSize";
CLuaIHM::checkArgCount(ls, funcName, 0);
dumpSize();
return 0;
}
// ------------------------------------------------------------------------------------------------
int CInterfaceGroup::luaDumpEltsOrder(CLuaState &ls)
{
const char *funcName = "dumpEltsOrder";
CLuaIHM::checkArgCount(ls, funcName, 0);
dumpEltsOrder();
return 0;
}
// ------------------------------------------------------------------------------------------------
int CInterfaceGroup::luaDumpGroups(CLuaState &ls)
{
const char *funcName = "dumpGroups";
CLuaIHM::checkArgCount(ls, funcName, 0);
dumpGroups();
return 0;
}
// ------------------------------------------------------------------------------------------------
void CInterfaceGroup::dumpGroups() const
{ {
nlinfo("Num groups = %d", (int) _ChildrenGroups.size()); nlinfo("Num groups = %d", (int) _ChildrenGroups.size());
for(uint k = 0; k < _ChildrenGroups.size(); ++k) for(uint k = 0; k < _ChildrenGroups.size(); ++k)
@ -2166,21 +2193,18 @@ namespace NLGUI
} }
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
void CInterfaceGroup::dumpEltsOrder() void CInterfaceGroup::dumpEltsOrder() const
{ {
nlinfo("Num elements = %d", (int) _EltOrder.size()); nlinfo("Num elements = %d, num groups = %d", (int) _EltOrder.size(), _ChildrenGroups.size());
for(uint k = 0; k < _EltOrder.size(); ++k) for(uint k = 0; k < _EltOrder.size(); ++k)
{ {
std::string typeName = "???"; CInterfaceElement *el = _EltOrder[k];
if (_ChildrenGroups[k]) if (el)
{ {
std::string typeName;
NLGUI::CViewBase *view = _EltOrder[k]; NLGUI::CViewBase *view = _EltOrder[k];
const type_info &ti = typeid(*view); const type_info &ti = typeid(*view);
typeName = ti.name(); typeName = ti.name();
}
CInterfaceElement *el = _EltOrder[k];
if (el)
{
nlinfo("Element %d, name = %s, type=%s, x=%d, y=%d, parent_name=%s parentposname=%s xreal=%d, yreal=%d, wreal=%d, hreal=%d", nlinfo("Element %d, name = %s, type=%s, x=%d, y=%d, parent_name=%s parentposname=%s xreal=%d, yreal=%d, wreal=%d, hreal=%d",
k, el->getId().c_str(), typeName.c_str(), el->getX(), el->getY(), el->getParent() ? el->getParent()->getId().c_str() : "no parent", k, el->getId().c_str(), typeName.c_str(), el->getX(), el->getY(), el->getParent() ? el->getParent()->getId().c_str() : "no parent",
el->getParentPos() ? el->getParentPos()->getId().c_str() : "parent", el->getParentPos() ? el->getParentPos()->getId().c_str() : "parent",
@ -2595,7 +2619,7 @@ namespace NLGUI
e->setSizeRef(""); e->setSizeRef("");
e->setParent(p); e->setParent(p);
e->setParentPos(p); e->setParentPos(p);
e->setParentSize(p); e->setParentSize(p);
e->alignTo(p); e->alignTo(p);

@ -146,7 +146,7 @@ std::string winCpToCp(const char *str, size_t len, UINT srcCp, UINT dstCp)
return std::string(); return std::string();
int tmpLen = MultiByteToWideChar(srcCp, 0, int tmpLen = MultiByteToWideChar(srcCp, 0,
str, (int)(len + 1), /* include null-termination */ str, (int)(len + 1), /* include null-termination */
tmp, (int)((len + 1) * 4)); tmp, (int)((len + 1) * 2));
if (tmpLen <= 1) if (tmpLen <= 1)
{ {
_freea(tmp); _freea(tmp);
@ -172,7 +172,7 @@ std::wstring winCpToWide(const char *str, size_t len, UINT cp)
return std::wstring(); return std::wstring();
int tmpLen = MultiByteToWideChar(cp, 0, int tmpLen = MultiByteToWideChar(cp, 0,
str, (int)(len + 1), /* include null-termination */ str, (int)(len + 1), /* include null-termination */
tmp, (int)((len + 1) * 4)); tmp, (int)((len + 1) * 2));
if (tmpLen <= 1) if (tmpLen <= 1)
{ {
_freea(tmp); _freea(tmp);

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(anim_builder ${SRC}) ADD_EXECUTABLE(anim_builder ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_clod_bank ${SRC}) ADD_EXECUTABLE(build_clod_bank ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_clodtex ${SRC}) ADD_EXECUTABLE(build_clodtex ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_coarse_mesh ${SRC}) ADD_EXECUTABLE(build_coarse_mesh ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_far_bank ${SRC}) ADD_EXECUTABLE(build_far_bank ${SRC})

@ -1,4 +1,4 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC}) SOURCE_GROUP("" FILES ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_shadow_skin ${SRC}) ADD_EXECUTABLE(build_shadow_skin ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_smallbank ${SRC}) ADD_EXECUTABLE(build_smallbank ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(get_neighbors ${SRC}) ADD_EXECUTABLE(get_neighbors ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,5 +1,7 @@
FILE(GLOB SRC *.cpp *.h ../panoply_maker/hls_bank_texture_info.cpp ../panoply_maker/hls_bank_texture_info.h) FILE(GLOB SRC *.cpp *.h ../panoply_maker/hls_bank_texture_info.cpp ../panoply_maker/hls_bank_texture_info.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(hls_bank_maker ${SRC}) ADD_EXECUTABLE(hls_bank_maker ${SRC})
TARGET_LINK_LIBRARIES(hls_bank_maker s3tc_compressor nelmisc nel3d) TARGET_LINK_LIBRARIES(hls_bank_maker s3tc_compressor nelmisc nel3d)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(ig_add ${SRC}) ADD_EXECUTABLE(ig_add ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(ig_elevation ${SRC}) ADD_EXECUTABLE(ig_elevation ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ../ig_lighter_lib/*.cpp ../ig_lighter_lib/*.h) FILE(GLOB SRC *.cpp *.h ../ig_lighter_lib/*.cpp ../ig_lighter_lib/*.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(ig_lighter ${SRC}) ADD_EXECUTABLE(ig_lighter ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(lightmap_optimizer ${SRC}) ADD_EXECUTABLE(lightmap_optimizer ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,9 +1,10 @@
FILE(GLOB SRCS *.cpp) FILE(GLOB SRCS *.cpp)
FILE(GLOB HDRS *.h) FILE(GLOB HDRS *.h)
FILE(GLOB RECS *.rc)
SOURCE_GROUP("" FILES ${SRCS} ${HDRS}) SOURCE_GROUP("" FILES ${SRCS} ${HDRS} ${RECS})
ADD_EXECUTABLE(mesh_export ${SRCS} ${HDRS}) ADD_EXECUTABLE(mesh_export ${SRCS} ${HDRS} ${RECS})
TARGET_LINK_LIBRARIES(mesh_export mesh_utils nel3d nelmisc) TARGET_LINK_LIBRARIES(mesh_export mesh_utils nel3d nelmisc)
NL_DEFAULT_PROPS(mesh_export "NeL, Tools, 3D: Mesh Export") NL_DEFAULT_PROPS(mesh_export "NeL, Tools, 3D: Mesh Export")

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(panoply_maker ${SRC}) ADD_EXECUTABLE(panoply_maker ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(shapes_exporter WIN32 ${SRC}) ADD_EXECUTABLE(shapes_exporter WIN32 ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "gold_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(tga2dds ${SRC}) ADD_EXECUTABLE(tga2dds ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(tga_cut ${SRC}) ADD_EXECUTABLE(tga_cut ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,11 +1,11 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC}) SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(unbuild_interface ${SRC}) ADD_EXECUTABLE(unbuild_interface ${SRC})
TARGET_LINK_LIBRARIES(unbuild_interface nelmisc) TARGET_LINK_LIBRARIES(unbuild_interface nelmisc)
NL_DEFAULT_PROPS(unbuild_interface "NeL, Tools, 3D: unbuild_interface") NL_DEFAULT_PROPS(unbuild_interface "NeL, Tools, 3D: Unbuild Interface")
NL_ADD_RUNTIME_FLAGS(unbuild_interface) NL_ADD_RUNTIME_FLAGS(unbuild_interface)
INSTALL(TARGETS unbuild_interface RUNTIME DESTINATION bin COMPONENT tools3d) INSTALL(TARGETS unbuild_interface RUNTIME DESTINATION bin COMPONENT tools3d)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "gold_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h) FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(zone_dependencies ${SRC}) ADD_EXECUTABLE(zone_dependencies ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h) FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(zone_ig_lighter ${SRC}) ADD_EXECUTABLE(zone_ig_lighter ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h) FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(zone_lighter ${SRC}) ADD_EXECUTABLE(zone_lighter ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h) FILE(GLOB SRC *.cpp *.h ../zone_lib/*.cpp ../zone_lib/*.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(zone_welder ${SRC}) ADD_EXECUTABLE(zone_welder ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(bnp_make ${SRC}) ADD_EXECUTABLE(bnp_make ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(exec_timeout ${SRC}) ADD_EXECUTABLE(exec_timeout ${SRC})

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "yellow_pill.ico"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(make_sheet_id ${SRC}) ADD_EXECUTABLE(make_sheet_id ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(message_box WIN32 ${SRC}) ADD_EXECUTABLE(message_box WIN32 ${SRC})

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "yellow_pill.ico"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -5,7 +5,9 @@ ENDIF()
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
FILE(GLOB MESSAGE_BOX_SRC *.cpp) FILE(GLOB MESSAGE_BOX_SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${MESSAGE_BOX_SRC})
SET( QT_USE_QT3SUPPORT TRUE) SET( QT_USE_QT3SUPPORT TRUE)
SET( QT_USE_QTXML TRUE) SET( QT_USE_QTXML TRUE)

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "yellow_pill.ico"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_ig_boxes ${SRC}) ADD_EXECUTABLE(build_ig_boxes ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_indoor_rbank ${SRC}) ADD_EXECUTABLE(build_indoor_rbank ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_rbank ${SRC}) ADD_EXECUTABLE(build_rbank ${SRC})

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(r2_islands_textures ${SRC}) ADD_EXECUTABLE(r2_islands_textures ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(prim_export ${SRC}) ADD_EXECUTABLE(prim_export ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h) FILE(GLOB SRC *.cpp *.h *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(land_export ${SRC}) ADD_EXECUTABLE(land_export ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,14 +1,14 @@
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/ryzom/client/src/seven_zip) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/ryzom/client/src/seven_zip)
SET(MAIN_SRC patch_gen_common.cpp patch_gen_main.cpp patch_gen_main.h) SET(MAIN_SRC patch_gen_common.cpp patch_gen_main.cpp patch_gen_main.h patch_gen.rc)
SET(SERVICE_SRC patch_gen_common.cpp patch_gen_service.cpp patch_gen_service.h) SET(SERVICE_SRC patch_gen_common.cpp patch_gen_service.cpp patch_gen_service.h patch_gen_service.rc)
ADD_EXECUTABLE(patch_gen ${MAIN_SRC}) ADD_EXECUTABLE(patch_gen ${MAIN_SRC} ${RECS})
TARGET_LINK_LIBRARIES(patch_gen ryzom_sevenzip ryzom_gameshare nelmisc nelnet nelligo nelgeorges) TARGET_LINK_LIBRARIES(patch_gen ryzom_sevenzip ryzom_gameshare nelmisc nelnet nelligo nelgeorges)
NL_DEFAULT_PROPS(patch_gen "Ryzom, Tools: Patch Generator") NL_DEFAULT_PROPS(patch_gen "Ryzom, Tools: Patch Generator")
NL_ADD_RUNTIME_FLAGS(patch_gen) NL_ADD_RUNTIME_FLAGS(patch_gen)
ADD_EXECUTABLE(patch_gen_service WIN32 ${SERVICE_SRC}) ADD_EXECUTABLE(patch_gen_service WIN32 ${SERVICE_SRC} ${RECS})
TARGET_LINK_LIBRARIES(patch_gen_service ryzom_sevenzip ryzom_gameshare nelmisc nelnet nelligo nelgeorges) TARGET_LINK_LIBRARIES(patch_gen_service ryzom_sevenzip ryzom_gameshare nelmisc nelnet nelligo nelgeorges)
NL_DEFAULT_PROPS(patch_gen_service "Ryzom, Tools: Patch Generator Service") NL_DEFAULT_PROPS(patch_gen_service "Ryzom, Tools: Patch Generator Service")
NL_ADD_RUNTIME_FLAGS(patch_gen_service) NL_ADD_RUNTIME_FLAGS(patch_gen_service)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "red_pill.ico"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.cpp) FILE(GLOB SRC *.cpp *.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.cpp *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(ai_build_wmap ${SRC}) ADD_EXECUTABLE(ai_build_wmap ${SRC})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1 @@
IDI_MAIN_ICON ICON DISCARDABLE "blue_pill.ico"

@ -1,4 +1,6 @@
FILE(GLOB SRC *.cpp *.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.cpp) FILE(GLOB SRC *.cpp *.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.h ${RZ_SERVER_SRC_DIR}/ai_data_service/pacs_scan.cpp *.rc)
SOURCE_GROUP("" FILES ${SRC})
ADD_EXECUTABLE(build_world_packed_col ${SRC}) ADD_EXECUTABLE(build_world_packed_col ${SRC})

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save