mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 07:30:04 +00:00 
			
		
		
		
	Special graphic symbol packet
This commit is contained in:
		
							parent
							
								
									6d4428b8e0
								
							
						
					
					
						commit
						cbb3ec0368
					
				
					 18 changed files with 1380 additions and 0 deletions
				
			
		|  | @ -0,0 +1,46 @@ | |||
| #pragma once | ||||
| 
 | ||||
| #include <scwx/wsr88d/rpg/special_graphic_symbol_packet.hpp> | ||||
| 
 | ||||
| #include <cstdint> | ||||
| #include <memory> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace wsr88d | ||||
| { | ||||
| namespace rpg | ||||
| { | ||||
| 
 | ||||
| class PointGraphicSymbolPacketImpl; | ||||
| 
 | ||||
| class PointGraphicSymbolPacket : public SpecialGraphicSymbolPacket | ||||
| { | ||||
| public: | ||||
|    explicit PointGraphicSymbolPacket(); | ||||
|    ~PointGraphicSymbolPacket(); | ||||
| 
 | ||||
|    PointGraphicSymbolPacket(const PointGraphicSymbolPacket&) = delete; | ||||
|    PointGraphicSymbolPacket& | ||||
|    operator=(const PointGraphicSymbolPacket&) = delete; | ||||
| 
 | ||||
|    PointGraphicSymbolPacket(PointGraphicSymbolPacket&&) noexcept; | ||||
|    PointGraphicSymbolPacket& operator=(PointGraphicSymbolPacket&&) noexcept; | ||||
| 
 | ||||
|    int16_t i_position(size_t i) const; | ||||
|    int16_t j_position(size_t i) const; | ||||
| 
 | ||||
|    size_t RecordCount() const override; | ||||
| 
 | ||||
|    static std::shared_ptr<PointGraphicSymbolPacket> Create(std::istream& is); | ||||
| 
 | ||||
| protected: | ||||
|    bool ParseData(std::istream& is) override; | ||||
| 
 | ||||
| private: | ||||
|    std::unique_ptr<PointGraphicSymbolPacketImpl> p; | ||||
| }; | ||||
| 
 | ||||
| } // namespace rpg
 | ||||
| } // namespace wsr88d
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat