├── .gitignore ├── DummyClient ├── DummyClient.sln └── DummyClient │ ├── App.config │ ├── ChattingForm.Designer.cs │ ├── ChattingForm.cs │ ├── ChattingForm.resx │ ├── DummyClient.Designer.cs │ ├── DummyClient.cs │ ├── DummyClient.csproj │ ├── DummyClient.resx │ ├── LoginForm.Designer.cs │ ├── LoginForm.cs │ ├── LoginForm.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── Source │ ├── Chatting │ ├── ChatWnd.cs │ ├── ChattingContents.cs │ └── ChattingPacketProcess.cs │ ├── ContentsProcess.cs │ ├── FormState.cs │ ├── Login │ ├── LoginContents.cs │ └── LoginPacketProcess.cs │ ├── Network │ ├── Network.cs │ ├── Packet.cs │ ├── PacketObfuscation.cs │ └── PacketUtil.cs │ ├── PacketGen │ ├── PacketClass.cs │ ├── PacketFactory.cs │ └── PacketHeader.cs │ ├── PacketProcess.cs │ └── ProgramState.cs ├── ServerCore ├── ChattingServer │ ├── ChattingServer.cpp │ ├── ChattingServer.vcxproj │ ├── ChattingServer.vcxproj.filters │ ├── ReadMe.txt │ ├── Server │ │ ├── ChattingProcess.cpp │ │ ├── ChattingProcess.h │ │ ├── User.h │ │ └── UserManager.h │ ├── config.xml │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── DBAgent │ ├── DBAgent.vcxproj │ ├── DBAgent.vcxproj.filters │ ├── DBAgentProcess.cpp │ ├── DBAgentProcess.h │ ├── Query │ │ ├── QI_DB_REQ_ID_PW.h │ │ └── QI_DB_REQ_LOAD_DATA.h │ ├── ReadMe.txt │ ├── config.xml │ ├── main.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LoginServer │ ├── LoginServer.cpp │ ├── LoginServer.vcxproj │ ├── LoginServer.vcxproj.filters │ ├── ReadMe.txt │ ├── Server │ │ ├── LoginProcess.cpp │ │ └── LoginProcess.h │ ├── config.xml │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ServerCore.sln └── ServerLibrary │ ├── Contents │ ├── ContentsProcess.cpp │ └── ContentsProcess.h │ ├── Database │ ├── ADODatabase.cpp │ ├── ADODatabase.h │ ├── DBManager.cpp │ ├── DBManager.h │ ├── Database.h │ ├── Query.cpp │ ├── Query.h │ ├── QueryRecord.cpp │ ├── QueryRecord.h │ ├── QueryStatement.cpp │ └── QueryStatement.h │ ├── Debug │ └── msado15.tli │ ├── Net │ ├── Asio │ │ ├── ASIOServer.cpp │ │ ├── ASIOServer.h │ │ ├── ASIOSession.cpp │ │ └── ASIOSession.h │ ├── Iocp │ │ ├── IOCPServer.cpp │ │ ├── IOCPServer.h │ │ ├── IOCPSession.cpp │ │ └── IOCPSession.h │ ├── Packet.h │ ├── Packet │ │ ├── Package.h │ │ ├── PacketAnalyzer.cpp │ │ ├── PacketAnalyzer.h │ │ ├── PacketClass.h │ │ ├── PacketFactory.h │ │ ├── PacketHeader.h │ │ ├── PacketObfuscation.cpp │ │ ├── PacketObfuscation.h │ │ ├── Stream.cpp │ │ └── Stream.h │ ├── PacketHeader.h │ ├── PacketManager.h │ ├── Server.cpp │ ├── Server.h │ ├── Session.cpp │ ├── Session.h │ ├── SessionManager.cpp │ ├── SessionManager.h │ ├── SessionMonitor.cpp │ ├── SessionMonitor.h │ ├── Stream.h │ ├── Terminal │ │ ├── Terminal.cpp │ │ ├── Terminal.h │ │ ├── TerminalManager.cpp │ │ ├── TerminalManager.h │ │ ├── TerminalSession.cpp │ │ └── TerminalSession.h │ └── WinSocket.h │ ├── ReadMe.txt │ ├── ServerLibrary.h │ ├── ServerLibrary.vcxproj │ ├── ServerLibrary.vcxproj.filters │ ├── Shutdown.cpp │ ├── Shutdown.h │ ├── Util │ ├── Assert.cpp │ ├── Assert.h │ ├── Clock.cpp │ ├── Clock.h │ ├── Config.cpp │ ├── Config.h │ ├── GameObject.h │ ├── Lock.cpp │ ├── Lock.h │ ├── Logger.cpp │ ├── Logger.h │ ├── MemoryLeak.h │ ├── Memory_LowFragmentationHeap.h │ ├── Minidump.cpp │ ├── Minidump.h │ ├── Monitoring.h │ ├── ProgramValidation.h │ ├── RandomMT.h │ ├── SMTPMail.cpp │ ├── SMTPMail.h │ ├── Singleton.h │ ├── Table.h │ ├── Task.cpp │ ├── Task.h │ ├── Thread.cpp │ ├── Thread.h │ ├── ThreadJobQueue.h │ ├── Type.h │ ├── Util.h │ ├── csv_parser │ │ ├── csv_parser.cpp │ │ └── csv_parser.hpp │ └── tinyXml │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── packetMaker ├── App.config ├── ClassMakePacket.cs ├── ClientClassMakePacket.cs ├── ExcelParser.cs ├── FactoryMakePacket.cs ├── HeaderMakePacket.cs ├── MakePacket.cs ├── MakePacketStruct.cs ├── ParseExcel.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ └── Debug │ │ ├── Packet.h │ │ ├── PacketHeader.h │ │ ├── packetMaker.vshost.exe.config │ │ └── packetMaker.vshost.exe.manifest ├── main.cs ├── obj │ └── Debug │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── packetData.xlsx └── packetMaker.csproj └── 게임 기본 쿼리.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/.gitignore -------------------------------------------------------------------------------- /DummyClient/DummyClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient.sln -------------------------------------------------------------------------------- /DummyClient/DummyClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/App.config -------------------------------------------------------------------------------- /DummyClient/DummyClient/ChattingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/ChattingForm.Designer.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/ChattingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/ChattingForm.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/ChattingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/ChattingForm.resx -------------------------------------------------------------------------------- /DummyClient/DummyClient/DummyClient.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/DummyClient.Designer.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/DummyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/DummyClient.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/DummyClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/DummyClient.csproj -------------------------------------------------------------------------------- /DummyClient/DummyClient/DummyClient.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/DummyClient.resx -------------------------------------------------------------------------------- /DummyClient/DummyClient/LoginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/LoginForm.Designer.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/LoginForm.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/LoginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/LoginForm.resx -------------------------------------------------------------------------------- /DummyClient/DummyClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Program.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Properties/Resources.resx -------------------------------------------------------------------------------- /DummyClient/DummyClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Properties/Settings.settings -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Chatting/ChatWnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Chatting/ChatWnd.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Chatting/ChattingContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Chatting/ChattingContents.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Chatting/ChattingPacketProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Chatting/ChattingPacketProcess.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/ContentsProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/ContentsProcess.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/FormState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/FormState.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Login/LoginContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Login/LoginContents.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Login/LoginPacketProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Login/LoginPacketProcess.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Network/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Network/Network.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Network/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Network/Packet.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Network/PacketObfuscation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Network/PacketObfuscation.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/Network/PacketUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/Network/PacketUtil.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/PacketGen/PacketClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/PacketGen/PacketClass.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/PacketGen/PacketFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/PacketGen/PacketFactory.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/PacketGen/PacketHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/PacketGen/PacketHeader.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/PacketProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/PacketProcess.cs -------------------------------------------------------------------------------- /DummyClient/DummyClient/Source/ProgramState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/DummyClient/DummyClient/Source/ProgramState.cs -------------------------------------------------------------------------------- /ServerCore/ChattingServer/ChattingServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/ChattingServer.cpp -------------------------------------------------------------------------------- /ServerCore/ChattingServer/ChattingServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/ChattingServer.vcxproj -------------------------------------------------------------------------------- /ServerCore/ChattingServer/ChattingServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/ChattingServer.vcxproj.filters -------------------------------------------------------------------------------- /ServerCore/ChattingServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/ReadMe.txt -------------------------------------------------------------------------------- /ServerCore/ChattingServer/Server/ChattingProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/Server/ChattingProcess.cpp -------------------------------------------------------------------------------- /ServerCore/ChattingServer/Server/ChattingProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/Server/ChattingProcess.h -------------------------------------------------------------------------------- /ServerCore/ChattingServer/Server/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/Server/User.h -------------------------------------------------------------------------------- /ServerCore/ChattingServer/Server/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/Server/UserManager.h -------------------------------------------------------------------------------- /ServerCore/ChattingServer/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/config.xml -------------------------------------------------------------------------------- /ServerCore/ChattingServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/stdafx.cpp -------------------------------------------------------------------------------- /ServerCore/ChattingServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/stdafx.h -------------------------------------------------------------------------------- /ServerCore/ChattingServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ChattingServer/targetver.h -------------------------------------------------------------------------------- /ServerCore/DBAgent/DBAgent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/DBAgent.vcxproj -------------------------------------------------------------------------------- /ServerCore/DBAgent/DBAgent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/DBAgent.vcxproj.filters -------------------------------------------------------------------------------- /ServerCore/DBAgent/DBAgentProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/DBAgentProcess.cpp -------------------------------------------------------------------------------- /ServerCore/DBAgent/DBAgentProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/DBAgentProcess.h -------------------------------------------------------------------------------- /ServerCore/DBAgent/Query/QI_DB_REQ_ID_PW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/Query/QI_DB_REQ_ID_PW.h -------------------------------------------------------------------------------- /ServerCore/DBAgent/Query/QI_DB_REQ_LOAD_DATA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/Query/QI_DB_REQ_LOAD_DATA.h -------------------------------------------------------------------------------- /ServerCore/DBAgent/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/ReadMe.txt -------------------------------------------------------------------------------- /ServerCore/DBAgent/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/config.xml -------------------------------------------------------------------------------- /ServerCore/DBAgent/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/main.cpp -------------------------------------------------------------------------------- /ServerCore/DBAgent/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/stdafx.cpp -------------------------------------------------------------------------------- /ServerCore/DBAgent/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/stdafx.h -------------------------------------------------------------------------------- /ServerCore/DBAgent/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/DBAgent/targetver.h -------------------------------------------------------------------------------- /ServerCore/LoginServer/LoginServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/LoginServer.cpp -------------------------------------------------------------------------------- /ServerCore/LoginServer/LoginServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/LoginServer.vcxproj -------------------------------------------------------------------------------- /ServerCore/LoginServer/LoginServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/LoginServer.vcxproj.filters -------------------------------------------------------------------------------- /ServerCore/LoginServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/ReadMe.txt -------------------------------------------------------------------------------- /ServerCore/LoginServer/Server/LoginProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/Server/LoginProcess.cpp -------------------------------------------------------------------------------- /ServerCore/LoginServer/Server/LoginProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/Server/LoginProcess.h -------------------------------------------------------------------------------- /ServerCore/LoginServer/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/config.xml -------------------------------------------------------------------------------- /ServerCore/LoginServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/stdafx.cpp -------------------------------------------------------------------------------- /ServerCore/LoginServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/stdafx.h -------------------------------------------------------------------------------- /ServerCore/LoginServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/LoginServer/targetver.h -------------------------------------------------------------------------------- /ServerCore/ServerCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerCore.sln -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Contents/ContentsProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Contents/ContentsProcess.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Contents/ContentsProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Contents/ContentsProcess.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/ADODatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/ADODatabase.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/ADODatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/ADODatabase.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/DBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/DBManager.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/DBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/DBManager.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/Database.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/Query.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/Query.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/QueryRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/QueryRecord.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/QueryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/QueryRecord.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/QueryStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/QueryStatement.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Database/QueryStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Database/QueryStatement.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Debug/msado15.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Debug/msado15.tli -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Asio/ASIOServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Asio/ASIOServer.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Asio/ASIOServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Asio/ASIOServer.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Asio/ASIOSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Asio/ASIOSession.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Asio/ASIOSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Asio/ASIOSession.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Iocp/IOCPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Iocp/IOCPServer.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Iocp/IOCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Iocp/IOCPServer.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Iocp/IOCPSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Iocp/IOCPSession.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Iocp/IOCPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Iocp/IOCPSession.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/Package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/Package.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketAnalyzer.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketAnalyzer.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketClass.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketFactory.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketHeader.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketObfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketObfuscation.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/PacketObfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/PacketObfuscation.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/Stream.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Packet/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Packet/Stream.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/PacketHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/PacketHeader.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/PacketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/PacketManager.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Server.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Server.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Session.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Session.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/SessionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/SessionManager.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/SessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/SessionManager.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/SessionMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/SessionMonitor.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/SessionMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/SessionMonitor.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Stream.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/Terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/Terminal.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/Terminal.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/TerminalManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/TerminalManager.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/TerminalManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/TerminalManager.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/TerminalSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/TerminalSession.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/Terminal/TerminalSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/Terminal/TerminalSession.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Net/WinSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Net/WinSocket.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/ReadMe.txt -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/ServerLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/ServerLibrary.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/ServerLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/ServerLibrary.vcxproj -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/ServerLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/ServerLibrary.vcxproj.filters -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Shutdown.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Shutdown.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Assert.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Assert.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Clock.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Clock.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Config.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Config.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/GameObject.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Lock.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Lock.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Logger.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Logger.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/MemoryLeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/MemoryLeak.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Memory_LowFragmentationHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Memory_LowFragmentationHeap.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Minidump.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Minidump.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Monitoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Monitoring.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/ProgramValidation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/ProgramValidation.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/RandomMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/RandomMT.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/SMTPMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/SMTPMail.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/SMTPMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/SMTPMail.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Singleton.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Table.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Task.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Task.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Thread.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Thread.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/ThreadJobQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/ThreadJobQueue.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Type.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/Util.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/csv_parser/csv_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/csv_parser/csv_parser.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/csv_parser/csv_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/csv_parser/csv_parser.hpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinystr.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinystr.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinyxml.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinyxml.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/Util/tinyXml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/Util/tinyXml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/stdafx.cpp -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/stdafx.h -------------------------------------------------------------------------------- /ServerCore/ServerLibrary/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/ServerCore/ServerLibrary/targetver.h -------------------------------------------------------------------------------- /packetMaker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/App.config -------------------------------------------------------------------------------- /packetMaker/ClassMakePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/ClassMakePacket.cs -------------------------------------------------------------------------------- /packetMaker/ClientClassMakePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/ClientClassMakePacket.cs -------------------------------------------------------------------------------- /packetMaker/ExcelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/ExcelParser.cs -------------------------------------------------------------------------------- /packetMaker/FactoryMakePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/FactoryMakePacket.cs -------------------------------------------------------------------------------- /packetMaker/HeaderMakePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/HeaderMakePacket.cs -------------------------------------------------------------------------------- /packetMaker/MakePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/MakePacket.cs -------------------------------------------------------------------------------- /packetMaker/MakePacketStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/MakePacketStruct.cs -------------------------------------------------------------------------------- /packetMaker/ParseExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/ParseExcel.cs -------------------------------------------------------------------------------- /packetMaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /packetMaker/bin/Debug/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/bin/Debug/Packet.h -------------------------------------------------------------------------------- /packetMaker/bin/Debug/PacketHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/bin/Debug/PacketHeader.h -------------------------------------------------------------------------------- /packetMaker/bin/Debug/packetMaker.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/bin/Debug/packetMaker.vshost.exe.config -------------------------------------------------------------------------------- /packetMaker/bin/Debug/packetMaker.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/bin/Debug/packetMaker.vshost.exe.manifest -------------------------------------------------------------------------------- /packetMaker/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/main.cs -------------------------------------------------------------------------------- /packetMaker/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packetMaker/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packetMaker/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packetMaker/packetData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/packetData.xlsx -------------------------------------------------------------------------------- /packetMaker/packetMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/packetMaker/packetMaker.csproj -------------------------------------------------------------------------------- /게임 기본 쿼리.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxywiz/RoseServer/HEAD/게임 기본 쿼리.sql --------------------------------------------------------------------------------