MiscFunctions.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef MISCFUNCTIONS_H
  17. #define MISCFUNCTIONS_H
  18. #include "types.h"
  19. #include "seperator.h"
  20. #include <stdio.h>
  21. #include <ctype.h>
  22. #include <vector>
  23. #include <map>
  24. #ifndef ERRBUF_SIZE
  25. #define ERRBUF_SIZE 1024
  26. #endif
  27. int MakeAnyLenString(char** ret, const char* format, ...);
  28. int32 hextoi(char* num);
  29. int64 hextoi64(char* num);
  30. sint32 filesize(FILE* fp);
  31. int32 ResolveIP(const char* hostname, char* errbuf = 0);
  32. void CoutTimestamp(bool ms = true);
  33. char* strn0cpy(char* dest, const char* source, int32 size);
  34. // return value =true if entire string(source) fit, false if it was truncated
  35. bool strn0cpyt(char* dest, const char* source, int32 size);
  36. string loadInt32String(uchar* buffer, int16 buffer_size, int16* pos, EQ2_32BitString* eq_string = NULL);
  37. string loadInt16String(uchar* buffer, int16 buffer_size, int16* pos, EQ2_16BitString* eq_string = NULL);
  38. string loadInt8String(uchar* buffer, int16 buffer_size, int16* pos, EQ2_8BitString* eq_string = NULL);
  39. sint16 storeInt32String(uchar* buffer, int16 buffer_size, string in_str);
  40. sint16 storeInt16String(uchar* buffer, int16 buffer_size, string in_str);
  41. sint16 storeInt8String(uchar* buffer, int16 buffer_size, string in_str);
  42. int MakeRandomInt(int low, int high);
  43. float MakeRandomFloat(float low, float high);
  44. int32 GenerateEQ2Color(float r, float g, float b);
  45. int32 GenerateEQ2Color(float* rgb[3]);
  46. void SetColor(EQ2_Color* color, long data);
  47. //void CreateEQ2Color(EQ2_Color* color, uchar* data, int16* size);
  48. int8 MakeInt8(uchar* data, int16* size);
  49. int8 MakeInt8(float* input);
  50. bool Unpack(int32 srcLen, uchar* data, uchar* dst, int16 dstLen, int16 version = 0, bool reverse = true);
  51. bool Unpack(uchar* data, uchar* dst, int16 dstLen, int16 version = 0, bool reverse = true);
  52. int32 Pack(uchar* data, uchar* src, int16 srcLen, int16 dstLen, int16 version = 0);
  53. void Reverse(uchar* input, int32 srcLen);
  54. void Encode(uchar* dst, uchar* src, int16 len);
  55. void Decode(uchar* dst, uchar* src, int16 len);
  56. string ToUpper(string input);
  57. string ToLower(string input);
  58. int32 ParseIntValue(string input);
  59. map<string, string> TranslateBrokerRequest(string request);
  60. void MovementDecode(uchar* dst, uchar* newval, uchar* orig, int16 len);
  61. vector<string>* SplitString(string str, char delim);
  62. int8 DoOverLoad(int32 val, uchar* data);
  63. int8 CheckOverLoadSize(int32 val);
  64. int32 CountWordsInString(const char* text);
  65. bool IsNumber(const char *num);
  66. void PrintSep(Seperator *sep, const char *name = 0);
  67. ///<summary>Gets the packet type for the given version</summary>
  68. ///<param name='version'>The client version</param>
  69. int16 GetItemPacketType(int32 version);
  70. ///<summary>Gets the opcode version_range1 from the clients version</summary>
  71. ///<param name='version'>The client version</param>
  72. int16 GetOpcodeVersion(int16 version);
  73. void SleepMS(int32 milliseconds);
  74. size_t strlcpy(char *dst, const char *src, size_t size);
  75. bool INIReadBool(FILE *f, const char *section, const char *property, bool *out);
  76. bool INIReadInt(FILE *f, const char *section, const char *property, int *out);
  77. template<class Type> void AddData(Type input, string* datastring){
  78. if(datastring)
  79. datastring->append((char*)&input, sizeof(input));
  80. }
  81. template<class Type> void AddData(Type input, int32 array_size, string* datastring){
  82. if(array_size>0){
  83. for(int32 i=0;i<array_size;i++)
  84. AddData(input[i], datastring);
  85. }
  86. else
  87. AddData(input, datastring);
  88. }
  89. #ifndef WIN32
  90. #define _ITOA_BUFLEN 25
  91. const char * itoa(int value);
  92. char * itoa(int value, char *result, int base);
  93. #endif
  94. class InitWinsock {
  95. public:
  96. InitWinsock();
  97. ~InitWinsock();
  98. };
  99. template<class T> class AutoDelete {
  100. public:
  101. AutoDelete(T** iVar, T* iSetTo = 0) {
  102. init(iVar, iSetTo);
  103. }
  104. AutoDelete() {}
  105. void init(T** iVar, T* iSetTo = 0)
  106. {
  107. pVar = iVar;
  108. if (iSetTo)
  109. *pVar = iSetTo;
  110. }
  111. ~AutoDelete() {
  112. safe_delete(*pVar);
  113. }
  114. private:
  115. T** pVar;
  116. };
  117. #endif