Client version is now returned by the stream proxy as a number.

This commit is contained in:
Derision
2013-02-17 18:09:31 +00:00
parent d1afad47aa
commit 07979ce2de
23 changed files with 79 additions and 90 deletions
+5
View File
@@ -9,6 +9,7 @@
#include "../eq_packet_structs.h"
#include "../MiscFunctions.h"
#include "../Item.h"
#include "../clientversions.h"
#include "Client62_structs.h"
namespace Client62 {
@@ -93,6 +94,10 @@ std::string Strategy::Describe() const {
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClient62;
}
#include "SSDefine.h"
+1
View File
@@ -24,6 +24,7 @@ namespace Client62 {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+5 -2
View File
@@ -98,9 +98,12 @@ std::string Strategy::Describe() const {
r += name;
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClientRoF;
}
#include "SSDefine.h"
// Converts Titanium Slot IDs to RoF Slot IDs for use in Encodes
+1
View File
@@ -23,6 +23,7 @@ namespace RoF {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+4 -1
View File
@@ -99,7 +99,10 @@ std::string Strategy::Describe() const {
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClientSoD;
}
#include "SSDefine.h"
+1
View File
@@ -23,6 +23,7 @@ namespace SoD {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+4 -1
View File
@@ -99,7 +99,10 @@ std::string Strategy::Describe() const {
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClientSoF;
}
#include "SSDefine.h"
+1
View File
@@ -23,6 +23,7 @@ namespace SoF {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+4 -1
View File
@@ -97,7 +97,10 @@ std::string Strategy::Describe() const {
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClientTitanium;
}
#include "SSDefine.h"
+1
View File
@@ -23,6 +23,7 @@ namespace Titanium {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+4 -1
View File
@@ -100,7 +100,10 @@ std::string Strategy::Describe() const {
return(r);
}
const EQClientVersion Strategy::ClientVersion() const
{
return EQClientUnderfoot;
}
#include "SSDefine.h"
+1
View File
@@ -23,6 +23,7 @@ namespace Underfoot {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "SSDeclare.h"
+1 -1
View File
@@ -23,7 +23,7 @@ namespace TEMPLATE {
protected:
virtual std::string Describe() const;
virtual const EQClientVersion ClientVersion() const;
//magic macro to declare our opcodes
#include "SSDeclare.h"
#include "TEMPLATE_ops.h"