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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsaleinfo.h
  3.  * @brief LLSaleInfo class header file.
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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. #ifndef LL_LLSALEINFO_H
  33. #define LL_LLSALEINFO_H
  34. #include "llpermissionsflags.h"
  35. #include "llsd.h"
  36. #include "llxmlnode.h"
  37. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. // Class LLSaleInfo
  39. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. // L$ default price for objects
  41. const S32 DEFAULT_PRICE = 10;
  42. class LLMessageSystem;
  43. class LLSaleInfo
  44. {
  45. public:
  46. // use this to avoid temporary object creation
  47. static const LLSaleInfo DEFAULT;
  48. enum EForSale
  49. {
  50. // item is not to be considered for transactions
  51. FS_NOT = 0,
  52. // the origional is on sale
  53. FS_ORIGINAL = 1,
  54. // A copy is for sale
  55. FS_COPY = 2,
  56. // Valid only for tasks, the inventory is for sale
  57. // at the price in this structure.
  58. FS_CONTENTS = 3,
  59. FS_COUNT
  60. };
  61. protected:
  62. EForSale mSaleType;
  63. S32 mSalePrice;
  64. public:
  65. // default constructor is fine usually
  66. LLSaleInfo();
  67. LLSaleInfo(EForSale sale_type, S32 sale_price);
  68. // accessors
  69. BOOL isForSale() const;
  70. EForSale getSaleType() const { return mSaleType; }
  71. S32 getSalePrice() const { return mSalePrice; }
  72. U32 getCRC32() const;
  73. // mutators
  74. void setSaleType(EForSale type) { mSaleType = type; }
  75. void setSalePrice(S32 price);
  76. //void setNextOwnerPermMask(U32 mask) { mNextOwnerPermMask = mask; }
  77. // file serialization
  78. BOOL exportFile(LLFILE* fp) const;
  79. BOOL importFile(LLFILE* fp, BOOL& has_perm_mask, U32& perm_mask);
  80. BOOL exportLegacyStream(std::ostream& output_stream) const;
  81. LLSD asLLSD() const;
  82. operator LLSD() const { return asLLSD(); }
  83. bool fromLLSD(const LLSD& sd, BOOL& has_perm_mask, U32& perm_mask);
  84. BOOL importLegacyStream(std::istream& input_stream, BOOL& has_perm_mask, U32& perm_mask);
  85. LLSD packMessage() const;
  86. void unpackMessage(LLSD sales);
  87. // message serialization
  88. void packMessage(LLMessageSystem* msg) const;
  89. void unpackMessage(LLMessageSystem* msg, const char* block);
  90. void unpackMultiMessage(LLMessageSystem* msg, const char* block,
  91. S32 block_num);
  92. // static functionality for determine for sale status.
  93. static EForSale lookup(const char* name);
  94. static const char* lookup(EForSale type);
  95. // Allow accumulation of sale info. The price of each is added,
  96. // conflict in sale type results in FS_NOT, and the permissions
  97. // are tightened.
  98. void accumulate(const LLSaleInfo& sale_info);
  99. bool operator==(const LLSaleInfo &rhs) const;
  100. bool operator!=(const LLSaleInfo &rhs) const;
  101. };
  102. // These functions convert between structured data and sale info as
  103. // appropriate for serialization.
  104. LLSD ll_create_sd_from_sale_info(const LLSaleInfo& sale);
  105. LLSaleInfo ll_sale_info_from_sd(const LLSD& sd);
  106. #endif // LL_LLSALEINFO_H