├── .gitattributes ├── .gitignore ├── BaseLayer ├── BaseLayer.vcxproj ├── BaseLayer.vcxproj.filters ├── BigNum.h ├── CMakeLists.txt ├── CPUDesc.cpp ├── CPUDesc.h ├── CSmtp.cpp ├── CSmtp.h ├── CStdString.h ├── CrashHandler.cpp ├── CrashHandler.h ├── Crypto │ ├── Crypto.cpp │ ├── Crypto.h │ ├── Key.h │ ├── md5Capi.cpp │ └── md5Capi.h ├── DelayedDirectoryChangeHandler.cpp ├── DelayedDirectoryChangeHandler.h ├── DirectoryChanges.cpp ├── DirectoryChanges.h ├── External │ ├── 7zAsm.asm │ ├── 7zCrcOpt.asm │ ├── 7zcrc.cpp │ ├── 7zcrc.h │ ├── CSmtp.cpp │ ├── CSmtp.h │ ├── base64.cpp │ ├── base64.h │ ├── crc.cpp │ ├── crc.h │ ├── md5.cpp │ └── md5.h ├── GPGLockFreeQueue.h ├── GeneralPool.cpp ├── GeneralPool.h ├── Logger │ ├── ACELogger.cpp │ └── ACELogger.h ├── Macro.h ├── ReadMe.txt ├── SFBitArray.cpp ├── SFBitArray.h ├── SFBreakPad.cpp ├── SFBreakPad.h ├── SFBugTrap.cpp ├── SFBugTrap.h ├── SFCompressLzf.cpp ├── SFCompressLzf.h ├── SFCompressZLib.cpp ├── SFCompressZLib.h ├── SFCompressor.h ├── SFConsumer.h ├── SFCustomHandler.cpp ├── SFCustomHandler.h ├── SFDiskManager.cpp ├── SFDiskManager.h ├── SFDispatch.h ├── SFEncryption.h ├── SFEncryptionXOR.cpp ├── SFEncryptionXOR.h ├── SFExceptionHandler.cpp ├── SFExceptionHandler.h ├── SFExceptionHandlerUtil.cpp ├── SFExceptionHandlerUtil.h ├── SFFString.cpp ├── SFFString.h ├── SFFastCRC.cpp ├── SFFastCRC.h ├── SFFilePack.cpp ├── SFFilePack.h ├── SFIOCPQueue.h ├── SFIni.cpp ├── SFIni.h ├── SFList.cpp ├── SFList.h ├── SFLock.h ├── SFLockDeque.h ├── SFLockQueue.h ├── SFMath.h ├── SFMinidump.cpp ├── SFMinidump.h ├── SFObjectPool.h ├── SFQueue.h ├── SFRegexChecker.cpp ├── SFRegexChecker.h ├── SFRegistry.cpp ├── SFRegistry.h ├── SFScheduler.h ├── SFServiceController.cpp ├── SFServiceController.h ├── SFStackWalker.cpp ├── SFStackWalker.h ├── SFString.h ├── SFSystemInfo.cpp ├── SFSystemInfo.h ├── SFTSSyncQueue.h ├── SFTimer.h ├── SFTree.h ├── SFUtil.cpp ├── SFUtil.h ├── StackWalker.cpp ├── StackWalker.h ├── TMXMap.cpp ├── TMXMap.h ├── TMXParser.cpp ├── TMXParser.h ├── TileLayer.cpp ├── TileLayer.h ├── TinyThread │ ├── fast_mutex.h │ ├── tinythread.cpp │ └── tinythread.h ├── VMemPool │ ├── BitSet.cpp │ ├── BitSet.h │ └── VMemPool.h ├── Window │ ├── UICmdEdit.cpp │ ├── UICmdEdit.h │ ├── UICmdMsgView.cpp │ ├── UICmdMsgView.h │ ├── UIFramework.cpp │ └── UIFramework.h ├── XML │ ├── IXMLSerializable.h │ ├── IXMLStreamReader.h │ ├── IXMLStreamWriter.h │ ├── Markup.cpp │ ├── Markup.h │ ├── SFXMLStreamReader.h │ ├── SFXMLStreamWriter.h │ ├── StringConversion.cpp │ ├── StringConversion.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── cpu_info.cpp ├── cpu_info.h ├── json │ ├── DataTypeConvertor.h │ ├── JsonBuilder.cpp │ ├── JsonBuilder.h │ ├── JsonNode.cpp │ ├── JsonNode.h │ ├── elements.h │ ├── elements.inl │ ├── reader.h │ ├── reader.inl │ ├── visitor.h │ ├── writer.h │ └── writer.inl ├── libconhash │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── configure.h │ ├── conhash.c │ ├── conhash.h │ ├── conhash_inter.c │ ├── conhash_inter.h │ ├── conhash_util.c │ ├── md5.c │ ├── md5.h │ ├── sample.c │ ├── util_rbtree.c │ ├── util_rbtree.h │ └── win32-prj │ │ ├── conhash.sln │ │ ├── conhash.vcproj │ │ ├── conhash.vcxproj │ │ ├── conhash.vcxproj.filters │ │ ├── sample.vcproj │ │ ├── sample.vcxproj │ │ └── sample.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CGSFTest ├── BaseLayerTest │ ├── ACELoggerTest.cpp │ ├── ACELoggerTest.h │ ├── ACETreeTest.cpp │ ├── ACETreeTest.h │ ├── BaseLayerTest.vcxproj │ ├── BaseLayerTest.vcxproj.filters │ ├── BitArrayTest.cpp │ ├── BitArrayTest.h │ ├── CGSFTest.cpp │ ├── CRCTest.cpp │ ├── CRCTest.h │ ├── CompressTest.cpp │ ├── CompressTest.h │ ├── CryptoTest.cpp │ ├── CryptoTest.h │ ├── DispatchTest.cpp │ ├── DispatchTest.h │ ├── DumpTest.cpp │ ├── DumpTest.h │ ├── EncryptTest.cpp │ ├── EncryptTest.h │ ├── FilePackingTest.cpp │ ├── FilePackingTest.h │ ├── GLogTest.cpp │ ├── GLogTest.h │ ├── INITest.cpp │ ├── INITest.h │ ├── ITest.h │ ├── LibfdsTest.cpp │ ├── LibfdsTest.h │ ├── LockQueueTest.cpp │ ├── LockQueueTest.h │ ├── PCRETest.cpp │ ├── PCRETest.h │ ├── ReadMe.txt │ ├── RegistryTest.cpp │ ├── RegistryTest.h │ ├── RexTest.cpp │ ├── RexTest.h │ ├── SFBaseClass.cpp │ ├── SFBaseClass.h │ ├── SFExcelTest.cpp │ ├── SFExcelTest.h │ ├── SFExtensionClass.cpp │ ├── SFExtensionClass.h │ ├── SFMathTest.cpp │ ├── SFMathTest.h │ ├── SFPacketHandler.cpp │ ├── SFPacketHandler.h │ ├── SQLite3Test.cpp │ ├── SQLite3Test.h │ ├── SchedulerTest.cpp │ ├── SchedulerTest.h │ ├── SendEMailTest.cpp │ ├── SendEMailTest.h │ ├── SerializationTest.cpp │ ├── SerializationTest.h │ ├── SparseHashTest.cpp │ ├── SparseHashTest.h │ ├── StringTest.cpp │ ├── StringTest.h │ ├── SystemCheckTest.cpp │ ├── SystemCheckTest.h │ ├── TomCryptTest.cpp │ ├── TomCryptTest.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── BigNum │ ├── BigNum.vcxproj │ ├── BigNum.vcxproj.filters │ ├── BigNumTest.cpp │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── CrashHandler │ ├── CrashHandler.vcxproj │ ├── CrashHandler.vcxproj.filters │ ├── CrashHandlerTest.cpp │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Database │ ├── Database.vcxproj │ ├── Database.vcxproj.filters │ ├── QueryIdentifier.h │ ├── ReadMe.txt │ ├── SFFastDBAdaptorImpl.cpp │ ├── SFFastDBAdaptorImpl.h │ ├── SFMSSQLAdaptorImpl.cpp │ ├── SFMSSQLAdaptorImpl.h │ ├── SFZdbAdaptorImpl.cpp │ ├── SFZdbAdaptorImpl.h │ ├── TestDatabase.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── WindowService │ ├── ReadMe.txt │ ├── WindowService.vcxproj │ ├── WindowService.vcxproj.filters │ ├── WindowServiceTest.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Common ├── BasePacket.h ├── CommonLayer.vcxproj ├── CommonLayer.vcxproj.filters ├── CommonStructure.h ├── EngineInterface │ ├── EngineConstant.h │ ├── EngineStructure.h │ ├── IEngine.h │ ├── INetworkCallback.h │ ├── INetworkEngine.h │ ├── IPacketProtocol.h │ ├── IServerCallback.h │ ├── ISession.h │ └── ISessionService.h ├── ErrorCode.h ├── GamePacketStructure.h ├── PeerInfo.h ├── ReadMe.txt ├── SFMessage.h ├── SFPacketStore │ ├── AvroProtocolPacket.hh │ ├── FPSPacket.pb.cc │ ├── FPSPacket.pb.h │ ├── FPSPacket.proto │ ├── FPSPacketID.h │ ├── Google.ProtocolBuffers.Serialization.dll │ ├── Google.ProtocolBuffers.dll │ ├── LoginNetPacket.proto │ ├── PacketCore.pb.cc │ ├── PacketCore.pb.h │ ├── PacketCore.proto │ ├── PacketGenerator.bat │ ├── PacketGenerator_withCS.bat │ ├── ProtoGenCS.exe │ ├── ProtocolPacket.pb.cc │ ├── ProtocolPacket.pb.h │ ├── ProtocolPacket.proto │ ├── ProtocolPacketID.h │ ├── SFPacketID.h │ ├── SFPacketStore.pb.cc │ ├── SFPacketStore.pb.h │ ├── SFPacketStore.proto │ ├── SevenGamePacket.pb.cc │ ├── SevenGamePacket.pb.h │ ├── SevenGamePacket.proto │ ├── SevenGamePacketID.h │ ├── avro │ │ ├── ProtocolPacket.json │ │ ├── avrocpp.dll │ │ ├── avrogencpp.exe │ │ ├── boost_program_options-vc120-mt-gd-1_55.dll │ │ └── command.txt │ ├── protoc-gen-cs.exe │ └── protoc.exe ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DatabaseLayer ├── CppDatabasePool │ ├── CommonDatabasePool.h │ ├── CrossHelper.cpp │ ├── CrossHelper.h │ ├── README.txt │ ├── examples │ │ ├── ExampleMySQL.cpp │ │ ├── ExampleOracle.cpp │ │ ├── ExampleSQLSvr.cpp │ │ ├── makefile.mysql │ │ ├── makefile.oracle │ │ └── makefile.sqlsvr │ ├── mysql │ │ ├── MySQLPool.cpp │ │ └── MySQLPool.h │ ├── oracle │ │ ├── OraclePool.cpp │ │ └── OraclePool.h │ └── sqlserver │ │ ├── SQLSvrPool.cpp │ │ └── SQLSvrPool.h ├── CppSQLite3.cpp ├── CppSQLite3.h ├── DBMsg.h ├── DBStruct.h ├── DatabaseLayer.vcxproj ├── DatabaseLayer.vcxproj.filters ├── IDBManager.h ├── ReadMe.txt ├── SFDBAdaptor.cpp ├── SFDBAdaptor.h ├── SFDBManager.cpp ├── SFDBManager.h ├── SFDBPacketSystem.h ├── SFDBRequest.cpp ├── SFDBRequest.h ├── SFDBWorker.cpp ├── SFDBWorker.h ├── SFDataBaseProxy.h ├── SFDatabase.cpp ├── SFDatabase.h ├── SFDatabaseProxyImpl.h ├── SFDatabaseProxyLocal.h ├── SFDatabaseProxyRemote.h ├── SFDatabaseSQLite.cpp ├── SFDatabaseSQLite.h ├── SFFastDB.cpp ├── SFFastDB.h ├── SFFastDBAdaptor.cpp ├── SFFastDBAdaptor.h ├── SFMSSQL.cpp ├── SFMSSQL.h ├── SFMSSQLAdaptor.cpp ├── SFMSSQLAdaptor.h ├── SFMySQL.cpp ├── SFMySQL.h ├── SFMySQLAdaptor.cpp ├── SFMySQLAdaptor.h ├── SFZdb.cpp ├── SFZdb.h ├── SFZdbAdpator.cpp ├── SFZdbAdpator.h ├── Script │ ├── mysql database setting.txt │ └── tblLogin.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Doc ├── CGSF 기본 프로젝트 생성.docx ├── CGSF_NETFramework.md ├── Config.md ├── NET_Sample.md └── Session.md ├── EngineLayer ├── ACEHeader.h ├── CommonHeader.h ├── CommunityManager.cpp ├── CommunityManager.h ├── DataBuffer.cpp ├── DataBuffer.h ├── EngineLayer.vcxproj ├── EngineLayer.vcxproj.filters ├── EngineLayer.vcxproj.user ├── GPGLockFree.h ├── IConnection.h ├── ILogicDispatcher.h ├── ILogicEntry.cpp ├── ILogicEntry.h ├── INetworkFramework.h ├── IPacketTask.h ├── IRPCService.h ├── LogicEntry.cpp ├── LogicEntry.h ├── RPC │ ├── CPstream.cpp │ ├── CPstream.h │ ├── IPersistence.h │ ├── arg.cpp │ ├── arg.hpp │ ├── proxy.hpp │ ├── serviceDef.h │ ├── service_define_template.h │ ├── service_err.hpp │ ├── service_method.h │ ├── testinterface.h │ ├── transport.hpp │ └── typetraits.hpp ├── RPCClientTransportLayer.cpp ├── RPCClientTransportLayer.h ├── RPCService.cpp ├── RPCService.h ├── ReadMe.txt ├── SFACEAllocator.h ├── SFAvroPacket.h ├── SFAvroPacketImpl.cpp ├── SFAvroPacketImpl.h ├── SFAvroProtocol.cpp ├── SFAvroProtocol.h ├── SFBasePacketProtocol.cpp ├── SFBasePacketProtocol.h ├── SFBridgeThread.cpp ├── SFBridgeThread.h ├── SFCGSFPacketProtocol.cpp ├── SFCGSFPacketProtocol.h ├── SFCasualGameDispatcher.cpp ├── SFCasualGameDispatcher.h ├── SFCheckSum.cpp ├── SFCheckSum.h ├── SFClassicDispatcher.cpp ├── SFClassicDispatcher.h ├── SFConfigure.cpp ├── SFConfigure.h ├── SFConstant.h ├── SFEchoPacket.cpp ├── SFEchoPacket.h ├── SFEchoProtocol.cpp ├── SFEchoProtocol.h ├── SFEngine.cpp ├── SFEngine.h ├── SFExcel.cpp ├── SFExcel.h ├── SFFactory.h ├── SFHTTPPacket.cpp ├── SFHTTPPacket.h ├── SFHTTPProtocol.cpp ├── SFHTTPProtocol.h ├── SFIOBuffer.cpp ├── SFIOBuffer.h ├── SFIOCPFramework.cpp ├── SFIOCPFramework.h ├── SFIOController.cpp ├── SFIOController.h ├── SFIni.cpp ├── SFIni.h ├── SFJsonPacket.cpp ├── SFJsonPacket.h ├── SFJsonProtocol.cpp ├── SFJsonProtocol.h ├── SFLogicDispatcher.cpp ├── SFLogicDispatcher.h ├── SFLogicGate.cpp ├── SFLogicGate.h ├── SFLogicGateway.cpp ├── SFLogicGateway.h ├── SFMGClient.cpp ├── SFMacro.h ├── SFMsgPackPacket.cpp ├── SFMsgPackPacket.h ├── SFMsgPackProtocol.cpp ├── SFMsgPackProtocol.h ├── SFMulitiCasualGameDispatcher.cpp ├── SFMulitiCasualGameDispatcher.h ├── SFNetworkEntry.cpp ├── SFNetworkEntry.h ├── SFObject.cpp ├── SFObject.h ├── SFObserver.cpp ├── SFObserver.h ├── SFPacket.cpp ├── SFPacket.h ├── SFPacketDelaySendTask.cpp ├── SFPacketDelaySendTask.h ├── SFPacketIOBuffer.cpp ├── SFPacketIOBuffer.h ├── SFPacketProtocol.cpp ├── SFPacketProtocol.h ├── SFPacketProtocolManager.cpp ├── SFPacketProtocolManager.h ├── SFPacketSendGateway.cpp ├── SFPacketSendGateway.h ├── SFProducer.h ├── SFProtobufPacket.cpp ├── SFProtobufPacket.h ├── SFProtobufPacketImpl.cpp ├── SFProtobufPacketImpl.h ├── SFProtobufProtocol.cpp ├── SFProtobufProtocol.h ├── SFProtocol.cpp ├── SFProtocol.h ├── SFRPCGateway.cpp ├── SFRPCGateway.h ├── SFServerConnectionManager.cpp ├── SFServerConnectionManager.h ├── SFSessionService.cpp ├── SFSessionService.h ├── SFShouter.cpp ├── SFShouter.h ├── SFSinglton.h ├── SFStructure.h ├── SFSubject.cpp ├── SFSubject.h ├── SFTCPNetwork.cpp ├── SFTCPNetwork.h ├── SFUDPNetwork.cpp ├── SFUDPNetwork.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LogicLayer ├── CasualGame │ ├── CasualGame.vcxproj │ ├── CasualGame.vcxproj.filters │ ├── ReadMe.txt │ ├── SFCGProtobufClientProtocol.cpp │ ├── SFCGProtobufClientProtocol.h │ ├── SFCGProtobufProtocol.cpp │ ├── SFCGProtobufProtocol.h │ ├── SFDBProcessorODBC.cpp │ ├── SFDBProcessorODBC.h │ ├── SFDirectoryWatcher.cpp │ ├── SFDirectoryWatcher.h │ ├── SFDirectoryWatcherTask.cpp │ ├── SFDirectoryWatcherTask.h │ ├── SFGameConstant.h │ ├── SFGameMode.cpp │ ├── SFGameMode.h │ ├── SFGameModeFSM.cpp │ ├── SFGameModeFSM.h │ ├── SFGameStructure.h │ ├── SFLobby.cpp │ ├── SFLobby.h │ ├── SFLogicContents.cpp │ ├── SFLogicContents.h │ ├── SFLogicCore.cpp │ ├── SFLogicCore.h │ ├── SFLogicEntry.cpp │ ├── SFLogicEntry.h │ ├── SFMySQLAdaptorImpl.cpp │ ├── SFMySQLAdaptorImpl.h │ ├── SFP2PSys.cpp │ ├── SFP2PSys.h │ ├── SFPlayer.cpp │ ├── SFPlayer.h │ ├── SFPlayerFSM.cpp │ ├── SFPlayerFSM.h │ ├── SFPlayerInit.cpp │ ├── SFPlayerInit.h │ ├── SFPlayerLoading.cpp │ ├── SFPlayerLoading.h │ ├── SFPlayerLobby.cpp │ ├── SFPlayerLobby.h │ ├── SFPlayerLogin.cpp │ ├── SFPlayerLogin.h │ ├── SFPlayerManager.cpp │ ├── SFPlayerManager.h │ ├── SFPlayerNone.cpp │ ├── SFPlayerNone.h │ ├── SFPlayerPlay.cpp │ ├── SFPlayerPlay.h │ ├── SFPlayerPlayEnd.cpp │ ├── SFPlayerPlayEnd.h │ ├── SFPlayerPlayReady.cpp │ ├── SFPlayerPlayReady.h │ ├── SFPlayerRoom.cpp │ ├── SFPlayerRoom.h │ ├── SFPlayerState.cpp │ ├── SFPlayerState.h │ ├── SFReqMySQL.cpp │ ├── SFReqMySQL.h │ ├── SFRoom.cpp │ ├── SFRoom.h │ ├── SFRoomFSM.cpp │ ├── SFRoomFSM.h │ ├── SFRoomLoading.cpp │ ├── SFRoomLoading.h │ ├── SFRoomManager.cpp │ ├── SFRoomManager.h │ ├── SFRoomNone.cpp │ ├── SFRoomNone.h │ ├── SFRoomPlay.cpp │ ├── SFRoomPlay.h │ ├── SFRoomPlayEnd.cpp │ ├── SFRoomPlayEnd.h │ ├── SFRoomPlayReady.cpp │ ├── SFRoomPlayReady.h │ ├── SFRoomState.cpp │ ├── SFRoomState.h │ ├── SFRoomWait.cpp │ ├── SFRoomWait.h │ ├── SFSendPacket.cpp │ ├── SFSendPacket.h │ ├── SFTeam.cpp │ ├── SFTeam.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── MOGame │ ├── MOGame.vcxproj │ ├── MOGame.vcxproj.filters │ ├── MOGame.vcxproj.user │ ├── ReadMe.txt │ ├── abilitycomponent.cpp │ ├── abilitycomponent.h │ ├── abilitymanager.cpp │ ├── abilitymanager.h │ ├── account-server │ ├── account.cpp │ ├── account.h │ ├── accountclient.cpp │ ├── accountclient.h │ ├── accounthandler.cpp │ ├── accounthandler.h │ ├── accountserver.cpp │ ├── character.cpp │ ├── character.h │ ├── flooritem.h │ ├── main-account.cpp │ ├── mapmanager.cpp │ ├── mapmanager.h │ ├── serverhandler.cpp │ ├── serverhandler.h │ ├── storage.cpp │ └── storage.h │ ├── accountconnection.cpp │ ├── accountconnection.h │ ├── actorcomponent.cpp │ ├── actorcomponent.h │ ├── attribute.cpp │ ├── attribute.h │ ├── attributeinfo.cpp │ ├── attributeinfo.h │ ├── attributemanager.cpp │ ├── attributemanager.h │ ├── being.cpp │ ├── being.h │ ├── buysell.cpp │ ├── buysell.h │ ├── charactercomponent.cpp │ ├── charactercomponent.h │ ├── chat-server │ ├── chatchannel.cpp │ ├── chatchannel.h │ ├── chatchannelmanager.cpp │ ├── chatchannelmanager.h │ ├── chatclient.h │ ├── chathandler.cpp │ ├── chathandler.h │ ├── guild.cpp │ ├── guild.h │ ├── guildhandler.cpp │ ├── guildmanager.cpp │ ├── guildmanager.h │ ├── party.cpp │ ├── party.h │ ├── partyhandler.cpp │ ├── post.cpp │ └── post.h │ ├── collisiondetection.cpp │ ├── collisiondetection.h │ ├── commandhandler.cpp │ ├── commandhandler.h │ ├── common │ ├── configuration.cpp │ ├── configuration.h │ ├── defines.h │ ├── inventorydata.h │ ├── manaserv_protocol.h │ ├── permissionmanager.cpp │ ├── permissionmanager.h │ ├── resourcemanager.cpp │ ├── resourcemanager.h │ └── transaction.h │ ├── component.h │ ├── dal │ ├── dalexcept.h │ ├── dataprovider.cpp │ ├── dataprovider.h │ ├── dataproviderfactory.cpp │ ├── dataproviderfactory.h │ ├── mysqldataprovider.cpp │ ├── mysqldataprovider.h │ ├── pqdataprovider.cpp │ ├── pqdataprovider.h │ ├── recordset.cpp │ ├── recordset.h │ ├── sqlitedataprovider.cpp │ └── sqlitedataprovider.h │ ├── effect.cpp │ ├── effect.h │ ├── emotemanager.cpp │ ├── emotemanager.h │ ├── entity.cpp │ ├── entity.h │ ├── gamehandler.cpp │ ├── gamehandler.h │ ├── idmanager.h │ ├── inventory.cpp │ ├── inventory.h │ ├── item.cpp │ ├── item.h │ ├── itemmanager.cpp │ ├── itemmanager.h │ ├── main-game.cpp │ ├── map.cpp │ ├── map.h │ ├── mapcomposite.cpp │ ├── mapcomposite.h │ ├── mapmanager.cpp │ ├── mapmanager.h │ ├── mapreader.cpp │ ├── mapreader.h │ ├── monster.cpp │ ├── monster.h │ ├── monstermanager.cpp │ ├── monstermanager.h │ ├── net │ ├── bandwidth.cpp │ ├── bandwidth.h │ ├── connection.cpp │ ├── connection.h │ ├── connectionhandler.cpp │ ├── connectionhandler.h │ ├── messagein.cpp │ ├── messagein.h │ ├── messageout.cpp │ ├── messageout.h │ ├── netcomputer.cpp │ └── netcomputer.h │ ├── npc.cpp │ ├── npc.h │ ├── postman.h │ ├── quest.cpp │ ├── quest.h │ ├── scripting │ ├── lua.cpp │ ├── luascript.cpp │ ├── luascript.h │ ├── luautil.cpp │ ├── luautil.h │ ├── script.cpp │ ├── script.h │ ├── scriptmanager.cpp │ └── scriptmanager.h │ ├── settingsmanager.cpp │ ├── settingsmanager.h │ ├── spawnareacomponent.cpp │ ├── spawnareacomponent.h │ ├── sql │ ├── mysql │ │ ├── createDatabase.sql │ │ ├── createTables.sql │ │ └── updates │ │ │ ├── update_10_to_11.sql │ │ │ ├── update_11_to_12.sql │ │ │ ├── update_12_to_13.sql │ │ │ ├── update_13_to_14.sql │ │ │ ├── update_14_to_16.sql │ │ │ ├── update_16_to_17.sql │ │ │ ├── update_17_to_18.sql │ │ │ ├── update_18_to_19.sql │ │ │ ├── update_19_to_20.sql │ │ │ ├── update_1_to_2.sql │ │ │ ├── update_20_to_21.sql │ │ │ ├── update_21_to_22.sql │ │ │ ├── update_22_to_23.sql │ │ │ ├── update_23_to_24.sql │ │ │ ├── update_24_to_25.sql │ │ │ ├── update_25_to_26.sql │ │ │ ├── update_2_to_3.sql │ │ │ ├── update_7_to_8.sql │ │ │ ├── update_8_to_9.sql │ │ │ └── update_9_to_10.sql │ ├── postgresql │ │ └── createTables.sql │ └── sqlite │ │ ├── createTables.sql │ │ └── updates │ │ ├── update_10_to_11.sql │ │ ├── update_11_to_12.sql │ │ ├── update_12_to_13.sql │ │ ├── update_13_to_14.sql │ │ ├── update_14_to_16.sql │ │ ├── update_16_to_17.sql │ │ ├── update_17_to_18.sql │ │ ├── update_18_to_19.sql │ │ ├── update_19_to_20.sql │ │ ├── update_1_to_2.sql │ │ ├── update_20_to_21.sql │ │ ├── update_21_to_22.sql │ │ ├── update_22_to_23.sql │ │ ├── update_23_to_24.sql │ │ ├── update_24_to_25.sql │ │ ├── update_25_to_26.sql │ │ ├── update_2_to_3.sql │ │ ├── update_3_to_4.sql │ │ ├── update_4_to_5.sql │ │ ├── update_5_to_6.sql │ │ ├── update_6_to_7.sql │ │ ├── update_7_to_8.sql │ │ ├── update_8_to_9.sql │ │ └── update_9_to_10.sql │ ├── state.cpp │ ├── state.h │ ├── statuseffect.cpp │ ├── statuseffect.h │ ├── statusmanager.cpp │ ├── statusmanager.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── timeout.cpp │ ├── timeout.h │ ├── trade.cpp │ ├── trade.h │ ├── triggerareacomponent.cpp │ ├── triggerareacomponent.h │ └── utils │ ├── base64.cpp │ ├── base64.h │ ├── functors.h │ ├── logger.cpp │ ├── logger.h │ ├── mathutils.cpp │ ├── mathutils.h │ ├── point.h │ ├── processorutils.cpp │ ├── processorutils.h │ ├── sha256.cpp │ ├── sha256.h │ ├── speedconv.cpp │ ├── speedconv.h │ ├── string.cpp │ ├── string.h │ ├── stringfilter.cpp │ ├── stringfilter.h │ ├── throwerror.h │ ├── time.h │ ├── timer.cpp │ ├── timer.h │ ├── tokencollector.cpp │ ├── tokencollector.h │ ├── tokendispenser.cpp │ ├── tokendispenser.h │ ├── xml.cpp │ ├── xml.h │ ├── zlib.cpp │ └── zlib.h ├── NETFramework ├── CGSFNETCommon │ ├── CGSFNETCommon.csproj │ ├── CGSFNETCommon.sln │ ├── ClientSimpleTcp.cs │ ├── DevLog.cs │ ├── FileLogger.cs │ ├── JsonEnDecode.cs │ ├── NLog.config │ ├── NLog.xsd │ ├── PacketBufferManager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── packages.config │ └── packages │ │ └── repositories.config ├── CgsfNET64LibProject │ ├── 3DESEncrypt.h │ ├── AESEncrypt.h │ ├── AssemblyInfo.cpp │ ├── CgsfNET64.cpp │ ├── CgsfNET64.h │ ├── CgsfNET64Lib.filters │ ├── CgsfNET64Lib.sln │ ├── CgsfNET64Lib.vcxproj │ ├── CgsfNET64Lib.vcxproj.filters │ ├── Compress.h │ ├── ConcurrencyPacketQueue.h │ ├── DESEncrypt.h │ ├── DefineValue.h │ ├── FRAMEWORK_ERROR_CODE.h │ ├── Helper.h │ ├── SFNETDispatcher.cpp │ ├── SFNETDispatcher.h │ ├── SFNETPacket.h │ ├── ServerConnectReceiveCallback.h │ ├── ServerLogicEntry.h │ ├── Stdafx.cpp │ ├── Stdafx.h │ ├── app.ico │ ├── app.rc │ └── resource.h ├── Lib │ └── Lib list.txt └── SampleProject │ ├── Chat1 │ ├── Client │ │ ├── App.config │ │ ├── ChatClient1.csproj │ │ ├── ChatClient1.sln │ │ ├── License.txt │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketDefine.cs │ │ ├── PacketHandler.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ └── packages │ │ │ └── repositories.config │ └── Server │ │ ├── App.config │ │ ├── ChatServer1.csproj │ │ ├── ChatServer1.sln │ │ ├── ConnectUserManager.cs │ │ ├── InnerMessageQueue.cs │ │ ├── License.txt │ │ ├── Lobby.cs │ │ ├── LobbyManager.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketDefine.cs │ │ ├── PktBaseHandler.cs │ │ ├── PktCommonHandler.cs │ │ ├── PktHandlerManager.cs │ │ ├── PktLobbyHandler.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ServerNetwork.cs │ │ ├── packages.config │ │ └── packages │ │ └── repositories.config │ ├── Chat2 │ ├── CSCommonLib │ │ ├── CSCommonLib.csproj │ │ ├── CSCommonLib.sln │ │ ├── PacketDefine.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ChatServerHost │ │ ├── App.config │ │ ├── ChatServerHost.csproj │ │ ├── ChatServerHost.sln │ │ ├── License.txt │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ └── packages │ │ │ └── repositories.config │ ├── ChatServerLib │ │ ├── ChatServerLib.csproj │ │ ├── ChatServerLib.sln │ │ ├── ConnectUser.cs │ │ ├── ConnectUserManager.cs │ │ ├── DB │ │ │ ├── DBData.cs │ │ │ ├── DBManager.cs │ │ │ └── RequestHandler.cs │ │ ├── InnerMessageQueue.cs │ │ ├── License.txt │ │ ├── Lobby │ │ │ ├── Lobby.cs │ │ │ ├── LobbyManager.cs │ │ │ └── LobbyUser.cs │ │ ├── MainLib.cs │ │ ├── MainPacketProcessSystem.cs │ │ ├── PacketHandler │ │ │ ├── Base.cs │ │ │ ├── Common.cs │ │ │ ├── Lobby.cs │ │ │ └── LobbyMethod.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RelayPacketPacketProcess.cs │ │ ├── ServerNetwork.cs │ │ ├── WorkPacketProcessSystem.cs │ │ ├── packages.config │ │ └── packages │ │ │ └── repositories.config │ └── Client │ │ ├── App.config │ │ ├── ChatClient.csproj │ │ ├── ChatClient.sln │ │ ├── License.txt │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketHandler.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── packages.config │ │ └── packages │ │ └── repositories.config │ ├── Echo │ ├── EchoClient │ │ ├── App.config │ │ ├── EchoClient.csproj │ │ ├── EchoClient.sln │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ └── packages │ │ │ └── repositories.config │ └── EchoServer │ │ ├── App.config │ │ ├── EchoServer.csproj │ │ ├── EchoServer.sln │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ServerNetwork.cs │ │ ├── packages.config │ │ └── packages │ │ └── repositories.config │ ├── MultiListener │ ├── Client │ │ ├── App.config │ │ ├── Client.csproj │ │ ├── Client.sln │ │ ├── License.txt │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketDefine.cs │ │ ├── PacketHandler.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ └── packages │ │ │ └── repositories.config │ └── Server │ │ ├── App.config │ │ ├── ConnectUserManager.cs │ │ ├── InnerMessageQueue.cs │ │ ├── License.txt │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketDefine.cs │ │ ├── PktBaseHandler.cs │ │ ├── PktCommonHandler.cs │ │ ├── PktHandlerManager.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Server.csproj │ │ ├── Server.sln │ │ ├── ServerNetwork.cs │ │ ├── packages.config │ │ └── packages │ │ └── repositories.config │ └── MultiServer │ ├── Client │ ├── App.config │ ├── Client.csproj │ ├── Client.sln │ ├── License.txt │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PacketDefine.cs │ ├── PacketHandler.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── packages.config │ └── packages │ │ └── repositories.config │ ├── GameServer │ ├── App.config │ ├── ConnectServerManager.cs │ ├── GameServer.csproj │ ├── GameServer.sln │ ├── InnerMessageQueue.cs │ ├── License.txt │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PacketDefine.cs │ ├── PktBaseHandler.cs │ ├── PktCommonHandler.cs │ ├── PktHandlerManager.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ServerNetwork.cs │ ├── packages.config │ └── packages │ │ └── repositories.config │ └── GateWayServer │ ├── App.config │ ├── ConnectUserManager.cs │ ├── GateWayServer.csproj │ ├── GateWayServer.sln │ ├── InnerMessageQueue.cs │ ├── License.txt │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PacketDefine.cs │ ├── PktBaseHandler.cs │ ├── PktCommonHandler.cs │ ├── PktHandlerManager.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ServerNetwork.cs │ ├── packages.config │ └── packages │ └── repositories.config ├── NetworkLayer ├── ASIONet │ ├── ASIOClient.h │ ├── ASIOEngine.cpp │ ├── ASIOEngine.h │ ├── ASIONet.vcxproj │ ├── ASIONet.vcxproj.filters │ ├── ASIOServer.h │ ├── Protocol.h │ ├── ServerSession.cpp │ └── ServerSession.h ├── CGSFNet │ ├── ACEEngine.cpp │ ├── ACEEngine.h │ ├── ACEHeader.h │ ├── ACETimeOutHandler.h │ ├── CGSFNet.vcxproj │ ├── CGSFNet.vcxproj.filters │ ├── IDMap.h │ ├── InterlockedValue.cpp │ ├── InterlockedValue.h │ ├── Lock.h │ ├── ProactorAcceptor.cpp │ ├── ProactorAcceptor.h │ ├── ProactorService.cpp │ ├── ProactorService.h │ ├── ProactorServiceManager.h │ ├── ProactorWorkerThread.cpp │ ├── ProactorWorkerThread.h │ ├── Queue.h │ └── SingltonObject.h └── MGNet │ ├── MGClientReceiver.cpp │ ├── MGClientReceiver.h │ ├── MGEngine.cpp │ ├── MGEngine.h │ ├── MGNet.vcxproj │ ├── MGNet.vcxproj.filters │ ├── MGServerReceiver.cpp │ ├── MGServerReceiver.h │ ├── include │ ├── ASIOManager.h │ ├── Acceptor.h │ ├── AsynchIOService.h │ ├── DataBuffer.h │ ├── ExceptionReport.h │ ├── PathFinder.h │ ├── Queue.h │ ├── RichODBC.h │ ├── StreamData.h │ ├── Synchronized.h │ ├── Thread.h │ ├── TraditionalMemoryPool.h │ ├── asios.h │ ├── maths.h │ ├── mytypedef.h │ ├── variver.h │ ├── variverd.h │ └── variverr.h │ └── lib │ ├── MyServerLib.lib │ ├── MyServerLib_d.lib │ ├── MyServerLibx64DS.lib │ └── MyServerLibx64RS.lib ├── P2PLayer ├── Common │ ├── P2PCommon.h │ └── SDLP2PCommon.h ├── Interface │ ├── IP2PManager.h │ ├── IUDPNetworkCallback.h │ ├── P2PClient.h │ ├── P2PData.h │ └── P2PServer.h ├── OCFP2PClient │ ├── AccessAll.h │ ├── AllOcfClient.cpp │ ├── AllOcfClient.h │ ├── AllOcfClientSys.h │ ├── CriticalSessionClient.cpp │ ├── CriticalSessionClient.h │ ├── CtrlMem.cpp │ ├── CtrlMem.h │ ├── CtrlPeers.cpp │ ├── CtrlPeers.h │ ├── Data.cpp │ ├── Data.h │ ├── DataStructureClient.cpp │ ├── DataStructureClient.h │ ├── MemChunk.cpp │ ├── MemChunk.h │ ├── MemPool.h │ ├── OCFP2PClient.cpp │ ├── OCFP2PClient.vcxproj │ ├── OCFP2PClient.vcxproj.filters │ ├── OcfCommConst.h │ ├── P2PManager.cpp │ ├── P2PManager.h │ ├── PeerInfo.cpp │ ├── PeerInfo.h │ ├── PuCfg.cpp │ ├── PuCfg.h │ ├── PuLog.cpp │ ├── PuLog.h │ ├── PuPeers.cpp │ ├── PuPeers.h │ ├── PuPktStructure.h │ ├── ReadMe.txt │ ├── SmartX.h │ ├── ThreadCtrlClient.cpp │ ├── ThreadCtrlClient.h │ ├── UdpCommClient.cpp │ ├── UdpCommClient.h │ ├── UdpPacketNode.cpp │ ├── UdpPacketNode.h │ ├── dllmain.cpp │ └── targetver.h ├── OCFP2PServer │ ├── AllOcfCli.h │ ├── AllOcfCliSys.h │ ├── AllRelay.h │ ├── Common.h │ ├── Critical.cpp │ ├── Critical.h │ ├── CtrlMem.cpp │ ├── CtrlMem.h │ ├── DataSt.cpp │ ├── DataSt.h │ ├── InitUdpServerSock.cpp │ ├── InitUdpServerSock.h │ ├── MemChunk.cpp │ ├── MemChunk.h │ ├── MemPool.h │ ├── OCFP2PServer.cpp │ ├── OCFP2PServer.vcxproj │ ├── OCFP2PServer.vcxproj.filters │ ├── OcfPkt.h │ ├── PuPktStructure.h │ ├── ReadMe.txt │ ├── RelaySlave.cpp │ ├── RelaySlave.h │ ├── ThreadCtrlClient.cpp │ ├── ThreadCtrlClient.h │ ├── dllmain.cpp │ └── targetver.h ├── SDLP2PClient │ ├── P2PManager.cpp │ ├── P2PManager.h │ ├── SDLP2PClient.cpp │ ├── SDLP2PClient.vcxproj │ └── SDLP2PClient.vcxproj.filters └── SDLP2PServer │ ├── SDLP2PServer.cpp │ ├── SDLP2PServer.vcxproj │ └── SDLP2PServer.vcxproj.filters ├── README.md ├── Sample ├── CasualGameGUI │ ├── CasualGameGUI.cpp │ ├── CasualGameGUI.h │ ├── CasualGameGUI.vcxproj │ ├── CasualGameGUI.vcxproj.filters │ ├── CasualGameManager.cpp │ ├── CasualGameManager.h │ ├── GUIFSM.cpp │ ├── GUIFSM.h │ ├── GUIGame.cpp │ ├── GUIGame.h │ ├── GUIInit.cpp │ ├── GUIInit.h │ ├── GUILoading.cpp │ ├── GUILoading.h │ ├── GUILobby.cpp │ ├── GUILobby.h │ ├── GUILogin.cpp │ ├── GUILogin.h │ ├── GUIMessageBox.cpp │ ├── GUIMessageBox.h │ ├── GUIRoom.cpp │ ├── GUIRoom.h │ ├── GUIState.h │ ├── IGameMain.h │ ├── NetworkSystem.cpp │ ├── NetworkSystem.h │ ├── QuitMessageBox.cpp │ ├── QuitMessageBox.h │ ├── ReadMe.txt │ ├── TCPCallback.cpp │ ├── TCPCallback.h │ ├── UDPCallback.cpp │ ├── UDPCallback.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ChatClient │ ├── ChatCallback.cpp │ ├── ChatCallback.h │ ├── ChatClient.cpp │ ├── ChatClient.vcxproj │ ├── ChatClient.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ChatClientAndroid │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── JavaSockets_0_1.xml │ │ │ └── com_googlecode_json_simple_json_simple_1_1.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── AndroidManifest.xml │ ├── ChatClientAndroid.iml │ ├── ant.properties │ ├── build.xml │ ├── gen │ │ └── com │ │ │ └── cgsf │ │ │ └── chatclientandroid │ │ │ ├── BuildConfig.java │ │ │ ├── Manifest.java │ │ │ └── R.java │ ├── lib │ │ ├── JavaSockets-0.1.jar │ │ └── json-simple-1.1.jar │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── cgsf │ │ └── chatclientandroid │ │ ├── ChatActivity.java │ │ ├── ChatClient.java │ │ └── ChatClientSocket.java ├── ChatClientNET │ ├── App.config │ ├── ChatClientNET.csproj │ ├── ChatClientNET.sln │ ├── ClientNetwork.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PacketBufferManager.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── UILog.cs │ ├── packages.config │ └── packages │ │ ├── Newtonsoft.Json.6.0.2 │ │ ├── Newtonsoft.Json.6.0.2.nupkg │ │ ├── lib │ │ │ ├── net20 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netcore45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── portable-net40+sl5+wp80+win8+monotouch+monoandroid │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── portable-net45+wp80+win8+wpa81 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ └── tools │ │ │ └── install.ps1 │ │ └── repositories.config ├── ChatServer │ ├── ChatLogicEntry.cpp │ ├── ChatLogicEntry.h │ ├── ChatServer.cpp │ ├── ChatServer.vcxproj │ ├── ChatServer.vcxproj.filters │ ├── ChatUser.cpp │ ├── ChatUser.h │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Common │ └── RPCProject │ │ ├── testclient.cpp │ │ ├── testclient.h │ │ └── testinterface.h ├── EchoClient │ ├── EchoCallback.cpp │ ├── EchoCallback.h │ ├── EchoClient.cpp │ ├── EchoClient.vcxproj │ ├── EchoClient.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EchoServer │ ├── EchoLogicEntry.cpp │ ├── EchoLogicEntry.h │ ├── EchoServer.cpp │ ├── EchoServer.vcxproj │ ├── EchoServer.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── FPSClient │ ├── FPSClient │ │ ├── Bullet.cpp │ │ ├── Bullet.h │ │ ├── CEGUI.log │ │ ├── FPSClient.vcxproj │ │ ├── FPSClient.vcxproj.filters │ │ ├── FPSGameMain.cpp │ │ ├── FPSGameMain.h │ │ ├── FPSMain.cpp │ │ ├── FPSMain.h │ │ ├── FPSMain.ico │ │ ├── FPSMain.rc │ │ ├── FPSProtocol.cpp │ │ ├── FPSProtocol.h │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── GameMaterial.cpp │ │ ├── GameMaterial.h │ │ ├── PlayerManager.cpp │ │ ├── PlayerManager.h │ │ ├── PlayerObject.cpp │ │ ├── PlayerObject.h │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── Wait.cpp │ │ ├── Wait.h │ │ ├── Weapon.cpp │ │ ├── Weapon.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── FPSEngine │ │ ├── AnimatedObject.cpp │ │ ├── AnimatedObject.h │ │ ├── BoundingVolume.cpp │ │ ├── BoundingVolume.h │ │ ├── CollisionDetection.h │ │ ├── DeviceEnumeration.cpp │ │ ├── DeviceEnumeration.h │ │ ├── Engine.cpp │ │ ├── Engine.h │ │ ├── FPSEngine.vcxproj │ │ ├── FPSEngine.vcxproj.filters │ │ ├── Font.cpp │ │ ├── Font.h │ │ ├── Geometry.h │ │ ├── Input.cpp │ │ ├── Input.h │ │ ├── LinkedList.h │ │ ├── Material.cpp │ │ ├── Material.h │ │ ├── Mesh.cpp │ │ ├── Mesh.h │ │ ├── Network.cpp │ │ ├── Network.h │ │ ├── ReadMe.txt │ │ ├── RenderCache.cpp │ │ ├── RenderCache.h │ │ ├── Resource.h │ │ ├── ResourceManagement.h │ │ ├── SceneManager.cpp │ │ ├── SceneManager.h │ │ ├── SceneObject.cpp │ │ ├── SceneObject.h │ │ ├── Scripting.cpp │ │ ├── Scripting.h │ │ ├── SoundSystem.cpp │ │ ├── SoundSystem.h │ │ ├── SpawnerObject.cpp │ │ ├── SpawnerObject.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── ViewFrustum.cpp │ │ ├── ViewFrustum.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── FPSServer │ ├── FPSProtocol.cpp │ ├── FPSProtocol.h │ ├── FPSSendPacket.cpp │ ├── FPSSendPacket.h │ ├── FPSServer.cpp │ ├── FPSServer.vcxproj │ ├── FPSServer.vcxproj.filters │ ├── GameModeConstant.h │ ├── ReadMe.txt │ ├── SFFreeForAll.cpp │ ├── SFFreeForAll.h │ ├── SFSuddenDeath.cpp │ ├── SFSuddenDeath.h │ ├── SFTeamDeathMatch.cpp │ ├── SFTeamDeathMatch.h │ ├── SFTraining.cpp │ ├── SFTraining.h │ ├── UDPNetworkCallback.cpp │ ├── UDPNetworkCallback.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── HTTPServer │ ├── HTTPLogicEntry.cpp │ ├── HTTPLogicEntry.h │ ├── HTTPServer.cpp │ ├── HTTPServer.vcxproj │ ├── HTTPServer.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ManaServer │ ├── ManaServer.cpp │ ├── ManaServer.vcxproj │ ├── ManaServer.vcxproj.filters │ ├── ManaServer.vcxproj.user │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── MultiThreadServer │ ├── MultiThreadServerConsole │ │ ├── MultiThreadServerConsole.cpp │ │ ├── MultiThreadServerConsole.sln │ │ ├── MultiThreadServerConsole.vcxproj │ │ ├── MultiThreadServerConsole.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── ServerLib │ │ ├── PacketDispatcher.cpp │ │ ├── PacketDispatcher.h │ │ ├── PacketDistribute.cpp │ │ ├── PacketDistribute.h │ │ ├── PktHandlerCommon.cpp │ │ ├── PktHandlerCommon.h │ │ ├── PktHandlerLobby.cpp │ │ ├── PktHandlerLobby.h │ │ ├── Protocol.h │ │ ├── ServerConnectorCallback.h │ │ ├── ServerErrorCode.h │ │ ├── ServerLib.sln │ │ ├── ServerLib.vcxproj │ │ ├── ServerLib.vcxproj.filters │ │ ├── ServerNetwork.cpp │ │ ├── ServerNetwork.h │ │ ├── SubPacketProcess.cpp │ │ ├── SubPacketProcess.h │ │ ├── WorkerPacket.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── ProtocolClient │ ├── AvroClientProtocol.cpp │ ├── AvroClientProtocol.h │ ├── Input.cpp │ ├── Input.h │ ├── ProtocolCallback.cpp │ ├── ProtocolCallback.h │ ├── ProtocolClient.cpp │ ├── ProtocolClient.vcxproj │ ├── ProtocolClient.vcxproj.filters │ ├── ProtocolClientProtocol.cpp │ ├── ProtocolClientProtocol.h │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ProtocolServer │ ├── ProtocolAvroHandler.cpp │ ├── ProtocolAvroHandler.h │ ├── ProtocolAvroProtocol.cpp │ ├── ProtocolAvroProtocol.h │ ├── ProtocolCGSFHandler.cpp │ ├── ProtocolCGSFHandler.h │ ├── ProtocolLogicEntry.h │ ├── ProtocolMsgPackHandler.cpp │ ├── ProtocolMsgPackHandler.h │ ├── ProtocolProtobufHandler.cpp │ ├── ProtocolProtobufHandler.h │ ├── ProtocolServer.cpp │ ├── ProtocolServer.vcxproj │ ├── ProtocolServer.vcxproj.filters │ ├── ProtocolServerProtocol.cpp │ ├── ProtocolServerProtocol.h │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── RPCClient │ ├── RPCCallback.cpp │ ├── RPCCallback.h │ ├── RPCClient.cpp │ ├── RPCClient.vcxproj │ ├── RPCClient.vcxproj.filters │ ├── RPCFuture.cpp │ ├── RPCFuture.h │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── RPCServer │ ├── RPCLogicEntry.cpp │ ├── RPCLogicEntry.h │ ├── RPCServer.cpp │ ├── RPCServer.vcxproj │ ├── RPCServer.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── RawSocket │ ├── Ajp13Socket.cpp │ ├── Ajp13Socket.h │ ├── AjpBaseSocket.cpp │ ├── AjpBaseSocket.h │ ├── Base64.cpp │ ├── Base64.h │ ├── Changelog │ ├── Debug.cpp │ ├── Debug.h │ ├── Event.cpp │ ├── Event.h │ ├── EventHandler.cpp │ ├── EventHandler.h │ ├── EventTime.cpp │ ├── EventTime.h │ ├── Exception.cpp │ ├── Exception.h │ ├── File.cpp │ ├── File.h │ ├── FileStream.cpp │ ├── FileStream.h │ ├── HTTPSocket.cpp │ ├── HTTPSocket.h │ ├── HttpBaseSocket.cpp │ ├── HttpBaseSocket.h │ ├── HttpClientSocket.cpp │ ├── HttpClientSocket.h │ ├── HttpDebugSocket.cpp │ ├── HttpDebugSocket.h │ ├── HttpGetSocket.cpp │ ├── HttpGetSocket.h │ ├── HttpPostSocket.cpp │ ├── HttpPostSocket.h │ ├── HttpPutSocket.cpp │ ├── HttpPutSocket.h │ ├── HttpRequest.cpp │ ├── HttpRequest.h │ ├── HttpResponse.cpp │ ├── HttpResponse.h │ ├── HttpTransaction.cpp │ ├── HttpTransaction.h │ ├── HttpdCookies.cpp │ ├── HttpdCookies.h │ ├── HttpdForm.cpp │ ├── HttpdForm.h │ ├── HttpdSocket.cpp │ ├── HttpdSocket.h │ ├── IBase.h │ ├── IEventHandler.h │ ├── IEventOwner.cpp │ ├── IEventOwner.h │ ├── IFile.h │ ├── IFileUpload.h │ ├── IHttpServer.h │ ├── IModel.h │ ├── IMutex.h │ ├── ISocketHandler.h │ ├── IStream.h │ ├── Ipv4Address.cpp │ ├── Ipv4Address.h │ ├── Ipv6Address.cpp │ ├── Ipv6Address.h │ ├── Json.cpp │ ├── Json.h │ ├── ListenSocket.h │ ├── Lock.cpp │ ├── Lock.h │ ├── Makefile │ ├── MemFile.cpp │ ├── MemFile.h │ ├── Mutex.cpp │ ├── Mutex.h │ ├── Parse.cpp │ ├── Parse.h │ ├── Project.net │ │ ├── Include │ │ │ ├── Ajp13Socket.h │ │ │ ├── AjpBaseSocket.h │ │ │ ├── Base64.h │ │ │ ├── Debug.h │ │ │ ├── Event.h │ │ │ ├── EventHandler.h │ │ │ ├── EventTime.h │ │ │ ├── Exception.h │ │ │ ├── File.h │ │ │ ├── FileStream.h │ │ │ ├── HTTPSocket.h │ │ │ ├── HttpBaseSocket.h │ │ │ ├── HttpClientSocket.h │ │ │ ├── HttpDebugSocket.h │ │ │ ├── HttpGetSocket.h │ │ │ ├── HttpPostSocket.h │ │ │ ├── HttpPutSocket.h │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.h │ │ │ ├── HttpTransaction.h │ │ │ ├── HttpdCookies.h │ │ │ ├── HttpdForm.h │ │ │ ├── HttpdSocket.h │ │ │ ├── IBase.h │ │ │ ├── IEventHandler.h │ │ │ ├── IEventOwner.h │ │ │ ├── IFile.h │ │ │ ├── IFileUpload.h │ │ │ ├── IHttpServer.h │ │ │ ├── IModel.h │ │ │ ├── IMutex.h │ │ │ ├── ISocketHandler.h │ │ │ ├── IStream.h │ │ │ ├── Ipv4Address.h │ │ │ ├── Ipv6Address.h │ │ │ ├── Json.h │ │ │ ├── ListenSocket.h │ │ │ ├── Lock.h │ │ │ ├── MemFile.h │ │ │ ├── Mutex.h │ │ │ ├── Parse.h │ │ │ ├── ResolvServer.h │ │ │ ├── ResolvSocket.h │ │ │ ├── SSLInitializer.h │ │ │ ├── SctpSocket.h │ │ │ ├── Semaphore.h │ │ │ ├── SmtpdSocket.h │ │ │ ├── Socket.h │ │ │ ├── SocketAddress.h │ │ │ ├── SocketHandler.h │ │ │ ├── SocketHandlerEp.h │ │ │ ├── SocketHandlerThread.h │ │ │ ├── SocketStream.h │ │ │ ├── SocketThread.h │ │ │ ├── StdLog.h │ │ │ ├── StdoutLog.h │ │ │ ├── StreamSocket.h │ │ │ ├── StreamWriter.h │ │ │ ├── TcpSocket.h │ │ │ ├── Thread.h │ │ │ ├── UdpSocket.h │ │ │ ├── Utility.h │ │ │ ├── XmlDocument.h │ │ │ ├── XmlException.h │ │ │ ├── XmlNode.h │ │ │ ├── ajp13.h │ │ │ ├── socket_include.h │ │ │ └── sockets-config.h │ │ ├── RawSocket.sln │ │ ├── SocketTest │ │ │ ├── IOBuffer.cpp │ │ │ ├── IOBuffer.h │ │ │ ├── ProtocolHandler.cpp │ │ │ ├── ProtocolHandler.h │ │ │ ├── ProtocolSocket.cpp │ │ │ ├── ProtocolSocket.h │ │ │ ├── ReadMe.txt │ │ │ ├── SFPacket.cpp │ │ │ ├── SFPacket.h │ │ │ ├── SFPacketHeader.h │ │ │ ├── SocketTest.cpp │ │ │ ├── SocketTest.vcxproj │ │ │ ├── SocketTest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── Sockets │ │ │ ├── Sockets.vcxproj │ │ │ └── Sockets.vcxproj.filters │ ├── README │ ├── ResolvServer.cpp │ ├── ResolvServer.h │ ├── ResolvSocket.cpp │ ├── ResolvSocket.h │ ├── SSLInitializer.cpp │ ├── SSLInitializer.h │ ├── SctpSocket.cpp │ ├── SctpSocket.h │ ├── Semaphore.cpp │ ├── Semaphore.h │ ├── SmtpdSocket.cpp │ ├── SmtpdSocket.h │ ├── Socket.cpp │ ├── Socket.h │ ├── SocketAddress.h │ ├── SocketHandler.cpp │ ├── SocketHandler.h │ ├── SocketHandlerEp.cpp │ ├── SocketHandlerEp.h │ ├── SocketHandlerThread.cpp │ ├── SocketHandlerThread.h │ ├── SocketStream.cpp │ ├── SocketStream.h │ ├── SocketThread.cpp │ ├── SocketThread.h │ ├── Sockets-config.cpp │ ├── StdLog.h │ ├── StdoutLog.cpp │ ├── StdoutLog.h │ ├── StreamSocket.cpp │ ├── StreamSocket.h │ ├── StreamWriter.cpp │ ├── StreamWriter.h │ ├── TcpSocket.cpp │ ├── TcpSocket.h │ ├── Thread.cpp │ ├── Thread.h │ ├── UdpSocket.cpp │ ├── UdpSocket.h │ ├── Utility.cpp │ ├── Utility.h │ ├── XmlDocument.cpp │ ├── XmlDocument.h │ ├── XmlException.cpp │ ├── XmlException.h │ ├── XmlNode.cpp │ ├── XmlNode.h │ ├── ajp13.h │ ├── gpl.txt │ ├── libxml │ │ ├── DOCBparser.c │ │ ├── HTMLparser.c │ │ ├── HTMLtree.c │ │ ├── README │ │ ├── SAX.c │ │ ├── SAX2.c │ │ ├── TODO │ │ ├── TODO_SCHEMAS │ │ ├── acconfig.h │ │ ├── c14n.c │ │ ├── catalog.c │ │ ├── chvalid.c │ │ ├── debugXML.c │ │ ├── dict.c │ │ ├── elfgcchack.h │ │ ├── encoding.c │ │ ├── entities.c │ │ ├── error.c │ │ ├── globals.c │ │ ├── hash.c │ │ ├── include │ │ │ ├── iconv.h │ │ │ ├── libxml │ │ │ │ ├── DOCBparser.h │ │ │ │ ├── HTMLparser.h │ │ │ │ ├── HTMLtree.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── SAX.h │ │ │ │ ├── SAX2.h │ │ │ │ ├── c14n.h │ │ │ │ ├── catalog.h │ │ │ │ ├── chvalid.h │ │ │ │ ├── debugXML.h │ │ │ │ ├── dict.h │ │ │ │ ├── encoding.h │ │ │ │ ├── entities.h │ │ │ │ ├── globals.h │ │ │ │ ├── hash.h │ │ │ │ ├── list.h │ │ │ │ ├── nanoftp.h │ │ │ │ ├── nanohttp.h │ │ │ │ ├── parser.h │ │ │ │ ├── parserInternals.h │ │ │ │ ├── pattern.h │ │ │ │ ├── relaxng.h │ │ │ │ ├── schemasInternals.h │ │ │ │ ├── schematron.h │ │ │ │ ├── threads.h │ │ │ │ ├── tree.h │ │ │ │ ├── uri.h │ │ │ │ ├── valid.h │ │ │ │ ├── xinclude.h │ │ │ │ ├── xlink.h │ │ │ │ ├── xmlIO.h │ │ │ │ ├── xmlautomata.h │ │ │ │ ├── xmlerror.h │ │ │ │ ├── xmlexports.h │ │ │ │ ├── xmlmemory.h │ │ │ │ ├── xmlmodule.h │ │ │ │ ├── xmlreader.h │ │ │ │ ├── xmlregexp.h │ │ │ │ ├── xmlsave.h │ │ │ │ ├── xmlschemas.h │ │ │ │ ├── xmlschemastypes.h │ │ │ │ ├── xmlstring.h │ │ │ │ ├── xmlunicode.h │ │ │ │ ├── xmlversion.h │ │ │ │ ├── xmlversion.h.in │ │ │ │ ├── xmlwriter.h │ │ │ │ ├── xpath.h │ │ │ │ ├── xpathInternals.h │ │ │ │ └── xpointer.h │ │ │ ├── win32config.h │ │ │ └── wsockcompat.h │ │ ├── legacy.c │ │ ├── libxml.h │ │ ├── list.c │ │ ├── nanoftp.c │ │ ├── nanohttp.c │ │ ├── parser.c │ │ ├── parserInternals.c │ │ ├── pattern.c │ │ ├── relaxng.c │ │ ├── runsuite.c │ │ ├── runtest.c │ │ ├── runxmlconf.c │ │ ├── schematron.c │ │ ├── testAutomata.c │ │ ├── testC14N.c │ │ ├── testHTML.c │ │ ├── testModule.c │ │ ├── testReader.c │ │ ├── testRegexp.c │ │ ├── testRelax.c │ │ ├── testSAX.c │ │ ├── testSchemas.c │ │ ├── testThreads.c │ │ ├── testThreadsWin32.c │ │ ├── testURI.c │ │ ├── testXPath.c │ │ ├── testapi.c │ │ ├── testchar.c │ │ ├── testdict.c │ │ ├── testdso.c │ │ ├── testrecurse.c │ │ ├── threads.c │ │ ├── tree.c │ │ ├── trio.c │ │ ├── trio.h │ │ ├── triodef.h │ │ ├── trionan.c │ │ ├── trionan.h │ │ ├── triop.h │ │ ├── triostr.c │ │ ├── triostr.h │ │ ├── uri.c │ │ ├── valid.c │ │ ├── xinclude.c │ │ ├── xlink.c │ │ ├── xmlIO.c │ │ ├── xmlcatalog.c │ │ ├── xmllint.c │ │ ├── xmlmemory.c │ │ ├── xmlmodule.c │ │ ├── xmlreader.c │ │ ├── xmlregexp.c │ │ ├── xmlsave.c │ │ ├── xmlschemas.c │ │ ├── xmlschemastypes.c │ │ ├── xmlstring.c │ │ ├── xmlunicode.c │ │ ├── xmlwriter.c │ │ ├── xpath.c │ │ └── xpointer.c │ ├── openssl │ │ ├── include │ │ │ └── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── applink.c │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── bio.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cms.h │ │ │ │ ├── comp.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── crypto.h │ │ │ │ ├── des.h │ │ │ │ ├── des_old.h │ │ │ │ ├── dh.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dso.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── engine.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── krb5_asn.h │ │ │ │ ├── kssl.h │ │ │ │ ├── lhash.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pqueue.h │ │ │ │ ├── rand.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl23.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── stack.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── ts.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui.h │ │ │ │ ├── ui_compat.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ └── x509v3.h │ │ ├── lib │ │ │ ├── engines │ │ │ │ ├── 4758cca.dll │ │ │ │ ├── aep.dll │ │ │ │ ├── atalla.dll │ │ │ │ ├── capi.dll │ │ │ │ ├── chil.dll │ │ │ │ ├── cswift.dll │ │ │ │ ├── gmp.dll │ │ │ │ ├── gost.dll │ │ │ │ ├── nuron.dll │ │ │ │ ├── padlock.dll │ │ │ │ ├── sureware.dll │ │ │ │ └── ubsec.dll │ │ │ ├── libeay32.lib │ │ │ └── ssleay32.lib │ │ └── openssl.cnf │ ├── socket_include.cpp │ ├── socket_include.h │ └── sockets-config.h ├── ServerConnector │ ├── AuthServerCallback.cpp │ ├── AuthServerCallback.h │ ├── DatabaseServerCallback.cpp │ ├── DatabaseServerCallback.h │ ├── ReadMe.txt │ ├── ServerConnector.cpp │ ├── ServerConnector.vcxproj │ ├── ServerConnector.vcxproj.filters │ ├── ServerConnectorLogicEntry.cpp │ ├── ServerConnectorLogicEntry.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ServerListener │ ├── ReadMe.txt │ ├── ServerListener.cpp │ ├── ServerListener.vcxproj │ ├── ServerListener.vcxproj.filters │ ├── ServerListenerLogicEntry.cpp │ ├── ServerListenerLogicEntry.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SevenGameClient │ ├── CommonStructure.h │ ├── Define.h │ ├── DirectXEntity.cpp │ ├── DirectXEntity.h │ ├── DirectXSystem.cpp │ ├── DirectXSystem.h │ ├── DirectXUtil.cpp │ ├── DirectXUtil.h │ ├── FireEffect │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── d3dUtility.cpp │ │ ├── d3dUtility.h │ │ ├── pSystem.cpp │ │ └── pSystem.h │ ├── FontObject.cpp │ ├── FontObject.h │ ├── PictureBox.cpp │ ├── PictureBox.h │ ├── PictureBoxMgr.cpp │ ├── PictureBoxMgr.h │ ├── ProgramMain.cpp │ ├── ProgramMain.h │ ├── ReadMe.txt │ ├── Renderer.cpp │ ├── Renderer.h │ ├── Resource.h │ ├── SGManager.cpp │ ├── SGManager.h │ ├── SGState.cpp │ ├── SGState.h │ ├── SGStateCardEffect.cpp │ ├── SGStateCardEffect.h │ ├── SGStateCardPassEffect.cpp │ ├── SGStateCardPassEffect.h │ ├── SGStateCardTurn.cpp │ ├── SGStateCardTurn.h │ ├── SGStateGame.cpp │ ├── SGStateGame.h │ ├── SGStateGameOver.cpp │ ├── SGStateGameOver.h │ ├── SGStateManager.cpp │ ├── SGStateManager.h │ ├── SGStateStart.cpp │ ├── SGStateStart.h │ ├── SGTable.cpp │ ├── SGTable.h │ ├── SGUser.cpp │ ├── SGUser.h │ ├── STLWarning.h │ ├── SevenGame.aps │ ├── SevenGame.cpp │ ├── SevenGame.h │ ├── SevenGame.ico │ ├── SevenGame.rc │ ├── SevenGame.suo │ ├── SevenGameClient.vcxproj │ ├── SevenGameClient.vcxproj.filters │ ├── SevenGameMain.cpp │ ├── SevenGameMain.h │ ├── SevenGameProtocol.cpp │ ├── SevenGameProtocol.h │ ├── Sound │ │ ├── MP3Player.cpp │ │ └── MP3Player.h │ ├── TextureMgr.cpp │ ├── TextureMgr.h │ ├── resource1.h │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SevenGameServer │ ├── Define.h │ ├── ReadMe.txt │ ├── SGBattle.cpp │ ├── SGBattle.h │ ├── SGManager.cpp │ ├── SGManager.h │ ├── SGTable.cpp │ ├── SGTable.h │ ├── SGTraining.cpp │ ├── SGTraining.h │ ├── SGUser.cpp │ ├── SGUser.h │ ├── STLWarning.h │ ├── SelectAlgorithm.cpp │ ├── SelectAlgorithm.h │ ├── SevenGameConstant.h │ ├── SevenGameProtocol.cpp │ ├── SevenGameProtocol.h │ ├── SevenGameServer.cpp │ ├── SevenGameServer.vcxproj │ ├── SevenGameServer.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SimpleEcho │ ├── EchoLogicEntry.cpp │ ├── EchoLogicEntry.h │ ├── GameUser.cpp │ ├── GameUser.h │ ├── ReadMe.txt │ ├── SimpleEcho.cpp │ ├── SimpleEcho.vcxproj │ ├── SimpleEcho.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── UnityClient │ ├── Assets │ │ ├── CommonData.cs │ │ ├── CommonProtocol.cs │ │ ├── Examples │ │ │ └── 1_login.unity │ │ ├── JPacket.cs │ │ ├── LoginNetManager.cs │ │ ├── NetManager_V2.cs │ │ ├── Scene │ │ │ ├── BaseScene.cs │ │ │ └── ConnectScene.cs │ │ ├── UnityVS │ │ │ └── Editor │ │ │ │ ├── SyntaxTree.VisualStudio.Unity.Bridge.dll │ │ │ │ ├── SyntaxTree.VisualStudio.Unity.Messaging.dll │ │ │ │ └── UnityVS.VersionSpecific.dll │ │ ├── Util │ │ │ ├── Clog.cs │ │ │ ├── DebugOverlay.cs │ │ │ └── MonoBehaviourSingleton.cs │ │ └── resources │ │ │ └── Newtonsoft.Json.dll │ ├── BIN │ │ ├── UnitySample.exe │ │ └── UnitySample_Data │ │ │ ├── Managed │ │ │ ├── Assembly-CSharp.dll │ │ │ ├── Assembly-CSharp.dll.mdb │ │ │ ├── Mono.Data.Tds.dll │ │ │ ├── Mono.Data.Tds.dll.mdb │ │ │ ├── Mono.Security.dll │ │ │ ├── Mono.Security.dll.mdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Core.dll │ │ │ ├── System.Core.dll.mdb │ │ │ ├── System.Data.dll │ │ │ ├── System.Data.dll.mdb │ │ │ ├── System.Transactions.dll │ │ │ ├── System.Transactions.dll.mdb │ │ │ ├── System.Xml.dll │ │ │ ├── System.Xml.dll.mdb │ │ │ ├── System.dll │ │ │ ├── System.dll.mdb │ │ │ ├── UnityEngine.UI.dll │ │ │ ├── UnityEngine.UI.dll.mdb │ │ │ ├── UnityEngine.dll │ │ │ ├── UnityEngine.dll.mdb │ │ │ ├── mscorlib.dll │ │ │ └── mscorlib.dll.mdb │ │ │ ├── Mono │ │ │ ├── etc │ │ │ │ └── mono │ │ │ │ │ ├── 1.0 │ │ │ │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ │ │ │ └── machine.config │ │ │ │ │ ├── 2.0 │ │ │ │ │ ├── Browsers │ │ │ │ │ │ └── Compat.browser │ │ │ │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ │ │ │ ├── machine.config │ │ │ │ │ ├── settings.map │ │ │ │ │ └── web.config │ │ │ │ │ ├── browscap.ini │ │ │ │ │ ├── config │ │ │ │ │ └── mconfig │ │ │ │ │ └── config.xml │ │ │ └── mono.dll │ │ │ ├── PlayerConnectionConfigFile │ │ │ ├── Resources │ │ │ ├── unity default resources │ │ │ └── unity_builtin_extra │ │ │ ├── mainData │ │ │ ├── output_log.txt │ │ │ └── sharedassets0.assets │ └── readme.md ├── UnityServer │ ├── CommonData.h │ ├── CommonProtocol.h │ ├── GameUser.cpp │ ├── GameUser.h │ ├── LoginPart.cpp │ ├── LoginPart.h │ ├── PersonalInfo.cpp │ ├── PersonalInfo.h │ ├── UnityServer.cpp │ ├── UnityServer.vcxproj │ ├── UnityServer.vcxproj.filters │ ├── UnityServerEntry.cpp │ ├── UnityServerEntry.h │ ├── readme.md │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Vendor │ ├── DXUtil │ │ ├── DXUT.cpp │ │ ├── DXUT.h │ │ ├── DXUTLockFreePipe.h │ │ ├── DXUTSettingsDlg.cpp │ │ ├── DXUTShapes.cpp │ │ ├── DXUTShapes.h │ │ ├── DXUTcamera.cpp │ │ ├── DXUTcamera.h │ │ ├── DXUTenum.cpp │ │ ├── DXUTenum.h │ │ ├── DXUTgui.cpp │ │ ├── DXUTgui.h │ │ ├── DXUTguiIME.cpp │ │ ├── DXUTguiIME.h │ │ ├── DXUTmisc.cpp │ │ ├── DXUTmisc.h │ │ ├── DXUTres.cpp │ │ ├── DXUTres.h │ │ ├── DXUTsettingsdlg.h │ │ ├── ImeUi.cpp │ │ ├── ImeUi.h │ │ ├── SDKmesh.cpp │ │ ├── SDKmesh.h │ │ ├── SDKmisc.cpp │ │ ├── SDKmisc.h │ │ ├── SDKsound.cpp │ │ ├── SDKsound.h │ │ ├── SDKwavefile.cpp │ │ ├── SDKwavefile.h │ │ ├── ScrollBarCtrl.h │ │ ├── TextBoxCtrl.cpp │ │ ├── TextBoxCtrl.h │ │ ├── directx.ico │ │ ├── dxstdafx.cpp │ │ ├── dxstdafx.h │ │ └── icon1.ico │ └── DirectMusic │ │ ├── dls1.h │ │ ├── dls2.h │ │ ├── dmdls.h │ │ ├── dmerror.h │ │ ├── dmksctrl.h │ │ ├── dmplugin.h │ │ ├── dmusbuff.h │ │ ├── dmusicc.h │ │ ├── dmusicf.h │ │ ├── dmusici.h │ │ ├── dmusics.h │ │ ├── dmutil.cpp │ │ ├── dmutil.h │ │ ├── dplay.h │ │ ├── dplobby.h │ │ └── dxerr8.h └── readme.txt ├── Tool ├── PacketEnDeCodeGenerator │ ├── CppUnitTest │ │ ├── CppUnitTest.sln │ │ ├── CppUnitTest.vcxproj │ │ ├── CppUnitTest.vcxproj.filters │ │ ├── SampleEnDecoder.h │ │ ├── UnitTest_EnDecode.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── PacketEnDeCodeGenerator.sln │ ├── PacketEnDeCodeGeneratorConsole │ │ ├── App.config │ │ ├── PacketEnDeCodeGeneratorConsole.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── PacketEnDeCodeGeneratorLib │ │ ├── CSharpPacketProtocolFileParse.cs │ │ ├── CheckDataType.cs │ │ ├── CppPacketProtocolFileParse.cs │ │ ├── GenerateCSharpEnDecoder.cs │ │ ├── GenerateCSharpPacketProtocolFile.cs │ │ ├── GenerateCppEnDecoder.cs │ │ ├── MainLib.cs │ │ ├── PacketEnDeCodeGeneratorLib.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Templete │ │ │ ├── CSharpEnDecoderTemplete.txt │ │ │ └── CppEnDecoderTemplete.txt │ │ └── packages.config │ ├── PacketEnDeCodeGeneratorTest │ │ ├── App.config │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketEnDeCodeGeneratorTest.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── PacketEnDeCodeGeneratorWinForm │ │ ├── App.config │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── PacketEnDeCodeGeneratorWinForm.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── SampleProtocol.cs │ ├── SampleProtocol.h │ ├── UnitTestProject │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SamplePacket.cs │ │ ├── SamplePacketEnDecode.cs │ │ ├── UnitSamplePacket.cs │ │ └── UnitTestProject.csproj │ └── packages │ │ └── repositories.config └── UIWindow │ ├── ReadMe.txt │ ├── Resource.h │ ├── SampleUIWindow.cpp │ ├── SampleUIWindow.h │ ├── UIWindow.aps │ ├── UIWindow.cpp │ ├── UIWindow.h │ ├── UIWindow.ico │ ├── UIWindow.rc │ ├── UIWindow.sln │ ├── UIWindow.vcxproj │ ├── UIWindow.vcxproj.filters │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── UnitTest ├── BaseLayerTest │ ├── BaseLayerTest.sln │ ├── BaseLayerTest.vcxproj │ ├── BaseLayerTest.vcxproj.filters │ ├── SFCompressTest.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── EngineLayerTest │ ├── EngineLayerTest.sln │ ├── EngineLayerTest.vcxproj │ ├── EngineLayerTest.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── unittest1.cpp └── VSProject ├── AllProject.sln ├── Bin32 ├── CasualGame.ini ├── Connection.ini ├── DataSource.ini ├── EngineConfig.xml └── ServerConnection.xml ├── Bin64 ├── CasualGame.ini ├── Connection.ini ├── DataSource.ini ├── EngineConfig.xml └── ServerConnection.xml ├── CGSFTest.sln ├── EngineLayer.sln ├── FPSMultiplayer.sln ├── LogicLayer.sln ├── NetworkLayer.sln ├── P2PLayer.sln └── Sample.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/.gitignore -------------------------------------------------------------------------------- /BaseLayer/BaseLayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/BaseLayer.vcxproj -------------------------------------------------------------------------------- /BaseLayer/BaseLayer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/BaseLayer.vcxproj.filters -------------------------------------------------------------------------------- /BaseLayer/BigNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/BigNum.h -------------------------------------------------------------------------------- /BaseLayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CMakeLists.txt -------------------------------------------------------------------------------- /BaseLayer/CPUDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CPUDesc.cpp -------------------------------------------------------------------------------- /BaseLayer/CPUDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CPUDesc.h -------------------------------------------------------------------------------- /BaseLayer/CSmtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CSmtp.cpp -------------------------------------------------------------------------------- /BaseLayer/CSmtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CSmtp.h -------------------------------------------------------------------------------- /BaseLayer/CStdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CStdString.h -------------------------------------------------------------------------------- /BaseLayer/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CrashHandler.cpp -------------------------------------------------------------------------------- /BaseLayer/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/CrashHandler.h -------------------------------------------------------------------------------- /BaseLayer/Crypto/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Crypto/Crypto.cpp -------------------------------------------------------------------------------- /BaseLayer/Crypto/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Crypto/Crypto.h -------------------------------------------------------------------------------- /BaseLayer/Crypto/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Crypto/Key.h -------------------------------------------------------------------------------- /BaseLayer/Crypto/md5Capi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Crypto/md5Capi.cpp -------------------------------------------------------------------------------- /BaseLayer/Crypto/md5Capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Crypto/md5Capi.h -------------------------------------------------------------------------------- /BaseLayer/DirectoryChanges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/DirectoryChanges.cpp -------------------------------------------------------------------------------- /BaseLayer/DirectoryChanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/DirectoryChanges.h -------------------------------------------------------------------------------- /BaseLayer/External/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/7zAsm.asm -------------------------------------------------------------------------------- /BaseLayer/External/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/7zCrcOpt.asm -------------------------------------------------------------------------------- /BaseLayer/External/7zcrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/7zcrc.cpp -------------------------------------------------------------------------------- /BaseLayer/External/7zcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/7zcrc.h -------------------------------------------------------------------------------- /BaseLayer/External/CSmtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/CSmtp.cpp -------------------------------------------------------------------------------- /BaseLayer/External/CSmtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/CSmtp.h -------------------------------------------------------------------------------- /BaseLayer/External/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/base64.cpp -------------------------------------------------------------------------------- /BaseLayer/External/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/base64.h -------------------------------------------------------------------------------- /BaseLayer/External/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/crc.cpp -------------------------------------------------------------------------------- /BaseLayer/External/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/crc.h -------------------------------------------------------------------------------- /BaseLayer/External/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/md5.cpp -------------------------------------------------------------------------------- /BaseLayer/External/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/External/md5.h -------------------------------------------------------------------------------- /BaseLayer/GPGLockFreeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/GPGLockFreeQueue.h -------------------------------------------------------------------------------- /BaseLayer/GeneralPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/GeneralPool.cpp -------------------------------------------------------------------------------- /BaseLayer/GeneralPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/GeneralPool.h -------------------------------------------------------------------------------- /BaseLayer/Logger/ACELogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Logger/ACELogger.cpp -------------------------------------------------------------------------------- /BaseLayer/Logger/ACELogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Logger/ACELogger.h -------------------------------------------------------------------------------- /BaseLayer/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Macro.h -------------------------------------------------------------------------------- /BaseLayer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/ReadMe.txt -------------------------------------------------------------------------------- /BaseLayer/SFBitArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBitArray.cpp -------------------------------------------------------------------------------- /BaseLayer/SFBitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBitArray.h -------------------------------------------------------------------------------- /BaseLayer/SFBreakPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBreakPad.cpp -------------------------------------------------------------------------------- /BaseLayer/SFBreakPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBreakPad.h -------------------------------------------------------------------------------- /BaseLayer/SFBugTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBugTrap.cpp -------------------------------------------------------------------------------- /BaseLayer/SFBugTrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFBugTrap.h -------------------------------------------------------------------------------- /BaseLayer/SFCompressLzf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCompressLzf.cpp -------------------------------------------------------------------------------- /BaseLayer/SFCompressLzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCompressLzf.h -------------------------------------------------------------------------------- /BaseLayer/SFCompressZLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCompressZLib.cpp -------------------------------------------------------------------------------- /BaseLayer/SFCompressZLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCompressZLib.h -------------------------------------------------------------------------------- /BaseLayer/SFCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCompressor.h -------------------------------------------------------------------------------- /BaseLayer/SFConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFConsumer.h -------------------------------------------------------------------------------- /BaseLayer/SFCustomHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCustomHandler.cpp -------------------------------------------------------------------------------- /BaseLayer/SFCustomHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFCustomHandler.h -------------------------------------------------------------------------------- /BaseLayer/SFDiskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFDiskManager.cpp -------------------------------------------------------------------------------- /BaseLayer/SFDiskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFDiskManager.h -------------------------------------------------------------------------------- /BaseLayer/SFDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFDispatch.h -------------------------------------------------------------------------------- /BaseLayer/SFEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFEncryption.h -------------------------------------------------------------------------------- /BaseLayer/SFEncryptionXOR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFEncryptionXOR.cpp -------------------------------------------------------------------------------- /BaseLayer/SFEncryptionXOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFEncryptionXOR.h -------------------------------------------------------------------------------- /BaseLayer/SFExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFExceptionHandler.cpp -------------------------------------------------------------------------------- /BaseLayer/SFExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFExceptionHandler.h -------------------------------------------------------------------------------- /BaseLayer/SFExceptionHandlerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFExceptionHandlerUtil.h -------------------------------------------------------------------------------- /BaseLayer/SFFString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFString.cpp -------------------------------------------------------------------------------- /BaseLayer/SFFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFString.h -------------------------------------------------------------------------------- /BaseLayer/SFFastCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFastCRC.cpp -------------------------------------------------------------------------------- /BaseLayer/SFFastCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFastCRC.h -------------------------------------------------------------------------------- /BaseLayer/SFFilePack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFilePack.cpp -------------------------------------------------------------------------------- /BaseLayer/SFFilePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFFilePack.h -------------------------------------------------------------------------------- /BaseLayer/SFIOCPQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFIOCPQueue.h -------------------------------------------------------------------------------- /BaseLayer/SFIni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFIni.cpp -------------------------------------------------------------------------------- /BaseLayer/SFIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFIni.h -------------------------------------------------------------------------------- /BaseLayer/SFList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFList.cpp -------------------------------------------------------------------------------- /BaseLayer/SFList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFList.h -------------------------------------------------------------------------------- /BaseLayer/SFLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFLock.h -------------------------------------------------------------------------------- /BaseLayer/SFLockDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFLockDeque.h -------------------------------------------------------------------------------- /BaseLayer/SFLockQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFLockQueue.h -------------------------------------------------------------------------------- /BaseLayer/SFMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFMath.h -------------------------------------------------------------------------------- /BaseLayer/SFMinidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFMinidump.cpp -------------------------------------------------------------------------------- /BaseLayer/SFMinidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFMinidump.h -------------------------------------------------------------------------------- /BaseLayer/SFObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFObjectPool.h -------------------------------------------------------------------------------- /BaseLayer/SFQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFQueue.h -------------------------------------------------------------------------------- /BaseLayer/SFRegexChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFRegexChecker.cpp -------------------------------------------------------------------------------- /BaseLayer/SFRegexChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFRegexChecker.h -------------------------------------------------------------------------------- /BaseLayer/SFRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFRegistry.cpp -------------------------------------------------------------------------------- /BaseLayer/SFRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFRegistry.h -------------------------------------------------------------------------------- /BaseLayer/SFScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFScheduler.h -------------------------------------------------------------------------------- /BaseLayer/SFServiceController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFServiceController.cpp -------------------------------------------------------------------------------- /BaseLayer/SFServiceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFServiceController.h -------------------------------------------------------------------------------- /BaseLayer/SFStackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFStackWalker.cpp -------------------------------------------------------------------------------- /BaseLayer/SFStackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFStackWalker.h -------------------------------------------------------------------------------- /BaseLayer/SFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFString.h -------------------------------------------------------------------------------- /BaseLayer/SFSystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFSystemInfo.cpp -------------------------------------------------------------------------------- /BaseLayer/SFSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFSystemInfo.h -------------------------------------------------------------------------------- /BaseLayer/SFTSSyncQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFTSSyncQueue.h -------------------------------------------------------------------------------- /BaseLayer/SFTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFTimer.h -------------------------------------------------------------------------------- /BaseLayer/SFTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFTree.h -------------------------------------------------------------------------------- /BaseLayer/SFUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFUtil.cpp -------------------------------------------------------------------------------- /BaseLayer/SFUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/SFUtil.h -------------------------------------------------------------------------------- /BaseLayer/StackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/StackWalker.cpp -------------------------------------------------------------------------------- /BaseLayer/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/StackWalker.h -------------------------------------------------------------------------------- /BaseLayer/TMXMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TMXMap.cpp -------------------------------------------------------------------------------- /BaseLayer/TMXMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TMXMap.h -------------------------------------------------------------------------------- /BaseLayer/TMXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TMXParser.cpp -------------------------------------------------------------------------------- /BaseLayer/TMXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TMXParser.h -------------------------------------------------------------------------------- /BaseLayer/TileLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TileLayer.cpp -------------------------------------------------------------------------------- /BaseLayer/TileLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TileLayer.h -------------------------------------------------------------------------------- /BaseLayer/TinyThread/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TinyThread/fast_mutex.h -------------------------------------------------------------------------------- /BaseLayer/TinyThread/tinythread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TinyThread/tinythread.cpp -------------------------------------------------------------------------------- /BaseLayer/TinyThread/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/TinyThread/tinythread.h -------------------------------------------------------------------------------- /BaseLayer/VMemPool/BitSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/VMemPool/BitSet.cpp -------------------------------------------------------------------------------- /BaseLayer/VMemPool/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/VMemPool/BitSet.h -------------------------------------------------------------------------------- /BaseLayer/VMemPool/VMemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/VMemPool/VMemPool.h -------------------------------------------------------------------------------- /BaseLayer/Window/UICmdEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UICmdEdit.cpp -------------------------------------------------------------------------------- /BaseLayer/Window/UICmdEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UICmdEdit.h -------------------------------------------------------------------------------- /BaseLayer/Window/UICmdMsgView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UICmdMsgView.cpp -------------------------------------------------------------------------------- /BaseLayer/Window/UICmdMsgView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UICmdMsgView.h -------------------------------------------------------------------------------- /BaseLayer/Window/UIFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UIFramework.cpp -------------------------------------------------------------------------------- /BaseLayer/Window/UIFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/Window/UIFramework.h -------------------------------------------------------------------------------- /BaseLayer/XML/IXMLSerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/IXMLSerializable.h -------------------------------------------------------------------------------- /BaseLayer/XML/IXMLStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/IXMLStreamReader.h -------------------------------------------------------------------------------- /BaseLayer/XML/IXMLStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/IXMLStreamWriter.h -------------------------------------------------------------------------------- /BaseLayer/XML/Markup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/Markup.cpp -------------------------------------------------------------------------------- /BaseLayer/XML/Markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/Markup.h -------------------------------------------------------------------------------- /BaseLayer/XML/SFXMLStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/SFXMLStreamReader.h -------------------------------------------------------------------------------- /BaseLayer/XML/SFXMLStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/SFXMLStreamWriter.h -------------------------------------------------------------------------------- /BaseLayer/XML/StringConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/StringConversion.cpp -------------------------------------------------------------------------------- /BaseLayer/XML/StringConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/StringConversion.h -------------------------------------------------------------------------------- /BaseLayer/XML/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinystr.cpp -------------------------------------------------------------------------------- /BaseLayer/XML/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinystr.h -------------------------------------------------------------------------------- /BaseLayer/XML/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinyxml.cpp -------------------------------------------------------------------------------- /BaseLayer/XML/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinyxml.h -------------------------------------------------------------------------------- /BaseLayer/XML/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinyxmlerror.cpp -------------------------------------------------------------------------------- /BaseLayer/XML/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/XML/tinyxmlparser.cpp -------------------------------------------------------------------------------- /BaseLayer/cpu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/cpu_info.cpp -------------------------------------------------------------------------------- /BaseLayer/cpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/cpu_info.h -------------------------------------------------------------------------------- /BaseLayer/json/DataTypeConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/DataTypeConvertor.h -------------------------------------------------------------------------------- /BaseLayer/json/JsonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/JsonBuilder.cpp -------------------------------------------------------------------------------- /BaseLayer/json/JsonBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/JsonBuilder.h -------------------------------------------------------------------------------- /BaseLayer/json/JsonNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/JsonNode.cpp -------------------------------------------------------------------------------- /BaseLayer/json/JsonNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/JsonNode.h -------------------------------------------------------------------------------- /BaseLayer/json/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/elements.h -------------------------------------------------------------------------------- /BaseLayer/json/elements.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/elements.inl -------------------------------------------------------------------------------- /BaseLayer/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/reader.h -------------------------------------------------------------------------------- /BaseLayer/json/reader.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/reader.inl -------------------------------------------------------------------------------- /BaseLayer/json/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/visitor.h -------------------------------------------------------------------------------- /BaseLayer/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/writer.h -------------------------------------------------------------------------------- /BaseLayer/json/writer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/json/writer.inl -------------------------------------------------------------------------------- /BaseLayer/libconhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/LICENSE -------------------------------------------------------------------------------- /BaseLayer/libconhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/Makefile -------------------------------------------------------------------------------- /BaseLayer/libconhash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/README -------------------------------------------------------------------------------- /BaseLayer/libconhash/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/configure.h -------------------------------------------------------------------------------- /BaseLayer/libconhash/conhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/conhash.c -------------------------------------------------------------------------------- /BaseLayer/libconhash/conhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/conhash.h -------------------------------------------------------------------------------- /BaseLayer/libconhash/conhash_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/conhash_util.c -------------------------------------------------------------------------------- /BaseLayer/libconhash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/md5.c -------------------------------------------------------------------------------- /BaseLayer/libconhash/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/md5.h -------------------------------------------------------------------------------- /BaseLayer/libconhash/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/sample.c -------------------------------------------------------------------------------- /BaseLayer/libconhash/util_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/util_rbtree.c -------------------------------------------------------------------------------- /BaseLayer/libconhash/util_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/libconhash/util_rbtree.h -------------------------------------------------------------------------------- /BaseLayer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/stdafx.cpp -------------------------------------------------------------------------------- /BaseLayer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/stdafx.h -------------------------------------------------------------------------------- /BaseLayer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/BaseLayer/targetver.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/CGSFTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/CGSFTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/CRCTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/CRCTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/CRCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/CRCTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/CryptoTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/CryptoTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/DumpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/DumpTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/DumpTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/DumpTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/GLogTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/GLogTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/GLogTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/GLogTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/INITest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/INITest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/INITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/INITest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/ITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/ITest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/LibfdsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/LibfdsTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/PCRETest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/PCRETest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/PCRETest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/PCRETest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/ReadMe.txt -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/RexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/RexTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/RexTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/RexTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/SFMathTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/SFMathTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/StringTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/StringTest.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/stdafx.cpp -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/stdafx.h -------------------------------------------------------------------------------- /CGSFTest/BaseLayerTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BaseLayerTest/targetver.h -------------------------------------------------------------------------------- /CGSFTest/BigNum/BigNum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/BigNum.vcxproj -------------------------------------------------------------------------------- /CGSFTest/BigNum/BigNumTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/BigNumTest.cpp -------------------------------------------------------------------------------- /CGSFTest/BigNum/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/ReadMe.txt -------------------------------------------------------------------------------- /CGSFTest/BigNum/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/stdafx.cpp -------------------------------------------------------------------------------- /CGSFTest/BigNum/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/stdafx.h -------------------------------------------------------------------------------- /CGSFTest/BigNum/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/BigNum/targetver.h -------------------------------------------------------------------------------- /CGSFTest/CrashHandler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/CrashHandler/ReadMe.txt -------------------------------------------------------------------------------- /CGSFTest/CrashHandler/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/CrashHandler/stdafx.cpp -------------------------------------------------------------------------------- /CGSFTest/CrashHandler/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/CrashHandler/stdafx.h -------------------------------------------------------------------------------- /CGSFTest/CrashHandler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/CrashHandler/targetver.h -------------------------------------------------------------------------------- /CGSFTest/Database/Database.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/Database.vcxproj -------------------------------------------------------------------------------- /CGSFTest/Database/QueryIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/QueryIdentifier.h -------------------------------------------------------------------------------- /CGSFTest/Database/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/ReadMe.txt -------------------------------------------------------------------------------- /CGSFTest/Database/TestDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/TestDatabase.cpp -------------------------------------------------------------------------------- /CGSFTest/Database/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/stdafx.cpp -------------------------------------------------------------------------------- /CGSFTest/Database/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/stdafx.h -------------------------------------------------------------------------------- /CGSFTest/Database/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/Database/targetver.h -------------------------------------------------------------------------------- /CGSFTest/WindowService/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/WindowService/ReadMe.txt -------------------------------------------------------------------------------- /CGSFTest/WindowService/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/WindowService/stdafx.cpp -------------------------------------------------------------------------------- /CGSFTest/WindowService/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/WindowService/stdafx.h -------------------------------------------------------------------------------- /CGSFTest/WindowService/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/CGSFTest/WindowService/targetver.h -------------------------------------------------------------------------------- /Common/BasePacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/BasePacket.h -------------------------------------------------------------------------------- /Common/CommonLayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/CommonLayer.vcxproj -------------------------------------------------------------------------------- /Common/CommonLayer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/CommonLayer.vcxproj.filters -------------------------------------------------------------------------------- /Common/CommonStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/CommonStructure.h -------------------------------------------------------------------------------- /Common/EngineInterface/IEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/EngineInterface/IEngine.h -------------------------------------------------------------------------------- /Common/EngineInterface/ISession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/EngineInterface/ISession.h -------------------------------------------------------------------------------- /Common/ErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/ErrorCode.h -------------------------------------------------------------------------------- /Common/GamePacketStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/GamePacketStructure.h -------------------------------------------------------------------------------- /Common/PeerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/PeerInfo.h -------------------------------------------------------------------------------- /Common/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/ReadMe.txt -------------------------------------------------------------------------------- /Common/SFMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFMessage.h -------------------------------------------------------------------------------- /Common/SFPacketStore/FPSPacket.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFPacketStore/FPSPacket.pb.h -------------------------------------------------------------------------------- /Common/SFPacketStore/FPSPacketID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFPacketStore/FPSPacketID.h -------------------------------------------------------------------------------- /Common/SFPacketStore/ProtoGenCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFPacketStore/ProtoGenCS.exe -------------------------------------------------------------------------------- /Common/SFPacketStore/SFPacketID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFPacketStore/SFPacketID.h -------------------------------------------------------------------------------- /Common/SFPacketStore/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/SFPacketStore/protoc.exe -------------------------------------------------------------------------------- /Common/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/stdafx.cpp -------------------------------------------------------------------------------- /Common/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/stdafx.h -------------------------------------------------------------------------------- /Common/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Common/targetver.h -------------------------------------------------------------------------------- /DatabaseLayer/CppSQLite3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/CppSQLite3.cpp -------------------------------------------------------------------------------- /DatabaseLayer/CppSQLite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/CppSQLite3.h -------------------------------------------------------------------------------- /DatabaseLayer/DBMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/DBMsg.h -------------------------------------------------------------------------------- /DatabaseLayer/DBStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/DBStruct.h -------------------------------------------------------------------------------- /DatabaseLayer/DatabaseLayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/DatabaseLayer.vcxproj -------------------------------------------------------------------------------- /DatabaseLayer/IDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/IDBManager.h -------------------------------------------------------------------------------- /DatabaseLayer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/ReadMe.txt -------------------------------------------------------------------------------- /DatabaseLayer/SFDBAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBAdaptor.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDBAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBAdaptor.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBManager.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBManager.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDBPacketSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBPacketSystem.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDBRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBRequest.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDBRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBRequest.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDBWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBWorker.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDBWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDBWorker.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDataBaseProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDataBaseProxy.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDatabase.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDatabase.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDatabaseProxyImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDatabaseProxyImpl.h -------------------------------------------------------------------------------- /DatabaseLayer/SFDatabaseSQLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDatabaseSQLite.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFDatabaseSQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFDatabaseSQLite.h -------------------------------------------------------------------------------- /DatabaseLayer/SFFastDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFFastDB.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFFastDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFFastDB.h -------------------------------------------------------------------------------- /DatabaseLayer/SFFastDBAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFFastDBAdaptor.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFFastDBAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFFastDBAdaptor.h -------------------------------------------------------------------------------- /DatabaseLayer/SFMSSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMSSQL.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFMSSQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMSSQL.h -------------------------------------------------------------------------------- /DatabaseLayer/SFMSSQLAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMSSQLAdaptor.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFMSSQLAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMSSQLAdaptor.h -------------------------------------------------------------------------------- /DatabaseLayer/SFMySQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMySQL.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFMySQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMySQL.h -------------------------------------------------------------------------------- /DatabaseLayer/SFMySQLAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMySQLAdaptor.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFMySQLAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFMySQLAdaptor.h -------------------------------------------------------------------------------- /DatabaseLayer/SFZdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFZdb.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFZdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFZdb.h -------------------------------------------------------------------------------- /DatabaseLayer/SFZdbAdpator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFZdbAdpator.cpp -------------------------------------------------------------------------------- /DatabaseLayer/SFZdbAdpator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/SFZdbAdpator.h -------------------------------------------------------------------------------- /DatabaseLayer/Script/tblLogin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/Script/tblLogin.txt -------------------------------------------------------------------------------- /DatabaseLayer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/stdafx.cpp -------------------------------------------------------------------------------- /DatabaseLayer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/stdafx.h -------------------------------------------------------------------------------- /DatabaseLayer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/DatabaseLayer/targetver.h -------------------------------------------------------------------------------- /Doc/CGSF 기본 프로젝트 생성.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Doc/CGSF 기본 프로젝트 생성.docx -------------------------------------------------------------------------------- /Doc/CGSF_NETFramework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Doc/CGSF_NETFramework.md -------------------------------------------------------------------------------- /Doc/Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Doc/Config.md -------------------------------------------------------------------------------- /Doc/NET_Sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Doc/NET_Sample.md -------------------------------------------------------------------------------- /Doc/Session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Doc/Session.md -------------------------------------------------------------------------------- /EngineLayer/ACEHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/ACEHeader.h -------------------------------------------------------------------------------- /EngineLayer/CommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/CommonHeader.h -------------------------------------------------------------------------------- /EngineLayer/CommunityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/CommunityManager.cpp -------------------------------------------------------------------------------- /EngineLayer/CommunityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/CommunityManager.h -------------------------------------------------------------------------------- /EngineLayer/DataBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/DataBuffer.cpp -------------------------------------------------------------------------------- /EngineLayer/DataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/DataBuffer.h -------------------------------------------------------------------------------- /EngineLayer/EngineLayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/EngineLayer.vcxproj -------------------------------------------------------------------------------- /EngineLayer/GPGLockFree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/GPGLockFree.h -------------------------------------------------------------------------------- /EngineLayer/IConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/IConnection.h -------------------------------------------------------------------------------- /EngineLayer/ILogicDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/ILogicDispatcher.h -------------------------------------------------------------------------------- /EngineLayer/ILogicEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/ILogicEntry.cpp -------------------------------------------------------------------------------- /EngineLayer/ILogicEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/ILogicEntry.h -------------------------------------------------------------------------------- /EngineLayer/INetworkFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/INetworkFramework.h -------------------------------------------------------------------------------- /EngineLayer/IPacketTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/IPacketTask.h -------------------------------------------------------------------------------- /EngineLayer/IRPCService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/IRPCService.h -------------------------------------------------------------------------------- /EngineLayer/LogicEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/LogicEntry.cpp -------------------------------------------------------------------------------- /EngineLayer/LogicEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/LogicEntry.h -------------------------------------------------------------------------------- /EngineLayer/RPC/CPstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/CPstream.cpp -------------------------------------------------------------------------------- /EngineLayer/RPC/CPstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/CPstream.h -------------------------------------------------------------------------------- /EngineLayer/RPC/IPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/IPersistence.h -------------------------------------------------------------------------------- /EngineLayer/RPC/arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/arg.cpp -------------------------------------------------------------------------------- /EngineLayer/RPC/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/arg.hpp -------------------------------------------------------------------------------- /EngineLayer/RPC/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/proxy.hpp -------------------------------------------------------------------------------- /EngineLayer/RPC/serviceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/serviceDef.h -------------------------------------------------------------------------------- /EngineLayer/RPC/service_err.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/service_err.hpp -------------------------------------------------------------------------------- /EngineLayer/RPC/service_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/service_method.h -------------------------------------------------------------------------------- /EngineLayer/RPC/testinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/testinterface.h -------------------------------------------------------------------------------- /EngineLayer/RPC/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/transport.hpp -------------------------------------------------------------------------------- /EngineLayer/RPC/typetraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPC/typetraits.hpp -------------------------------------------------------------------------------- /EngineLayer/RPCService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPCService.cpp -------------------------------------------------------------------------------- /EngineLayer/RPCService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/RPCService.h -------------------------------------------------------------------------------- /EngineLayer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/ReadMe.txt -------------------------------------------------------------------------------- /EngineLayer/SFACEAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFACEAllocator.h -------------------------------------------------------------------------------- /EngineLayer/SFAvroPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFAvroPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFAvroPacketImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFAvroPacketImpl.cpp -------------------------------------------------------------------------------- /EngineLayer/SFAvroPacketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFAvroPacketImpl.h -------------------------------------------------------------------------------- /EngineLayer/SFAvroProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFAvroProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFAvroProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFAvroProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFBasePacketProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFBasePacketProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFBridgeThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFBridgeThread.cpp -------------------------------------------------------------------------------- /EngineLayer/SFBridgeThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFBridgeThread.h -------------------------------------------------------------------------------- /EngineLayer/SFCGSFPacketProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFCGSFPacketProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFCheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFCheckSum.cpp -------------------------------------------------------------------------------- /EngineLayer/SFCheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFCheckSum.h -------------------------------------------------------------------------------- /EngineLayer/SFClassicDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFClassicDispatcher.cpp -------------------------------------------------------------------------------- /EngineLayer/SFClassicDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFClassicDispatcher.h -------------------------------------------------------------------------------- /EngineLayer/SFConfigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFConfigure.cpp -------------------------------------------------------------------------------- /EngineLayer/SFConfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFConfigure.h -------------------------------------------------------------------------------- /EngineLayer/SFConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFConstant.h -------------------------------------------------------------------------------- /EngineLayer/SFEchoPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEchoPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFEchoPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEchoPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFEchoProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEchoProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFEchoProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEchoProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEngine.cpp -------------------------------------------------------------------------------- /EngineLayer/SFEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFEngine.h -------------------------------------------------------------------------------- /EngineLayer/SFExcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFExcel.cpp -------------------------------------------------------------------------------- /EngineLayer/SFExcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFExcel.h -------------------------------------------------------------------------------- /EngineLayer/SFFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFFactory.h -------------------------------------------------------------------------------- /EngineLayer/SFHTTPPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFHTTPPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFHTTPPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFHTTPPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFHTTPProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFHTTPProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFHTTPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFHTTPProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFIOBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOBuffer.cpp -------------------------------------------------------------------------------- /EngineLayer/SFIOBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOBuffer.h -------------------------------------------------------------------------------- /EngineLayer/SFIOCPFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOCPFramework.cpp -------------------------------------------------------------------------------- /EngineLayer/SFIOCPFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOCPFramework.h -------------------------------------------------------------------------------- /EngineLayer/SFIOController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOController.cpp -------------------------------------------------------------------------------- /EngineLayer/SFIOController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIOController.h -------------------------------------------------------------------------------- /EngineLayer/SFIni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIni.cpp -------------------------------------------------------------------------------- /EngineLayer/SFIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFIni.h -------------------------------------------------------------------------------- /EngineLayer/SFJsonPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFJsonPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFJsonPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFJsonPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFJsonProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFJsonProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFJsonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFJsonProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFLogicDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicDispatcher.cpp -------------------------------------------------------------------------------- /EngineLayer/SFLogicDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicDispatcher.h -------------------------------------------------------------------------------- /EngineLayer/SFLogicGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicGate.cpp -------------------------------------------------------------------------------- /EngineLayer/SFLogicGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicGate.h -------------------------------------------------------------------------------- /EngineLayer/SFLogicGateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicGateway.cpp -------------------------------------------------------------------------------- /EngineLayer/SFLogicGateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFLogicGateway.h -------------------------------------------------------------------------------- /EngineLayer/SFMGClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMGClient.cpp -------------------------------------------------------------------------------- /EngineLayer/SFMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMacro.h -------------------------------------------------------------------------------- /EngineLayer/SFMsgPackPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMsgPackPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFMsgPackPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMsgPackPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFMsgPackProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMsgPackProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFMsgPackProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFMsgPackProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFNetworkEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFNetworkEntry.cpp -------------------------------------------------------------------------------- /EngineLayer/SFNetworkEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFNetworkEntry.h -------------------------------------------------------------------------------- /EngineLayer/SFObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFObject.cpp -------------------------------------------------------------------------------- /EngineLayer/SFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFObject.h -------------------------------------------------------------------------------- /EngineLayer/SFObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFObserver.cpp -------------------------------------------------------------------------------- /EngineLayer/SFObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFObserver.h -------------------------------------------------------------------------------- /EngineLayer/SFPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFPacketDelaySendTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketDelaySendTask.h -------------------------------------------------------------------------------- /EngineLayer/SFPacketIOBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketIOBuffer.cpp -------------------------------------------------------------------------------- /EngineLayer/SFPacketIOBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketIOBuffer.h -------------------------------------------------------------------------------- /EngineLayer/SFPacketProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFPacketProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFPacketSendGateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketSendGateway.cpp -------------------------------------------------------------------------------- /EngineLayer/SFPacketSendGateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFPacketSendGateway.h -------------------------------------------------------------------------------- /EngineLayer/SFProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProducer.h -------------------------------------------------------------------------------- /EngineLayer/SFProtobufPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtobufPacket.cpp -------------------------------------------------------------------------------- /EngineLayer/SFProtobufPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtobufPacket.h -------------------------------------------------------------------------------- /EngineLayer/SFProtobufPacketImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtobufPacketImpl.h -------------------------------------------------------------------------------- /EngineLayer/SFProtobufProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtobufProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFProtobufProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtobufProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtocol.cpp -------------------------------------------------------------------------------- /EngineLayer/SFProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFProtocol.h -------------------------------------------------------------------------------- /EngineLayer/SFRPCGateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFRPCGateway.cpp -------------------------------------------------------------------------------- /EngineLayer/SFRPCGateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFRPCGateway.h -------------------------------------------------------------------------------- /EngineLayer/SFSessionService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFSessionService.cpp -------------------------------------------------------------------------------- /EngineLayer/SFSessionService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFSessionService.h -------------------------------------------------------------------------------- /EngineLayer/SFShouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFShouter.cpp -------------------------------------------------------------------------------- /EngineLayer/SFShouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFShouter.h -------------------------------------------------------------------------------- /EngineLayer/SFSinglton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFSinglton.h -------------------------------------------------------------------------------- /EngineLayer/SFStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFStructure.h -------------------------------------------------------------------------------- /EngineLayer/SFSubject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFSubject.cpp -------------------------------------------------------------------------------- /EngineLayer/SFSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFSubject.h -------------------------------------------------------------------------------- /EngineLayer/SFTCPNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFTCPNetwork.cpp -------------------------------------------------------------------------------- /EngineLayer/SFTCPNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFTCPNetwork.h -------------------------------------------------------------------------------- /EngineLayer/SFUDPNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFUDPNetwork.cpp -------------------------------------------------------------------------------- /EngineLayer/SFUDPNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/SFUDPNetwork.h -------------------------------------------------------------------------------- /EngineLayer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/stdafx.cpp -------------------------------------------------------------------------------- /EngineLayer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/stdafx.h -------------------------------------------------------------------------------- /EngineLayer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/EngineLayer/targetver.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/ReadMe.txt -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFGameMode.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFLobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFLobby.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFLobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFLobby.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFLogicCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFLogicCore.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFP2PSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFP2PSys.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFP2PSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFP2PSys.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFPlayer.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFPlayer.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFPlayerFSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFPlayerFSM.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFReqMySQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFReqMySQL.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoom.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoom.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoomFSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoomFSM.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoomFSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoomFSM.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoomNone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoomNone.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoomPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoomPlay.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFRoomState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFRoomState.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFTeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFTeam.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/SFTeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/SFTeam.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/stdafx.cpp -------------------------------------------------------------------------------- /LogicLayer/CasualGame/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/stdafx.h -------------------------------------------------------------------------------- /LogicLayer/CasualGame/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/CasualGame/targetver.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/MOGame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/MOGame.vcxproj -------------------------------------------------------------------------------- /LogicLayer/MOGame/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/ReadMe.txt -------------------------------------------------------------------------------- /LogicLayer/MOGame/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/attribute.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/attribute.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/attributeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/attributeinfo.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/being.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/being.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/being.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/being.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/buysell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/buysell.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/buysell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/buysell.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/component.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/dal/dalexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/dal/dalexcept.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/dal/recordset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/dal/recordset.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/effect.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/effect.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/emotemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/emotemanager.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/entity.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/entity.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/gamehandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/gamehandler.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/gamehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/gamehandler.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/idmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/idmanager.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/inventory.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/inventory.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/item.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/item.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/itemmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/itemmanager.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/itemmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/itemmanager.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/main-game.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogicLayer/MOGame/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/map.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/map.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/mapcomposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/mapcomposite.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/mapmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/mapmanager.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/mapmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/mapmanager.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/mapreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/mapreader.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/mapreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/mapreader.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/monster.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/monster.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/net/bandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/net/bandwidth.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/net/messagein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/net/messagein.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/npc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/npc.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/npc.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/postman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/postman.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/quest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/quest.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/quest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/quest.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/state.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/state.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/statuseffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/statuseffect.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/statusmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/statusmanager.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/stdafx.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/stdafx.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/targetver.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/timeout.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/timeout.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/trade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/trade.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/trade.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/base64.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/logger.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/point.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/sha256.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/string.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/time.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/timer.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/timer.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/xml.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/xml.h -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/zlib.cpp -------------------------------------------------------------------------------- /LogicLayer/MOGame/utils/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/LogicLayer/MOGame/utils/zlib.h -------------------------------------------------------------------------------- /NETFramework/CgsfNET64LibProject/Compress.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NETFramework/Lib/Lib list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NETFramework/Lib/Lib list.txt -------------------------------------------------------------------------------- /NetworkLayer/ASIONet/ASIOClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/ASIONet/ASIOClient.h -------------------------------------------------------------------------------- /NetworkLayer/ASIONet/ASIOEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/ASIONet/ASIOEngine.h -------------------------------------------------------------------------------- /NetworkLayer/ASIONet/ASIOServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/ASIONet/ASIOServer.h -------------------------------------------------------------------------------- /NetworkLayer/ASIONet/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/ASIONet/Protocol.h -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/ACEEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/CGSFNet/ACEEngine.h -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/ACEHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/CGSFNet/ACEHeader.h -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/IDMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/CGSFNet/IDMap.h -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/CGSFNet/Lock.h -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/ProactorWorkerThread.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void ProactorWorkerThread(void* Args); 4 | -------------------------------------------------------------------------------- /NetworkLayer/CGSFNet/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/CGSFNet/Queue.h -------------------------------------------------------------------------------- /NetworkLayer/MGNet/MGEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/MGNet/MGEngine.cpp -------------------------------------------------------------------------------- /NetworkLayer/MGNet/MGEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/MGNet/MGEngine.h -------------------------------------------------------------------------------- /NetworkLayer/MGNet/MGNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/NetworkLayer/MGNet/MGNet.vcxproj -------------------------------------------------------------------------------- /NetworkLayer/MGNet/include/variverr.h: -------------------------------------------------------------------------------- 1 | //#define _SECURE_SCL 0 -------------------------------------------------------------------------------- /P2PLayer/Common/P2PCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Common/P2PCommon.h -------------------------------------------------------------------------------- /P2PLayer/Common/SDLP2PCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Common/SDLP2PCommon.h -------------------------------------------------------------------------------- /P2PLayer/Interface/IP2PManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Interface/IP2PManager.h -------------------------------------------------------------------------------- /P2PLayer/Interface/P2PClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Interface/P2PClient.h -------------------------------------------------------------------------------- /P2PLayer/Interface/P2PData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Interface/P2PData.h -------------------------------------------------------------------------------- /P2PLayer/Interface/P2PServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/Interface/P2PServer.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/AccessAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/AccessAll.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/CtrlMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/CtrlMem.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/CtrlMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/CtrlMem.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/CtrlPeers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/CtrlPeers.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/Data.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/Data.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/MemChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/MemChunk.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/MemPool.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PeerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PeerInfo.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuCfg.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuCfg.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuLog.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuLog.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuPeers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuPeers.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/PuPeers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/PuPeers.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/ReadMe.txt -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/SmartX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/SmartX.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/dllmain.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PClient/targetver.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/AllOcfCli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/AllOcfCli.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/AllRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/AllRelay.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/Common.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/Critical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/Critical.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/CtrlMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/CtrlMem.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/CtrlMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/CtrlMem.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/DataSt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/DataSt.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/DataSt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/DataSt.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/MemChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/MemChunk.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/MemPool.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/OcfPkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/OcfPkt.h -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/ReadMe.txt -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/dllmain.cpp -------------------------------------------------------------------------------- /P2PLayer/OCFP2PServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/P2PLayer/OCFP2PServer/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/README.md -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIFSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIFSM.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIFSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIFSM.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIGame.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIGame.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIInit.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIInit.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUILoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUILoading.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUILobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUILobby.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUILobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUILobby.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUILogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUILogin.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUILogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUILogin.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIRoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIRoom.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIRoom.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/GUIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/GUIState.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/IGameMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/IGameMain.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/ReadMe.txt -------------------------------------------------------------------------------- /Sample/CasualGameGUI/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/stdafx.cpp -------------------------------------------------------------------------------- /Sample/CasualGameGUI/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/stdafx.h -------------------------------------------------------------------------------- /Sample/CasualGameGUI/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/CasualGameGUI/targetver.h -------------------------------------------------------------------------------- /Sample/ChatClient/ChatCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/ChatCallback.h -------------------------------------------------------------------------------- /Sample/ChatClient/ChatClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/ChatClient.cpp -------------------------------------------------------------------------------- /Sample/ChatClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ChatClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ChatClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/stdafx.h -------------------------------------------------------------------------------- /Sample/ChatClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClient/targetver.h -------------------------------------------------------------------------------- /Sample/ChatClientAndroid/.idea/.name: -------------------------------------------------------------------------------- 1 | chatclientandroid -------------------------------------------------------------------------------- /Sample/ChatClientNET/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClientNET/App.config -------------------------------------------------------------------------------- /Sample/ChatClientNET/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClientNET/MainForm.cs -------------------------------------------------------------------------------- /Sample/ChatClientNET/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClientNET/Program.cs -------------------------------------------------------------------------------- /Sample/ChatClientNET/UILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatClientNET/UILog.cs -------------------------------------------------------------------------------- /Sample/ChatServer/ChatServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/ChatServer.cpp -------------------------------------------------------------------------------- /Sample/ChatServer/ChatUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/ChatUser.cpp -------------------------------------------------------------------------------- /Sample/ChatServer/ChatUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/ChatUser.h -------------------------------------------------------------------------------- /Sample/ChatServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ChatServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ChatServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/stdafx.h -------------------------------------------------------------------------------- /Sample/ChatServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ChatServer/targetver.h -------------------------------------------------------------------------------- /Sample/EchoClient/EchoCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/EchoCallback.h -------------------------------------------------------------------------------- /Sample/EchoClient/EchoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/EchoClient.cpp -------------------------------------------------------------------------------- /Sample/EchoClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/ReadMe.txt -------------------------------------------------------------------------------- /Sample/EchoClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/stdafx.cpp -------------------------------------------------------------------------------- /Sample/EchoClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/stdafx.h -------------------------------------------------------------------------------- /Sample/EchoClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoClient/targetver.h -------------------------------------------------------------------------------- /Sample/EchoServer/EchoServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoServer/EchoServer.cpp -------------------------------------------------------------------------------- /Sample/EchoServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/EchoServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/EchoServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoServer/stdafx.h -------------------------------------------------------------------------------- /Sample/EchoServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/EchoServer/targetver.h -------------------------------------------------------------------------------- /Sample/FPSClient/FPSClient/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSClient/FPSClient/Game.h -------------------------------------------------------------------------------- /Sample/FPSClient/FPSClient/Wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSClient/FPSClient/Wait.h -------------------------------------------------------------------------------- /Sample/FPSClient/FPSEngine/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSClient/FPSEngine/Font.h -------------------------------------------------------------------------------- /Sample/FPSClient/FPSEngine/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSClient/FPSEngine/Mesh.h -------------------------------------------------------------------------------- /Sample/FPSServer/FPSProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/FPSProtocol.cpp -------------------------------------------------------------------------------- /Sample/FPSServer/FPSProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/FPSProtocol.h -------------------------------------------------------------------------------- /Sample/FPSServer/FPSSendPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/FPSSendPacket.h -------------------------------------------------------------------------------- /Sample/FPSServer/FPSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/FPSServer.cpp -------------------------------------------------------------------------------- /Sample/FPSServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/FPSServer/SFFreeForAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/SFFreeForAll.cpp -------------------------------------------------------------------------------- /Sample/FPSServer/SFFreeForAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/SFFreeForAll.h -------------------------------------------------------------------------------- /Sample/FPSServer/SFSuddenDeath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/SFSuddenDeath.h -------------------------------------------------------------------------------- /Sample/FPSServer/SFTraining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/SFTraining.cpp -------------------------------------------------------------------------------- /Sample/FPSServer/SFTraining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/SFTraining.h -------------------------------------------------------------------------------- /Sample/FPSServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/FPSServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/stdafx.h -------------------------------------------------------------------------------- /Sample/FPSServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/FPSServer/targetver.h -------------------------------------------------------------------------------- /Sample/HTTPServer/HTTPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/HTTPServer/HTTPServer.cpp -------------------------------------------------------------------------------- /Sample/HTTPServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/HTTPServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/HTTPServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/HTTPServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/HTTPServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/HTTPServer/stdafx.h -------------------------------------------------------------------------------- /Sample/HTTPServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/HTTPServer/targetver.h -------------------------------------------------------------------------------- /Sample/ManaServer/ManaServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ManaServer/ManaServer.cpp -------------------------------------------------------------------------------- /Sample/ManaServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ManaServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ManaServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ManaServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ManaServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ManaServer/stdafx.h -------------------------------------------------------------------------------- /Sample/ManaServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ManaServer/targetver.h -------------------------------------------------------------------------------- /Sample/ProtocolClient/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/Input.cpp -------------------------------------------------------------------------------- /Sample/ProtocolClient/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/Input.h -------------------------------------------------------------------------------- /Sample/ProtocolClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ProtocolClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ProtocolClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/stdafx.h -------------------------------------------------------------------------------- /Sample/ProtocolClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolClient/targetver.h -------------------------------------------------------------------------------- /Sample/ProtocolServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ProtocolServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ProtocolServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolServer/stdafx.h -------------------------------------------------------------------------------- /Sample/ProtocolServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ProtocolServer/targetver.h -------------------------------------------------------------------------------- /Sample/RPCClient/RPCCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/RPCCallback.cpp -------------------------------------------------------------------------------- /Sample/RPCClient/RPCCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/RPCCallback.h -------------------------------------------------------------------------------- /Sample/RPCClient/RPCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/RPCClient.cpp -------------------------------------------------------------------------------- /Sample/RPCClient/RPCFuture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/RPCFuture.cpp -------------------------------------------------------------------------------- /Sample/RPCClient/RPCFuture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/RPCFuture.h -------------------------------------------------------------------------------- /Sample/RPCClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/ReadMe.txt -------------------------------------------------------------------------------- /Sample/RPCClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/stdafx.cpp -------------------------------------------------------------------------------- /Sample/RPCClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/stdafx.h -------------------------------------------------------------------------------- /Sample/RPCClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCClient/targetver.h -------------------------------------------------------------------------------- /Sample/RPCServer/RPCLogicEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/RPCLogicEntry.h -------------------------------------------------------------------------------- /Sample/RPCServer/RPCServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/RPCServer.cpp -------------------------------------------------------------------------------- /Sample/RPCServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/RPCServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/RPCServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/stdafx.h -------------------------------------------------------------------------------- /Sample/RPCServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RPCServer/targetver.h -------------------------------------------------------------------------------- /Sample/RawSocket/Ajp13Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ajp13Socket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Ajp13Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ajp13Socket.h -------------------------------------------------------------------------------- /Sample/RawSocket/AjpBaseSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/AjpBaseSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Base64.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Base64.h -------------------------------------------------------------------------------- /Sample/RawSocket/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Changelog -------------------------------------------------------------------------------- /Sample/RawSocket/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Debug.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Debug.h -------------------------------------------------------------------------------- /Sample/RawSocket/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Event.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Event.h -------------------------------------------------------------------------------- /Sample/RawSocket/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/EventHandler.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/EventHandler.h -------------------------------------------------------------------------------- /Sample/RawSocket/EventTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/EventTime.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/EventTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/EventTime.h -------------------------------------------------------------------------------- /Sample/RawSocket/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Exception.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Exception.h -------------------------------------------------------------------------------- /Sample/RawSocket/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/File.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/File.h -------------------------------------------------------------------------------- /Sample/RawSocket/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/FileStream.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/FileStream.h -------------------------------------------------------------------------------- /Sample/RawSocket/HTTPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HTTPSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HTTPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HTTPSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpBaseSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpBaseSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpGetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpGetSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpPostSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpPostSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpPutSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpPutSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpRequest.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpRequest.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpResponse.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpResponse.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdCookies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdCookies.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdCookies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdCookies.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdForm.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdForm.h -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/HttpdSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/HttpdSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/IBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IBase.h -------------------------------------------------------------------------------- /Sample/RawSocket/IEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IEventHandler.h -------------------------------------------------------------------------------- /Sample/RawSocket/IEventOwner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IEventOwner.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/IEventOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IEventOwner.h -------------------------------------------------------------------------------- /Sample/RawSocket/IFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IFile.h -------------------------------------------------------------------------------- /Sample/RawSocket/IFileUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IFileUpload.h -------------------------------------------------------------------------------- /Sample/RawSocket/IHttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IHttpServer.h -------------------------------------------------------------------------------- /Sample/RawSocket/IModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IModel.h -------------------------------------------------------------------------------- /Sample/RawSocket/IMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IMutex.h -------------------------------------------------------------------------------- /Sample/RawSocket/ISocketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ISocketHandler.h -------------------------------------------------------------------------------- /Sample/RawSocket/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/IStream.h -------------------------------------------------------------------------------- /Sample/RawSocket/Ipv4Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ipv4Address.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Ipv4Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ipv4Address.h -------------------------------------------------------------------------------- /Sample/RawSocket/Ipv6Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ipv6Address.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Ipv6Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Ipv6Address.h -------------------------------------------------------------------------------- /Sample/RawSocket/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Json.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Json.h -------------------------------------------------------------------------------- /Sample/RawSocket/ListenSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ListenSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Lock.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Lock.h -------------------------------------------------------------------------------- /Sample/RawSocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Makefile -------------------------------------------------------------------------------- /Sample/RawSocket/MemFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/MemFile.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/MemFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/MemFile.h -------------------------------------------------------------------------------- /Sample/RawSocket/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Mutex.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Mutex.h -------------------------------------------------------------------------------- /Sample/RawSocket/Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Parse.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Parse.h -------------------------------------------------------------------------------- /Sample/RawSocket/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/README -------------------------------------------------------------------------------- /Sample/RawSocket/ResolvServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ResolvServer.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/ResolvServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ResolvServer.h -------------------------------------------------------------------------------- /Sample/RawSocket/ResolvSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ResolvSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/ResolvSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ResolvSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/SSLInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SSLInitializer.h -------------------------------------------------------------------------------- /Sample/RawSocket/SctpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SctpSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/SctpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SctpSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Semaphore.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Semaphore.h -------------------------------------------------------------------------------- /Sample/RawSocket/SmtpdSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SmtpdSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/SmtpdSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SmtpdSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Socket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Socket.h -------------------------------------------------------------------------------- /Sample/RawSocket/SocketAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketAddress.h -------------------------------------------------------------------------------- /Sample/RawSocket/SocketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketHandler.h -------------------------------------------------------------------------------- /Sample/RawSocket/SocketStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketStream.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/SocketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketStream.h -------------------------------------------------------------------------------- /Sample/RawSocket/SocketThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketThread.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/SocketThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/SocketThread.h -------------------------------------------------------------------------------- /Sample/RawSocket/StdLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StdLog.h -------------------------------------------------------------------------------- /Sample/RawSocket/StdoutLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StdoutLog.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/StdoutLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StdoutLog.h -------------------------------------------------------------------------------- /Sample/RawSocket/StreamSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StreamSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/StreamSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StreamSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/StreamWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StreamWriter.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/StreamWriter.h -------------------------------------------------------------------------------- /Sample/RawSocket/TcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/TcpSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/TcpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/TcpSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Thread.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Thread.h -------------------------------------------------------------------------------- /Sample/RawSocket/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/UdpSocket.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/UdpSocket.h -------------------------------------------------------------------------------- /Sample/RawSocket/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Utility.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/Utility.h -------------------------------------------------------------------------------- /Sample/RawSocket/XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlDocument.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlDocument.h -------------------------------------------------------------------------------- /Sample/RawSocket/XmlException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlException.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/XmlException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlException.h -------------------------------------------------------------------------------- /Sample/RawSocket/XmlNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlNode.cpp -------------------------------------------------------------------------------- /Sample/RawSocket/XmlNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/XmlNode.h -------------------------------------------------------------------------------- /Sample/RawSocket/ajp13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/ajp13.h -------------------------------------------------------------------------------- /Sample/RawSocket/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/gpl.txt -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/README -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/SAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/SAX.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/SAX2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/SAX2.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/TODO -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/c14n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/c14n.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/catalog.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/chvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/chvalid.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/dict.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/error.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/globals.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/hash.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/legacy.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/libxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/libxml.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/list.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/nanoftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/nanoftp.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/parser.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/pattern.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/relaxng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/relaxng.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/runtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/runtest.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/testSAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/testSAX.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/testURI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/testURI.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/testapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/testapi.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/testdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/testdso.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/threads.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/tree.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/trio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/trio.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/trio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/trio.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/triodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/triodef.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/trionan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/trionan.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/trionan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/trionan.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/triop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/triop.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/triostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/triostr.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/triostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/triostr.h -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/uri.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/valid.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/xlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/xlink.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/xmlIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/xmlIO.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/xmllint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/xmllint.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/xmlsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/xmlsave.c -------------------------------------------------------------------------------- /Sample/RawSocket/libxml/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/libxml/xpath.c -------------------------------------------------------------------------------- /Sample/RawSocket/socket_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/socket_include.h -------------------------------------------------------------------------------- /Sample/RawSocket/sockets-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/RawSocket/sockets-config.h -------------------------------------------------------------------------------- /Sample/ServerConnector/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerConnector/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ServerConnector/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerConnector/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ServerConnector/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerConnector/stdafx.h -------------------------------------------------------------------------------- /Sample/ServerListener/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerListener/ReadMe.txt -------------------------------------------------------------------------------- /Sample/ServerListener/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerListener/stdafx.cpp -------------------------------------------------------------------------------- /Sample/ServerListener/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerListener/stdafx.h -------------------------------------------------------------------------------- /Sample/ServerListener/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/ServerListener/targetver.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/Define.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/ReadMe.txt -------------------------------------------------------------------------------- /Sample/SevenGameClient/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/Renderer.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/Resource.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/SGState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/SGState.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/SGTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/SGTable.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/SGUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/SGUser.cpp -------------------------------------------------------------------------------- /Sample/SevenGameClient/SGUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/SGUser.h -------------------------------------------------------------------------------- /Sample/SevenGameClient/SevenGame.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Sample/SevenGameClient/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/small.ico -------------------------------------------------------------------------------- /Sample/SevenGameClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/stdafx.cpp -------------------------------------------------------------------------------- /Sample/SevenGameClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameClient/stdafx.h -------------------------------------------------------------------------------- /Sample/SevenGameServer/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/Define.h -------------------------------------------------------------------------------- /Sample/SevenGameServer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/ReadMe.txt -------------------------------------------------------------------------------- /Sample/SevenGameServer/SGBattle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/SGBattle.h -------------------------------------------------------------------------------- /Sample/SevenGameServer/SGTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/SGTable.h -------------------------------------------------------------------------------- /Sample/SevenGameServer/SGUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/SGUser.cpp -------------------------------------------------------------------------------- /Sample/SevenGameServer/SGUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/SGUser.h -------------------------------------------------------------------------------- /Sample/SevenGameServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/SevenGameServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SevenGameServer/stdafx.h -------------------------------------------------------------------------------- /Sample/SimpleEcho/GameUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/GameUser.cpp -------------------------------------------------------------------------------- /Sample/SimpleEcho/GameUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/GameUser.h -------------------------------------------------------------------------------- /Sample/SimpleEcho/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/ReadMe.txt -------------------------------------------------------------------------------- /Sample/SimpleEcho/SimpleEcho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/SimpleEcho.cpp -------------------------------------------------------------------------------- /Sample/SimpleEcho/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/stdafx.cpp -------------------------------------------------------------------------------- /Sample/SimpleEcho/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/stdafx.h -------------------------------------------------------------------------------- /Sample/SimpleEcho/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/SimpleEcho/targetver.h -------------------------------------------------------------------------------- /Sample/UnityClient/BIN/UnitySample_Data/PlayerConnectionConfigFile: -------------------------------------------------------------------------------- 1 | listen 2866617809 0 0 -------------------------------------------------------------------------------- /Sample/UnityClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityClient/readme.md -------------------------------------------------------------------------------- /Sample/UnityServer/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/CommonData.h -------------------------------------------------------------------------------- /Sample/UnityServer/GameUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/GameUser.cpp -------------------------------------------------------------------------------- /Sample/UnityServer/GameUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/GameUser.h -------------------------------------------------------------------------------- /Sample/UnityServer/LoginPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/LoginPart.cpp -------------------------------------------------------------------------------- /Sample/UnityServer/LoginPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/LoginPart.h -------------------------------------------------------------------------------- /Sample/UnityServer/PersonalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/PersonalInfo.h -------------------------------------------------------------------------------- /Sample/UnityServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/readme.md -------------------------------------------------------------------------------- /Sample/UnityServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/stdafx.cpp -------------------------------------------------------------------------------- /Sample/UnityServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/stdafx.h -------------------------------------------------------------------------------- /Sample/UnityServer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/UnityServer/targetver.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUT.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUT.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTShapes.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTcamera.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTenum.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTenum.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTgui.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTgui.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTguiIME.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTguiIME.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTmisc.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTmisc.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTres.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/DXUTres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/DXUTres.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/ImeUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/ImeUi.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/ImeUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/ImeUi.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKmesh.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKmesh.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKmisc.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKmisc.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKsound.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/SDKsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/SDKsound.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/directx.ico -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/dxstdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/dxstdafx.cpp -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/dxstdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/dxstdafx.h -------------------------------------------------------------------------------- /Sample/Vendor/DXUtil/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DXUtil/icon1.ico -------------------------------------------------------------------------------- /Sample/Vendor/DirectMusic/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DirectMusic/dls1.h -------------------------------------------------------------------------------- /Sample/Vendor/DirectMusic/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DirectMusic/dls2.h -------------------------------------------------------------------------------- /Sample/Vendor/DirectMusic/dmdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DirectMusic/dmdls.h -------------------------------------------------------------------------------- /Sample/Vendor/DirectMusic/dplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/Vendor/DirectMusic/dplay.h -------------------------------------------------------------------------------- /Sample/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Sample/readme.txt -------------------------------------------------------------------------------- /Tool/UIWindow/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/ReadMe.txt -------------------------------------------------------------------------------- /Tool/UIWindow/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/Resource.h -------------------------------------------------------------------------------- /Tool/UIWindow/SampleUIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/SampleUIWindow.cpp -------------------------------------------------------------------------------- /Tool/UIWindow/SampleUIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/SampleUIWindow.h -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.aps -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.cpp -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.ico -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.rc -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.sln -------------------------------------------------------------------------------- /Tool/UIWindow/UIWindow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/UIWindow.vcxproj -------------------------------------------------------------------------------- /Tool/UIWindow/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/small.ico -------------------------------------------------------------------------------- /Tool/UIWindow/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/stdafx.cpp -------------------------------------------------------------------------------- /Tool/UIWindow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/stdafx.h -------------------------------------------------------------------------------- /Tool/UIWindow/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/Tool/UIWindow/targetver.h -------------------------------------------------------------------------------- /UnitTest/BaseLayerTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/UnitTest/BaseLayerTest/stdafx.cpp -------------------------------------------------------------------------------- /UnitTest/BaseLayerTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/UnitTest/BaseLayerTest/stdafx.h -------------------------------------------------------------------------------- /UnitTest/EngineLayerTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/UnitTest/EngineLayerTest/stdafx.h -------------------------------------------------------------------------------- /VSProject/AllProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/AllProject.sln -------------------------------------------------------------------------------- /VSProject/Bin32/CasualGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin32/CasualGame.ini -------------------------------------------------------------------------------- /VSProject/Bin32/Connection.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin32/Connection.ini -------------------------------------------------------------------------------- /VSProject/Bin32/DataSource.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin32/DataSource.ini -------------------------------------------------------------------------------- /VSProject/Bin32/EngineConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin32/EngineConfig.xml -------------------------------------------------------------------------------- /VSProject/Bin64/CasualGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin64/CasualGame.ini -------------------------------------------------------------------------------- /VSProject/Bin64/Connection.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin64/Connection.ini -------------------------------------------------------------------------------- /VSProject/Bin64/DataSource.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin64/DataSource.ini -------------------------------------------------------------------------------- /VSProject/Bin64/EngineConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Bin64/EngineConfig.xml -------------------------------------------------------------------------------- /VSProject/CGSFTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/CGSFTest.sln -------------------------------------------------------------------------------- /VSProject/EngineLayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/EngineLayer.sln -------------------------------------------------------------------------------- /VSProject/FPSMultiplayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/FPSMultiplayer.sln -------------------------------------------------------------------------------- /VSProject/LogicLayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/LogicLayer.sln -------------------------------------------------------------------------------- /VSProject/NetworkLayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/NetworkLayer.sln -------------------------------------------------------------------------------- /VSProject/P2PLayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/P2PLayer.sln -------------------------------------------------------------------------------- /VSProject/Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/CGSF/HEAD/VSProject/Sample.sln --------------------------------------------------------------------------------