4cebaa99f8
Now it is stored in two values - WorldAge (only incremented, plugins cannot change) and TimeOfDay (plugins can change). Since sub-tick precision is needed in Tick(), we store it both as number of seconds (double) and number of ticks (Int64) is calculated off of that. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1022 0a769ca7-a7f5-676a-18bf-c427514a06d6
39 lines
751 B
C++
39 lines
751 B
C++
|
|
// Protocol142.h
|
|
|
|
// Interfaces to the cProtocol142 class representing the release 1.4.2 protocol (#47)
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "Protocol132.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cProtocol142 :
|
|
public cProtocol132
|
|
{
|
|
typedef cProtocol132 super;
|
|
public:
|
|
|
|
cProtocol142(cClientHandle * a_Client);
|
|
virtual ~cProtocol142();
|
|
|
|
// Sending commands (alphabetically sorted):
|
|
virtual void SendPickupSpawn (const cPickup & a_Pickup) override;
|
|
virtual void SendSoundParticleEffect(int a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data) override;
|
|
virtual void SendTimeUpdate (Int64 a_WorldAge, Int64 a_TimeOfDay) override;
|
|
|
|
// Specific packet parsers:
|
|
virtual int ParseLogin (void) override;
|
|
} ;
|
|
|
|
|
|
|
|
|