llcallbacklist.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llcallbacklist.cpp
  3.  * @brief A simple list of callback functions to call.
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "llviewerprecompiledheaders.h"
  33. #include "llcallbacklist.h"
  34. // Library includes
  35. #include "llerror.h"
  36. //
  37. // Globals
  38. //
  39. LLCallbackList gIdleCallbacks;
  40. //
  41. // Member functions
  42. //
  43. LLCallbackList::LLCallbackList()
  44. {
  45. // nothing
  46. }
  47. LLCallbackList::~LLCallbackList()
  48. {
  49. }
  50. void LLCallbackList::addFunction( callback_t func, void *data)
  51. {
  52. if (!func)
  53. {
  54. llerrs << "LLCallbackList::addFunction - function is NULL" << llendl;
  55. return;
  56. }
  57. // only add one callback per func/data pair
  58. callback_pair_t t(func, data);
  59. callback_list_t::iterator iter = std::find(mCallbackList.begin(), mCallbackList.end(), t);
  60. if (iter == mCallbackList.end())
  61. {
  62. mCallbackList.push_back(t);
  63. }
  64. }
  65. BOOL LLCallbackList::containsFunction( callback_t func, void *data)
  66. {
  67. callback_pair_t t(func, data);
  68. callback_list_t::iterator iter = std::find(mCallbackList.begin(), mCallbackList.end(), t);
  69. if (iter != mCallbackList.end())
  70. {
  71. return TRUE;
  72. }
  73. else
  74. {
  75. return FALSE;
  76. }
  77. }
  78. BOOL LLCallbackList::deleteFunction( callback_t func, void *data)
  79. {
  80. callback_pair_t t(func, data);
  81. callback_list_t::iterator iter = std::find(mCallbackList.begin(), mCallbackList.end(), t);
  82. if (iter != mCallbackList.end())
  83. {
  84. mCallbackList.erase(iter);
  85. return TRUE;
  86. }
  87. else
  88. {
  89. return FALSE;
  90. }
  91. }
  92. void LLCallbackList::deleteAllFunctions()
  93. {
  94. mCallbackList.clear();
  95. }
  96. void LLCallbackList::callFunctions()
  97. {
  98. for (callback_list_t::iterator iter = mCallbackList.begin(); iter != mCallbackList.end();  )
  99. {
  100. callback_list_t::iterator curiter = iter++;
  101. curiter->first(curiter->second);
  102. }
  103. }
  104. #ifdef _DEBUG
  105. void test1(void *data)
  106. {
  107. S32 *s32_data = (S32 *)data;
  108. llinfos << "testfunc1 " << *s32_data << llendl;
  109. }
  110. void test2(void *data)
  111. {
  112. S32 *s32_data = (S32 *)data;
  113. llinfos << "testfunc2 " << *s32_data << llendl;
  114. }
  115. void
  116. LLCallbackList::test()
  117. {
  118. S32 a = 1;
  119. S32 b = 2;
  120. LLCallbackList *list = new LLCallbackList;
  121. llinfos << "Testing LLCallbackList" << llendl;
  122. if (!list->deleteFunction(NULL))
  123. {
  124. llinfos << "passed 1" << llendl;
  125. }
  126. else
  127. {
  128. llinfos << "error, removed function from empty list" << llendl;
  129. }
  130. // llinfos << "This should crash" << llendl;
  131. // list->addFunction(NULL);
  132. list->addFunction(&test1, &a);
  133. list->addFunction(&test1, &a);
  134. llinfos << "Expect: test1 1, test1 1" << llendl;
  135. list->callFunctions();
  136. list->addFunction(&test1, &b);
  137. list->addFunction(&test2, &b);
  138. llinfos << "Expect: test1 1, test1 1, test1 2, test2 2" << llendl;
  139. list->callFunctions();
  140. if (list->deleteFunction(&test1, &b))
  141. {
  142. llinfos << "passed 3" << llendl;
  143. }
  144. else
  145. {
  146. llinfos << "error removing function" << llendl;
  147. }
  148. llinfos << "Expect: test1 1, test1 1, test2 2" << llendl;
  149. list->callFunctions();
  150. list->deleteAllFunctions();
  151. llinfos << "Expect nothing" << llendl;
  152. list->callFunctions();
  153. llinfos << "nothing :-)" << llendl;
  154. delete list;
  155. llinfos << "test complete" << llendl;
  156. }
  157. #endif  // _DEBUG