├── .github └── workflows │ └── ccpp.yml ├── LICENSE ├── README.md ├── code ├── CMakeLists.txt ├── CMakeModules │ ├── AndroidToolChain.cmake │ ├── CheckDepends.cmake │ ├── ConfigureChecks.cmake │ ├── Find3dsMaxSDK.cmake │ ├── FindCEGUI.cmake │ ├── FindCppTest.cmake │ ├── FindCrashRpt.cmake │ ├── FindCurl.cmake │ ├── FindCustomMFC.cmake │ ├── FindDInput.cmake │ ├── FindDSound.cmake │ ├── FindDirectXSDK.cmake │ ├── FindEFXUtil.cmake │ ├── FindExternal.cmake │ ├── FindFMOD.cmake │ ├── FindFreeType.cmake │ ├── FindGTK2.cmake │ ├── FindIconv.cmake │ ├── FindJpeg.cmake │ ├── FindLibEvent.cmake │ ├── FindLibOVR.cmake │ ├── FindLibVR.cmake │ ├── FindLibwww.cmake │ ├── FindLua51.cmake │ ├── FindLua52.cmake │ ├── FindLua53.cmake │ ├── FindLuabind.cmake │ ├── FindMSVC.cmake │ ├── FindMercurial.cmake │ ├── FindMySQL.cmake │ ├── FindMysqlConnector.cmake │ ├── FindOgg.cmake │ ├── FindOpenGLES.cmake │ ├── FindOpenSSL.cmake │ ├── FindPBC.cmake │ ├── FindProtoBuf.cmake │ ├── FindS3TC.cmake │ ├── FindSTLport.cmake │ ├── FindSquish.cmake │ ├── FindTinyXml.cmake │ ├── FindToLua.cmake │ ├── FindVorbis.cmake │ ├── FindWindowsSDK.cmake │ ├── FindXF86VidMode.cmake │ ├── GetRevision.cmake │ ├── PCHSupport.cmake │ ├── iOSToolChain.cmake │ └── nel.cmake ├── CMakePackaging.txt ├── COPYING ├── CTestConfig.cmake ├── EVA │ ├── CMakeLists.txt │ ├── server │ │ ├── CMakeLists.txt │ │ ├── _del_log.bat │ │ ├── _robot_start .bat │ │ ├── _robot_stop .bat │ │ ├── _shard_start.bat │ │ ├── _shard_stop.bat │ │ ├── admin_executor_service.cfg │ │ ├── admin_modules │ │ │ ├── CMakeLists.txt │ │ │ ├── admin_modules.cpp │ │ │ ├── admin_modules_itf.cpp │ │ │ ├── admin_modules_itf.h │ │ │ ├── admin_modules_itf.xml │ │ │ ├── aes_client_module.cpp │ │ │ ├── aes_module.cpp │ │ │ └── as_module.cpp │ │ ├── admin_service.cfg │ │ ├── admin_service │ │ │ ├── CMakeLists.txt │ │ │ └── admin_service.cpp │ │ ├── client_robot.cfg │ │ ├── client_robot │ │ │ ├── CMakeLists.txt │ │ │ └── client_robot.cpp │ │ ├── common.cfg │ │ ├── frontend_service.cfg │ │ ├── frontend_service │ │ │ ├── CMakeLists.txt │ │ │ ├── frontend_service.cpp │ │ │ ├── frontend_service.h │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ │ ├── msg.xml │ │ ├── naming_service.cfg │ │ ├── naming_service │ │ │ ├── CMakeLists.txt │ │ │ └── naming_service.cpp │ │ ├── player_logic_service.cfg │ │ ├── player_logic_service │ │ │ ├── CMakeLists.txt │ │ │ ├── player_logic_service.cpp │ │ │ ├── player_logic_service.h │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ │ ├── save_shard │ │ │ └── rrd_graphs │ │ │ │ ├── aes.ProcessUsedMemory.rrd │ │ │ │ ├── egs.ProcessUsedMemory.rrd │ │ │ │ ├── fes.ProcessUsedMemory.rrd │ │ │ │ ├── fes_0.FPSProcessMsg.rrd │ │ │ │ ├── fes_0.ProcessUsedMemory.rrd │ │ │ │ ├── hold_dir │ │ │ │ ├── lgc.ProcessUsedMemory.rrd │ │ │ │ ├── lgc_0.ProcessUsedMemory.rrd │ │ │ │ ├── pds.ProcessUsedMemory.rrd │ │ │ │ ├── ras.ProcessUsedMemory.rrd │ │ │ │ └── rns.ProcessUsedMemory.rrd │ │ ├── schedule_service.cfg │ │ ├── schedule_service │ │ │ ├── CMakeLists.txt │ │ │ └── schedule_service.cpp │ │ ├── script │ │ │ ├── .vs │ │ │ │ ├── ProjectSettings.json │ │ │ │ ├── VSWorkspaceState.json │ │ │ │ ├── script │ │ │ │ │ └── v15 │ │ │ │ │ │ └── .suo │ │ │ │ └── slnx.sqlite │ │ │ ├── BaseService.luaprj │ │ │ ├── DataTable │ │ │ │ ├── ProtoMsg.pb │ │ │ │ ├── RoomConfig.json │ │ │ │ ├── RoomCreateCost.json │ │ │ │ ├── SpecialConfig.json │ │ │ │ ├── proto │ │ │ │ │ ├── define_attrib.proto │ │ │ │ │ ├── define_pro.proto │ │ │ │ │ ├── msg_client.proto │ │ │ │ │ ├── msg_doudizhu.proto │ │ │ │ │ └── msg_service.proto │ │ │ │ └── ssl │ │ │ │ │ ├── 1_root_bundle.crt │ │ │ │ │ ├── 2_ssl.ranatune.com.crt │ │ │ │ │ └── 3_ssl.ranatune.com.key │ │ │ ├── Framework │ │ │ │ ├── CJsonUtil.lua │ │ │ │ ├── Class.lua │ │ │ │ ├── Event │ │ │ │ │ ├── EventController.lua │ │ │ │ │ ├── EventRegister.lua │ │ │ │ │ └── EventTrigger.lua │ │ │ │ ├── Hotfix │ │ │ │ │ ├── HotfixHelper.lua │ │ │ │ │ ├── hotfix.lua │ │ │ │ │ └── internal │ │ │ │ │ │ ├── functions_replacer.lua │ │ │ │ │ │ └── module_updater.lua │ │ │ │ ├── InitFramework.lua │ │ │ │ ├── List.lua │ │ │ │ ├── Map.lua │ │ │ │ ├── MapMap.lua │ │ │ │ ├── MemoryReferenceInfo.lua │ │ │ │ ├── MiddleClass.lua │ │ │ │ ├── Net │ │ │ │ │ ├── BaseService.lua │ │ │ │ │ ├── CallbackServer.lua │ │ │ │ │ ├── NetWorkHandler.lua │ │ │ │ │ └── protobuf.lua │ │ │ │ ├── Queue.lua │ │ │ │ ├── SimpleStateMachine.lua │ │ │ │ ├── Stack.lua │ │ │ │ ├── StateFul.lua │ │ │ │ ├── Test │ │ │ │ │ ├── FSMClass.lua │ │ │ │ │ ├── MainTest.lua │ │ │ │ │ └── TimerTest.lua │ │ │ │ ├── TimerMgr.lua │ │ │ │ ├── Utils.lua │ │ │ │ └── functions.lua │ │ │ ├── Robot.luaprj │ │ │ ├── SharedLib │ │ │ │ ├── Event │ │ │ │ │ └── EventType.lua │ │ │ │ ├── InitSharedLib.lua │ │ │ │ └── StaticTableMgr.lua │ │ │ ├── _FES.luaprj │ │ │ ├── _FES │ │ │ │ ├── Client │ │ │ │ │ ├── Client.lua │ │ │ │ │ └── ClientMgr.lua │ │ │ │ ├── FrontEndService.lua │ │ │ │ ├── Msg │ │ │ │ │ └── MsgLogin.lua │ │ │ │ ├── Player │ │ │ │ │ ├── PlayerInfo.lua │ │ │ │ │ └── PlayerInfoMgr.lua │ │ │ │ └── _FESMain.lua │ │ │ ├── _PLS.luaprj │ │ │ ├── _PLS │ │ │ │ ├── DB │ │ │ │ │ ├── DBMgr.lua │ │ │ │ │ ├── DBProc.lua │ │ │ │ │ ├── DBSubProc.lua │ │ │ │ │ └── DBSubStart.lua │ │ │ │ ├── Games │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CardsAnalyseRes.lua │ │ │ │ │ │ ├── CommonDef.lua │ │ │ │ │ │ └── PokerDef.lua │ │ │ │ │ └── PokerDdz │ │ │ │ │ │ ├── DDZOutCardData.lua │ │ │ │ │ │ ├── DdzCardTypes.lua │ │ │ │ │ │ ├── DdzFSM.lua │ │ │ │ │ │ ├── DdzPlayerInfo.lua │ │ │ │ │ │ ├── MsgRoomDdz.lua │ │ │ │ │ │ └── RoomDdz.lua │ │ │ │ ├── Msg │ │ │ │ │ ├── MsgLogin.lua │ │ │ │ │ └── MsgRoom.lua │ │ │ │ ├── Player │ │ │ │ │ ├── PlayerDataHelper.lua │ │ │ │ │ ├── PlayerHelper.lua │ │ │ │ │ └── PlayerMgr.lua │ │ │ │ ├── PlayerLogicService.lua │ │ │ │ ├── Room │ │ │ │ │ ├── RoomBase.lua │ │ │ │ │ ├── RoomFactory.lua │ │ │ │ │ ├── RoomMgr.lua │ │ │ │ │ └── RoomPlayerBase.lua │ │ │ │ ├── _PLSConfig.lua │ │ │ │ ├── _PLSMain.lua │ │ │ │ └── hotfix_module_names.lua │ │ │ ├── _SCH.luaprj │ │ │ ├── _SCH │ │ │ │ ├── Msg │ │ │ │ │ ├── MsgLogin.lua │ │ │ │ │ └── MsgRoom.lua │ │ │ │ ├── PLSInfo │ │ │ │ │ ├── PLSGameInfo.lua │ │ │ │ │ ├── PLSInfo.lua │ │ │ │ │ └── PLSInfoMgr.lua │ │ │ │ ├── Player │ │ │ │ │ ├── PlayerInfo.lua │ │ │ │ │ └── PlayerInfoMgr.lua │ │ │ │ ├── Room │ │ │ │ │ ├── RoomIDAlloter.lua │ │ │ │ │ ├── RoomInfo.lua │ │ │ │ │ └── RoomMgr.lua │ │ │ │ ├── ScheduleService.lua │ │ │ │ └── _SCHMain.lua │ │ │ └── __Robot │ │ │ │ ├── RobotSub │ │ │ │ ├── FSMRobot.lua │ │ │ │ ├── GameDdz │ │ │ │ │ ├── FSMDdz.lua │ │ │ │ │ └── RobotGameDdz.lua │ │ │ │ ├── PublicRoomInfo.lua │ │ │ │ ├── PublicRoomInfoMgr.lua │ │ │ │ ├── Robot.lua │ │ │ │ ├── RobotData.lua │ │ │ │ ├── RobotGameBase.lua │ │ │ │ ├── RobotMgr.lua │ │ │ │ └── RobotSubStart.lua │ │ │ │ ├── Test │ │ │ │ ├── CppTimerBase.lua │ │ │ │ └── CppTimerTest.lua │ │ │ │ ├── ThreadMgr.lua │ │ │ │ └── _ClientRobotMain.lua │ │ ├── server_share │ │ │ ├── CMakeLists.txt │ │ │ ├── base_object.h │ │ │ ├── bin_luabind │ │ │ │ ├── Public.h │ │ │ │ ├── Public.hpp │ │ │ │ ├── ScriptBase.cpp │ │ │ │ ├── ScriptBase.h │ │ │ │ ├── ScriptExporter.cpp │ │ │ │ ├── ScriptExporter.h │ │ │ │ ├── ScriptHandle.cpp │ │ │ │ ├── ScriptHandle.h │ │ │ │ ├── ScriptObject.h │ │ │ │ ├── ScriptProxy.cpp │ │ │ │ └── ScriptProxy.h │ │ │ ├── bit_set_ext2.h │ │ │ ├── buf_fifo2.h │ │ │ ├── buf_fifo_ring.h │ │ │ ├── callback_adaptor.h │ │ │ ├── cjson │ │ │ │ ├── dtoa.cpp │ │ │ │ ├── dtoa_config.h │ │ │ │ ├── fpconv.cpp │ │ │ │ ├── fpconv.h │ │ │ │ ├── g_fmt.cpp │ │ │ │ ├── lua_cjson.cpp │ │ │ │ ├── strbuf.cpp │ │ │ │ └── strbuf.h │ │ │ ├── client_msg_desc.cpp │ │ │ ├── client_msg_desc.h │ │ │ ├── game_def.h │ │ │ ├── i18n_def.cpp │ │ │ ├── i18n_def.h │ │ │ ├── id_generate.cpp │ │ │ ├── id_generate.h │ │ │ ├── lua │ │ │ │ ├── lua_base_function.cpp │ │ │ │ ├── lua_engine.cpp │ │ │ │ ├── lua_engine.h │ │ │ │ ├── lua_param.cpp │ │ │ │ ├── lua_param.h │ │ │ │ ├── lua_thread.cpp │ │ │ │ ├── lua_thread.h │ │ │ │ ├── script_mgr.cpp │ │ │ │ └── script_mgr.h │ │ │ ├── lua_mysql │ │ │ │ ├── mysql_conn.cpp │ │ │ │ ├── mysql_conn.h │ │ │ │ ├── mysql_result.cpp │ │ │ │ ├── mysql_result.h │ │ │ │ ├── mysql_stmt.cpp │ │ │ │ ├── mysql_stmt.h │ │ │ │ ├── mysql_string.cpp │ │ │ │ └── mysql_string.h │ │ │ ├── lua_net │ │ │ │ ├── lua_callback_client.cpp │ │ │ │ ├── lua_callback_client.h │ │ │ │ ├── lua_callback_server.cpp │ │ │ │ ├── lua_callback_server.h │ │ │ │ ├── lua_message.cpp │ │ │ │ ├── lua_message.h │ │ │ │ ├── lua_network.cpp │ │ │ │ └── lua_network.h │ │ │ ├── msg_leaf.cpp │ │ │ ├── msg_leaf.h │ │ │ ├── object_pool.h │ │ │ ├── pbc │ │ │ │ ├── alloc.cpp │ │ │ │ ├── alloc.h │ │ │ │ ├── array.cpp │ │ │ │ ├── array.h │ │ │ │ ├── bootstrap.cpp │ │ │ │ ├── bootstrap.h │ │ │ │ ├── context.cpp │ │ │ │ ├── context.h │ │ │ │ ├── decode.cpp │ │ │ │ ├── descriptor.pbc.h │ │ │ │ ├── map.cpp │ │ │ │ ├── map.h │ │ │ │ ├── pattern.cpp │ │ │ │ ├── pattern.h │ │ │ │ ├── pbc-lua53.cpp │ │ │ │ ├── pbc.h │ │ │ │ ├── proto.cpp │ │ │ │ ├── proto.h │ │ │ │ ├── register.cpp │ │ │ │ ├── rmessage.cpp │ │ │ │ ├── stringpool.cpp │ │ │ │ ├── stringpool.h │ │ │ │ ├── varint.cpp │ │ │ │ ├── varint.h │ │ │ │ └── wmessage.cpp │ │ │ ├── ranking_change_near.h │ │ │ ├── ranking_slot.h │ │ │ ├── server_def.cpp │ │ │ ├── server_def.h │ │ │ ├── sigslot.h │ │ │ ├── singleton_registry.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── timer.cpp │ │ │ ├── timer.h │ │ │ ├── tools.cpp │ │ │ ├── tools.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ └── shard.screen.rc │ └── tools │ │ ├── rrdtool │ │ ├── DejaVuSansMono-Roman.ttf │ │ └── rrdtool.exe │ │ └── scripts │ │ └── linux │ │ ├── clean_log.sh │ │ ├── generate_packed_sheets.sh │ │ ├── loop_aes.sh │ │ ├── mt_domain_screen_wrapper.sh │ │ ├── service_launcher.sh │ │ ├── shard │ │ └── utilities ├── README ├── changelog.template ├── config.h.cmake ├── nel │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── include │ │ ├── CMakeLists.txt │ │ └── nel │ │ │ ├── CMakeLists.txt │ │ │ ├── georges │ │ │ ├── CMakeLists.txt │ │ │ ├── form.h │ │ │ ├── form_dfn.h │ │ │ ├── form_elm.h │ │ │ ├── form_loader.h │ │ │ ├── header.h │ │ │ ├── load_form.h │ │ │ ├── type.h │ │ │ ├── u_form.h │ │ │ ├── u_form_dfn.h │ │ │ ├── u_form_elm.h │ │ │ ├── u_form_loader.h │ │ │ └── u_type.h │ │ │ ├── ligo │ │ │ ├── CMakeLists.txt │ │ │ ├── ligo_config.h │ │ │ ├── primitive.h │ │ │ ├── primitive_class.h │ │ │ ├── primitive_configuration.h │ │ │ ├── primitive_utils.h │ │ │ ├── zone_bank.h │ │ │ └── zone_region.h │ │ │ ├── logic │ │ │ ├── CMakeLists.txt │ │ │ ├── logic_condition.h │ │ │ ├── logic_event.h │ │ │ ├── logic_state.h │ │ │ ├── logic_state_machine.h │ │ │ └── logic_variable.h │ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── aabbox.h │ │ │ ├── algo.h │ │ │ ├── app_context.h │ │ │ ├── array_2d.h │ │ │ ├── async_file_manager.h │ │ │ ├── base64.h │ │ │ ├── big_file.h │ │ │ ├── bit_mem_stream.h │ │ │ ├── bit_set.h │ │ │ ├── bitmap.h │ │ │ ├── block_memory.h │ │ │ ├── bsphere.h │ │ │ ├── buf_fifo.h │ │ │ ├── callback.h │ │ │ ├── cdb.h │ │ │ ├── cdb_bank_handler.h │ │ │ ├── cdb_branch.h │ │ │ ├── cdb_branch_observing_handler.h │ │ │ ├── cdb_check_sum.h │ │ │ ├── cdb_leaf.h │ │ │ ├── cdb_manager.h │ │ │ ├── check_fpu.h │ │ │ ├── class_id.h │ │ │ ├── class_registry.h │ │ │ ├── cmd_args.h │ │ │ ├── co_task.h │ │ │ ├── command.h │ │ │ ├── common.h │ │ │ ├── config_file.h │ │ │ ├── contiguous_block_allocator.h │ │ │ ├── cpu_time_stat.h │ │ │ ├── debug.h │ │ │ ├── di_event_emitter.h │ │ │ ├── diff_tool.h │ │ │ ├── displayer.h │ │ │ ├── dummy_window.h │ │ │ ├── dynloadlib.h │ │ │ ├── eid_translator.h │ │ │ ├── entity_id.h │ │ │ ├── enum_bitset.h │ │ │ ├── eval_num_expr.h │ │ │ ├── event_emitter.h │ │ │ ├── event_emitter_multi.h │ │ │ ├── event_listener.h │ │ │ ├── event_server.h │ │ │ ├── events.h │ │ │ ├── factory.h │ │ │ ├── fast_floor.h │ │ │ ├── fast_id_map.h │ │ │ ├── fast_mem.h │ │ │ ├── file.h │ │ │ ├── fixed_size_allocator.h │ │ │ ├── game_device.h │ │ │ ├── game_device_events.h │ │ │ ├── geom_ext.h │ │ │ ├── grid_traversal.h │ │ │ ├── gtk_displayer.h │ │ │ ├── heap_memory.h │ │ │ ├── hierarchical_timer.h │ │ │ ├── historic.h │ │ │ ├── i18n.h │ │ │ ├── i_xml.h │ │ │ ├── input_device.h │ │ │ ├── input_device_manager.h │ │ │ ├── input_device_server.h │ │ │ ├── inter_window_msg_queue.h │ │ │ ├── keyboard_device.h │ │ │ ├── line.h │ │ │ ├── log.h │ │ │ ├── matrix.h │ │ │ ├── md5.h │ │ │ ├── mem_displayer.h │ │ │ ├── mem_stream.h │ │ │ ├── mouse_device.h │ │ │ ├── mouse_smoother.h │ │ │ ├── mutable_container.h │ │ │ ├── mutex.h │ │ │ ├── noise_value.h │ │ │ ├── o_xml.h │ │ │ ├── object_arena_allocator.h │ │ │ ├── object_vector.h │ │ │ ├── p_thread.h │ │ │ ├── path.h │ │ │ ├── plane.h │ │ │ ├── plane_inline.h │ │ │ ├── polygon.h │ │ │ ├── pool_memory.h │ │ │ ├── progress_callback.h │ │ │ ├── quad.h │ │ │ ├── quat.h │ │ │ ├── random.h │ │ │ ├── reader_writer.h │ │ │ ├── rect.h │ │ │ ├── report.h │ │ │ ├── resource_ptr.h │ │ │ ├── resource_ptr_inline.h │ │ │ ├── rgba.h │ │ │ ├── sha1.h │ │ │ ├── shared_memory.h │ │ │ ├── sheet_id.h │ │ │ ├── singleton.h │ │ │ ├── smart_ptr.h │ │ │ ├── smart_ptr_inline.h │ │ │ ├── speaker_listener.h │ │ │ ├── sstring.h │ │ │ ├── static_map.h │ │ │ ├── stl_block_allocator.h │ │ │ ├── stl_block_list.h │ │ │ ├── stop_watch.h │ │ │ ├── stream.h │ │ │ ├── stream_inline.h │ │ │ ├── string_common.h │ │ │ ├── string_conversion.h │ │ │ ├── string_id_array.h │ │ │ ├── string_mapper.h │ │ │ ├── string_stream.h │ │ │ ├── system_info.h │ │ │ ├── system_utils.h │ │ │ ├── task_manager.h │ │ │ ├── tds.h │ │ │ ├── thread.h │ │ │ ├── time_nl.h │ │ │ ├── timeout_assertion_thread.h │ │ │ ├── traits_nl.h │ │ │ ├── triangle.h │ │ │ ├── twin_map.h │ │ │ ├── types_nl.h │ │ │ ├── ucstring.h │ │ │ ├── uv.h │ │ │ ├── value_smoother.h │ │ │ ├── variable.h │ │ │ ├── vector.h │ │ │ ├── vector_2d.h │ │ │ ├── vector_2f.h │ │ │ ├── vector_h.h │ │ │ ├── vector_inline.h │ │ │ ├── vectord.h │ │ │ ├── vectord_inline.h │ │ │ ├── voter.h │ │ │ ├── win32_util.h │ │ │ ├── win_displayer.h │ │ │ ├── win_event_emitter.h │ │ │ ├── win_thread.h │ │ │ ├── win_tray.h │ │ │ ├── window_displayer.h │ │ │ ├── words_dictionary.h │ │ │ ├── xml_auto_ptr.h │ │ │ └── xml_pack.h │ │ │ └── net │ │ │ ├── CMakeLists.txt │ │ │ ├── admin.h │ │ │ ├── buf_client.h │ │ │ ├── buf_net_base.h │ │ │ ├── buf_server.h │ │ │ ├── buf_server_tcp.h │ │ │ ├── buf_server_tcp_func.h │ │ │ ├── buf_server_websocket.h │ │ │ ├── buf_server_websocket_func.h │ │ │ ├── buf_sock.h │ │ │ ├── callback_client.h │ │ │ ├── callback_net_base.h │ │ │ ├── callback_server.h │ │ │ ├── callback_server_tcp.h │ │ │ ├── callback_server_websocket.h │ │ │ ├── cvar_log_filter.h │ │ │ ├── dummy_tcp_sock.h │ │ │ ├── email.h │ │ │ ├── inet_address.h │ │ │ ├── listen_sock.h │ │ │ ├── login_client.h │ │ │ ├── login_cookie.h │ │ │ ├── login_server.h │ │ │ ├── message.h │ │ │ ├── message_recorder.h │ │ │ ├── module.h │ │ │ ├── module_builder_parts.h │ │ │ ├── module_common.h │ │ │ ├── module_gateway.h │ │ │ ├── module_manager.h │ │ │ ├── module_message.h │ │ │ ├── module_socket.h │ │ │ ├── naming_client.h │ │ │ ├── net_displayer.h │ │ │ ├── net_log.h │ │ │ ├── net_manager.h │ │ │ ├── pacs_client.h │ │ │ ├── service.h │ │ │ ├── sock.h │ │ │ ├── tcp_sock.h │ │ │ ├── transport_class.h │ │ │ ├── udp_sim_sock.h │ │ │ ├── udp_sock.h │ │ │ ├── unified_network.h │ │ │ ├── unitime.h │ │ │ └── varpath.h │ ├── nel-config.in │ ├── resources │ │ ├── nel.bmp │ │ ├── nel.png │ │ └── nevraxpill.ico │ ├── samples │ │ ├── CMakeLists.txt │ │ ├── georges │ │ │ ├── CMakeLists.txt │ │ │ ├── boolean.typ │ │ │ ├── coolfilesinfo.dfn │ │ │ ├── default.sample_config │ │ │ ├── int.typ │ │ │ ├── log.log │ │ │ ├── main.cpp │ │ │ ├── positiondata.dfn │ │ │ ├── sample_config.dfn │ │ │ ├── sample_configs_sheets.packed_sheets │ │ │ ├── sheet_id.bin │ │ │ └── string.typ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── command │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── configfile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── simpletest.txt │ │ │ ├── debug │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── i18n │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── de.uxt │ │ │ │ ├── en.uxt │ │ │ │ ├── fr.uxt │ │ │ │ └── main.cpp │ │ │ ├── log │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── strings │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── types_check │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ └── net │ │ │ ├── CMakeLists.txt │ │ │ ├── chat │ │ │ ├── CMakeLists.txt │ │ │ ├── chat_service.cfg │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── kbhit.cpp │ │ │ ├── kbhit.h │ │ │ └── server.cpp │ │ │ ├── class_transport │ │ │ ├── CMakeLists.txt │ │ │ ├── ai_service.cfg │ │ │ ├── ai_service.cpp │ │ │ ├── gd_service.cfg │ │ │ └── gd_service.cpp │ │ │ ├── login_system │ │ │ ├── CMakeLists.txt │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ └── frontend_service.cpp │ │ │ ├── multi_shards │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cpp │ │ │ └── shard_config │ │ │ │ ├── 01_admin_executor_service.lnk │ │ │ │ ├── 02_login_service.lnk │ │ │ │ ├── 03_naming_service_shard1.lnk │ │ │ │ ├── 04_welcome_service_shard1.lnk │ │ │ │ ├── 05_frontend_service_shard1.lnk │ │ │ │ ├── 06_naming_service_shard2.lnk │ │ │ │ ├── 07_welcome_service_shard2.lnk │ │ │ │ ├── 08_frontend_service_shard2.lnk │ │ │ │ ├── 09_naming_service_shard3.lnk │ │ │ │ ├── 10_frontend_service_shard3.lnk │ │ │ │ ├── 11_welcome_service_shard3.lnk │ │ │ │ ├── 12_client.lnk │ │ │ │ ├── admin_executor_service.cfg │ │ │ │ ├── client.cfg │ │ │ │ ├── login_service.cfg │ │ │ │ ├── login_service_database.cfg │ │ │ │ ├── shard1_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ │ │ ├── shard2_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ │ │ └── shard3_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ │ ├── net_layer3 │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── ping_service.cfg │ │ │ └── ping_service.cpp │ │ │ ├── net_layer4 │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── ping_service.cfg │ │ │ └── ping_service.cpp │ │ │ ├── net_layer5 │ │ │ ├── flood_service.cfg │ │ │ ├── flood_service.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── gpm_service.cfg │ │ │ ├── gpm_service.cpp │ │ │ ├── ping_service.cfg │ │ │ ├── ping_service.cpp │ │ │ ├── player_service.cfg │ │ │ └── player_service.cpp │ │ │ ├── service │ │ │ ├── chat_service.cfg │ │ │ └── chat_service.cpp │ │ │ ├── udp │ │ │ ├── CMakeLists.txt │ │ │ ├── bench_service.cfg │ │ │ ├── bench_service.cpp │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── graph.cpp │ │ │ ├── graph.h │ │ │ ├── n019003l.pfb │ │ │ ├── readme.txt │ │ │ ├── receive_task.cpp │ │ │ ├── receive_task.h │ │ │ ├── simlag.cpp │ │ │ └── simlag.h │ │ │ └── udp_ping │ │ │ ├── client.cpp │ │ │ ├── udp_service.cfg │ │ │ └── udp_service.cpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── georges │ │ │ ├── CMakeLists.txt │ │ │ ├── form.cpp │ │ │ ├── form_dfn.cpp │ │ │ ├── form_elm.cpp │ │ │ ├── form_loader.cpp │ │ │ ├── georges_file_format.txt │ │ │ ├── header.cpp │ │ │ ├── load_form.cpp │ │ │ ├── nel-georges.pc.in │ │ │ ├── stdgeorges.cpp │ │ │ ├── stdgeorges.h │ │ │ └── type.cpp │ │ ├── ligo │ │ │ ├── CMakeLists.txt │ │ │ ├── ligo_config.cpp │ │ │ ├── ligo_error.cpp │ │ │ ├── ligo_error.h │ │ │ ├── ligo_material.cpp │ │ │ ├── ligo_material.h │ │ │ ├── nel-ligo.pc.in │ │ │ ├── primitive.cpp │ │ │ ├── primitive_class.cpp │ │ │ ├── primitive_configuration.cpp │ │ │ ├── primitive_utils.cpp │ │ │ ├── stdligo.cpp │ │ │ ├── stdligo.h │ │ │ ├── transition.cpp │ │ │ ├── transition.h │ │ │ ├── zone_bank.cpp │ │ │ ├── zone_edge.cpp │ │ │ ├── zone_edge.h │ │ │ ├── zone_region.cpp │ │ │ ├── zone_template.cpp │ │ │ └── zone_template.h │ │ ├── logic │ │ │ ├── CMakeLists.txt │ │ │ ├── logic_condition.cpp │ │ │ ├── logic_event.cpp │ │ │ ├── logic_state.cpp │ │ │ ├── logic_state_machine.cpp │ │ │ └── logic_variable.cpp │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── aabbox.cpp │ │ │ ├── algo.cpp │ │ │ ├── app_context.cpp │ │ │ ├── async_file_manager.cpp │ │ │ ├── base64.cpp │ │ │ ├── big_file.cpp │ │ │ ├── bit_mem_stream.cpp │ │ │ ├── bit_set.cpp │ │ │ ├── bitmap.cpp │ │ │ ├── bitmap_jpeg.cpp │ │ │ ├── bitmap_png.cpp │ │ │ ├── block_memory.cpp │ │ │ ├── bsphere.cpp │ │ │ ├── buf_fifo.cpp │ │ │ ├── cdb.cpp │ │ │ ├── cdb_bank_handler.cpp │ │ │ ├── cdb_branch.cpp │ │ │ ├── cdb_branch_observing_handler.cpp │ │ │ ├── cdb_check_sum.cpp │ │ │ ├── cdb_leaf.cpp │ │ │ ├── cdb_manager.cpp │ │ │ ├── check_fpu.cpp │ │ │ ├── class_id.cpp │ │ │ ├── class_registry.cpp │ │ │ ├── cmd_args.cpp │ │ │ ├── co_task.cpp │ │ │ ├── command.cpp │ │ │ ├── common.cpp │ │ │ ├── config_file │ │ │ │ ├── cf_bison.simple │ │ │ │ ├── cf_flex.skl │ │ │ │ ├── cf_gramatical.cpp │ │ │ │ ├── cf_gramatical.h │ │ │ │ ├── cf_gramatical.ypp │ │ │ │ ├── cf_lexical.cpp │ │ │ │ ├── cf_lexical.lpp │ │ │ │ ├── config_file.cpp │ │ │ │ └── do.bat │ │ │ ├── contiguous_block_allocator.cpp │ │ │ ├── cpu_time_stat.cpp │ │ │ ├── debug.cpp │ │ │ ├── diff_tool.cpp │ │ │ ├── displayer.cpp │ │ │ ├── dummy_window.cpp │ │ │ ├── dynloadlib.cpp │ │ │ ├── eid_translator.cpp │ │ │ ├── entity_id.cpp │ │ │ ├── eval_num_expr.cpp │ │ │ ├── event_emitter.cpp │ │ │ ├── event_emitter_multi.cpp │ │ │ ├── event_listener.cpp │ │ │ ├── event_server.cpp │ │ │ ├── events.cpp │ │ │ ├── fast_floor.cpp │ │ │ ├── fast_id_map.cpp │ │ │ ├── fast_mem.cpp │ │ │ ├── file.cpp │ │ │ ├── fixed_size_allocator.cpp │ │ │ ├── game_device.cpp │ │ │ ├── game_device_events.cpp │ │ │ ├── geom_ext.cpp │ │ │ ├── grid_traversal.cpp │ │ │ ├── gtk_displayer.cpp │ │ │ ├── heap_memory.cpp │ │ │ ├── hierarchical_timer.cpp │ │ │ ├── i18n.cpp │ │ │ ├── i_xml.cpp │ │ │ ├── input_device.cpp │ │ │ ├── input_device_server.cpp │ │ │ ├── inter_window_msg_queue.cpp │ │ │ ├── keyboard_device.cpp │ │ │ ├── line.cpp │ │ │ ├── log.cpp │ │ │ ├── matrix.cpp │ │ │ ├── md5.cpp │ │ │ ├── mem_displayer.cpp │ │ │ ├── mem_stream.cpp │ │ │ ├── mouse_smoother.cpp │ │ │ ├── mutex.cpp │ │ │ ├── nel-misc.pc │ │ │ ├── nel-misc.pc.in │ │ │ ├── noise_value.cpp │ │ │ ├── o_xml.cpp │ │ │ ├── object_arena_allocator.cpp │ │ │ ├── object_vector.cpp │ │ │ ├── p_thread.cpp │ │ │ ├── path.cpp │ │ │ ├── plane.cpp │ │ │ ├── polygon.cpp │ │ │ ├── progress_callback.cpp │ │ │ ├── quad.cpp │ │ │ ├── quat.cpp │ │ │ ├── reader_writer.cpp │ │ │ ├── rect.cpp │ │ │ ├── report.cpp │ │ │ ├── rgba.cpp │ │ │ ├── sha1.cpp │ │ │ ├── shared_memory.cpp │ │ │ ├── sheet_id.cpp │ │ │ ├── smart_ptr.cpp │ │ │ ├── sstring.cpp │ │ │ ├── stdmisc.cpp │ │ │ ├── stdmisc.h │ │ │ ├── stl_block_allocator.cpp │ │ │ ├── stl_block_list.cpp │ │ │ ├── stop_watch.cpp │ │ │ ├── stream.cpp │ │ │ ├── string_common.cpp │ │ │ ├── string_id_array.cpp │ │ │ ├── string_mapper.cpp │ │ │ ├── system_info.cpp │ │ │ ├── system_utils.cpp │ │ │ ├── task_manager.cpp │ │ │ ├── tds.cpp │ │ │ ├── time_nl.cpp │ │ │ ├── triangle.cpp │ │ │ ├── unicode.cpp │ │ │ ├── uv.cpp │ │ │ ├── value_smoother.cpp │ │ │ ├── variable.cpp │ │ │ ├── vector.cpp │ │ │ ├── vector_2d.cpp │ │ │ ├── vector_2f.cpp │ │ │ ├── vector_h.cpp │ │ │ ├── vectord.cpp │ │ │ ├── win32_util.cpp │ │ │ ├── win_displayer.cpp │ │ │ ├── win_event_emitter.cpp │ │ │ ├── win_thread.cpp │ │ │ ├── win_tray.cpp │ │ │ ├── window_displayer.cpp │ │ │ ├── words_dictionary.cpp │ │ │ └── xml_pack.cpp │ │ └── net │ │ │ ├── CMakeLists.txt │ │ │ ├── admin.cpp │ │ │ ├── buf_client.cpp │ │ │ ├── buf_net_base.cpp │ │ │ ├── buf_server.cpp │ │ │ ├── buf_server_tcp.cpp │ │ │ ├── buf_server_tcp_func.cpp │ │ │ ├── buf_server_websocket.cpp │ │ │ ├── buf_server_websocket_func.cpp │ │ │ ├── buf_sock.cpp │ │ │ ├── callback_client.cpp │ │ │ ├── callback_net_base.cpp │ │ │ ├── callback_server.cpp │ │ │ ├── callback_server_tcp.cpp │ │ │ ├── callback_server_websocket.cpp │ │ │ ├── define_sys.pb.cc │ │ │ ├── dummy_tcp_sock.cpp │ │ │ ├── email.cpp │ │ │ ├── inet_address.cpp │ │ │ ├── listen_sock.cpp │ │ │ ├── login_client.cpp │ │ │ ├── login_cookie.cpp │ │ │ ├── login_server.cpp │ │ │ ├── message.cpp │ │ │ ├── message_recorder.cpp │ │ │ ├── module.cpp │ │ │ ├── module_common.cpp │ │ │ ├── module_gateway.cpp │ │ │ ├── module_gateway_transport.cpp │ │ │ ├── module_l5_transport.cpp │ │ │ ├── module_local_gateway.cpp │ │ │ ├── module_manager.cpp │ │ │ ├── module_message.cpp │ │ │ ├── module_socket.cpp │ │ │ ├── naming_client.cpp │ │ │ ├── nel-net.pc.in │ │ │ ├── net_displayer.cpp │ │ │ ├── net_log.cpp │ │ │ ├── net_manager.cpp │ │ │ ├── service.cpp │ │ │ ├── sock.cpp │ │ │ ├── stdin_monitor_thread.cpp │ │ │ ├── stdin_monitor_thread.h │ │ │ ├── stdnet.cpp │ │ │ ├── stdnet.h │ │ │ ├── tcp_sock.cpp │ │ │ ├── transport_class.cpp │ │ │ ├── udp_sim_sock.cpp │ │ │ ├── udp_sock.cpp │ │ │ ├── unified_network.cpp │ │ │ ├── unitime.cpp │ │ │ └── varpath.cpp │ └── tools │ │ ├── CMakeLists.txt │ │ └── nel_unit_test │ │ ├── CMakeLists.txt │ │ ├── __copy_file_dst.foo │ │ ├── __ligo_class.xml │ │ ├── __test_prim.primitive │ │ ├── debug_cfg_with_error_main.cfg │ │ ├── nel_unit_test.cpp │ │ ├── nel_unit_test.exp │ │ ├── result.html │ │ ├── run_test.bat │ │ ├── ut_ligo.h │ │ ├── ut_ligo_primitive.h │ │ ├── ut_misc.h │ │ ├── ut_misc_co_task.h │ │ ├── ut_misc_command.h │ │ ├── ut_misc_config_file.h │ │ ├── ut_misc_debug.h │ │ ├── ut_misc_dynlibload.h │ │ ├── ut_misc_file.h │ │ ├── ut_misc_files │ │ ├── cfg_with_bad_test.cfg │ │ ├── cfg_with_define.cfg │ │ ├── cfg_with_error.cfg │ │ ├── cfg_with_error_main.cfg │ │ ├── cfg_with_include.cfg │ │ ├── cfg_with_include_and_optional.cfg │ │ ├── cfg_with_optional.cfg │ │ ├── file1_in_bnp.txt │ │ ├── file2_in_bnp.txt │ │ ├── files.bnp │ │ ├── files.xml_pack │ │ ├── files_for_xml_subpack │ │ │ ├── same_subfolder_1 │ │ │ │ └── samename │ │ │ │ │ ├── .xml_pack_index │ │ │ │ │ ├── file1_in_sub_1.xml │ │ │ │ │ ├── file2_in_sub_1.xml │ │ │ │ │ └── samename.xml_pack │ │ │ └── same_subfolder_2 │ │ │ │ └── samename │ │ │ │ ├── .xml_pack_index │ │ │ │ ├── file1_in_sub_2.xml │ │ │ │ ├── file2_in_sub_2.xml │ │ │ │ └── samename.xml_pack │ │ ├── included_cfg.cfg │ │ └── xml_files │ │ │ ├── file1_in_xml_pack.xml │ │ │ ├── file2_in_xml_pack.xml │ │ │ ├── same_subfolder_1 │ │ │ └── samename │ │ │ │ └── samename.xml_pack │ │ │ ├── same_subfolder_2 │ │ │ └── samename │ │ │ │ └── samename.xml_pack │ │ │ └── xml_files.xml_pack │ │ ├── ut_misc_pack_file.h │ │ ├── ut_misc_singleton.h │ │ ├── ut_misc_sstring.h │ │ ├── ut_misc_stream.h │ │ ├── ut_misc_string_common.h │ │ ├── ut_misc_types.h │ │ ├── ut_misc_variable.h │ │ ├── ut_net.h │ │ ├── ut_net_layer3.h │ │ ├── ut_net_message.h │ │ └── ut_net_module.h ├── nelDashBuild.cmd ├── nelDashBuild.sh └── revision.h.in └── tools ├── protobuf ├── JS │ ├── README.md │ ├── protobuf │ │ └── protofile │ │ │ └── hold │ └── protobuf_gen_js.bat ├── define_attrib.proto ├── define_pro.proto ├── lua │ ├── protobuf_gen_lua.bat │ └── protoc-3.2.0rc2.exe ├── msg_client.proto ├── msg_doudizhu.proto └── msg_service.proto ├── server ├── admin │ ├── common.php │ ├── config.php │ ├── crons │ │ ├── cron_harddisk.php │ │ ├── cron_harddisk.sh │ │ └── index.html │ ├── docs │ │ └── shard_restart │ │ │ ├── Filelist.xml │ │ │ ├── H38.css │ │ │ ├── H70_2.htm │ │ │ ├── HOWTO_Restarting_Ryzom_Game_Shards.htm │ │ │ ├── Hd36.xml │ │ │ ├── Hf69.htm │ │ │ ├── Hg39_1.gif │ │ │ ├── Hg39_1.htm │ │ │ ├── Hg41_2.gif │ │ │ ├── Hg41_2.htm │ │ │ ├── Hg43_3.gif │ │ │ ├── Hg43_3.htm │ │ │ ├── Hg45_4.gif │ │ │ ├── Hg45_4.htm │ │ │ ├── Hg47_5.gif │ │ │ ├── Hg47_5.htm │ │ │ ├── Hg49_6.gif │ │ │ ├── Hg49_6.htm │ │ │ ├── Hg51_7.gif │ │ │ ├── Hg51_7.htm │ │ │ ├── Hg53_8.gif │ │ │ ├── Hg53_8.htm │ │ │ ├── Hg55_9.gif │ │ │ ├── Hg55_9.htm │ │ │ ├── Hg57_10.gif │ │ │ ├── Hg57_10.htm │ │ │ ├── Hg59_11.gif │ │ │ ├── Hg59_11.htm │ │ │ ├── Hg61_12.gif │ │ │ ├── Hg61_12.htm │ │ │ ├── Hn68.htm │ │ │ ├── Hu37.js │ │ │ ├── Hz63.htm │ │ │ ├── lt_off.gif │ │ │ ├── lt_over.gif │ │ │ ├── rt_off.gif │ │ │ └── rt_over.gif │ ├── functions_auth.php │ ├── functions_common.php │ ├── functions_mysql.php │ ├── functions_mysqli.php │ ├── functions_tool_administration.php │ ├── functions_tool_applications.php │ ├── functions_tool_event_entities.php │ ├── functions_tool_graphs.php │ ├── functions_tool_guild_locator.php │ ├── functions_tool_log_analyser.php │ ├── functions_tool_main.php │ ├── functions_tool_mfs.php │ ├── functions_tool_notes.php │ ├── functions_tool_player_locator.php │ ├── functions_tool_preferences.php │ ├── functions_tool_shop.php │ ├── graphs_output │ │ └── placeholder │ ├── imgs │ │ ├── bg_live.png │ │ ├── getfirefox.png │ │ ├── icon_admin.gif │ │ ├── icon_entity.gif │ │ ├── icon_graphs.gif │ │ ├── icon_guild_locator.gif │ │ ├── icon_log_analyser.gif │ │ ├── icon_logout.gif │ │ ├── icon_main.gif │ │ ├── icon_notes.gif │ │ ├── icon_player_locator.gif │ │ ├── icon_preferences.gif │ │ ├── icon_unknown.png │ │ ├── nel.gif │ │ └── shop.png │ ├── index.php │ ├── jpgraph │ │ ├── flags.dat │ │ ├── flags_thumb100x100.dat │ │ ├── flags_thumb35x35.dat │ │ ├── flags_thumb60x60.dat │ │ ├── imgdata_balls.inc │ │ ├── imgdata_bevels.inc │ │ ├── imgdata_diamonds.inc │ │ ├── imgdata_pushpins.inc │ │ ├── imgdata_squares.inc │ │ ├── imgdata_stars.inc │ │ ├── jpg-config.inc │ │ ├── jpgraph.php │ │ ├── jpgraph_antispam-digits.php │ │ ├── jpgraph_antispam.php │ │ ├── jpgraph_bar.php │ │ ├── jpgraph_canvas.php │ │ ├── jpgraph_canvtools.php │ │ ├── jpgraph_date.php │ │ ├── jpgraph_error.php │ │ ├── jpgraph_flags.php │ │ ├── jpgraph_gantt.php │ │ ├── jpgraph_gb2312.php │ │ ├── jpgraph_gradient.php │ │ ├── jpgraph_iconplot.php │ │ ├── jpgraph_imgtrans.php │ │ ├── jpgraph_line.php │ │ ├── jpgraph_log.php │ │ ├── jpgraph_pie.php │ │ ├── jpgraph_pie3d.php │ │ ├── jpgraph_plotband.php │ │ ├── jpgraph_plotmark.inc │ │ ├── jpgraph_polar.php │ │ ├── jpgraph_radar.php │ │ ├── jpgraph_regstat.php │ │ ├── jpgraph_scatter.php │ │ ├── jpgraph_stock.php │ │ ├── jpgraph_utils.inc │ │ └── lang │ │ │ └── en.inc.php │ ├── logs │ │ └── empty.txt │ ├── nel │ │ ├── admin_modules_itf.php │ │ └── nel_message.php │ ├── neltool.css │ ├── overlib │ │ ├── handgrab.gif │ │ ├── makemini.pl │ │ ├── overlib.js │ │ ├── overlib_anchor.js │ │ ├── overlib_anchor_mini.js │ │ ├── overlib_draggable.js │ │ ├── overlib_draggable_mini.js │ │ └── overlib_mini.js │ ├── scripts │ │ ├── index.html │ │ ├── restart_sequence.php │ │ └── run_script.sh │ ├── smarty │ │ ├── Config_File.class.php │ │ ├── Smarty.class.php │ │ ├── Smarty_Compiler.class.php │ │ ├── debug.tpl │ │ ├── internals │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ ├── core.assign_smarty_interface.php │ │ │ ├── core.create_dir_structure.php │ │ │ ├── core.display_debug_console.php │ │ │ ├── core.get_include_path.php │ │ │ ├── core.get_microtime.php │ │ │ ├── core.get_php_resource.php │ │ │ ├── core.is_secure.php │ │ │ ├── core.is_trusted.php │ │ │ ├── core.load_plugins.php │ │ │ ├── core.load_resource_plugin.php │ │ │ ├── core.process_cached_inserts.php │ │ │ ├── core.process_compiled_include.php │ │ │ ├── core.read_cache_file.php │ │ │ ├── core.rm_auto.php │ │ │ ├── core.rmdir.php │ │ │ ├── core.run_insert_handler.php │ │ │ ├── core.smarty_include_php.php │ │ │ ├── core.write_cache_file.php │ │ │ ├── core.write_compiled_include.php │ │ │ ├── core.write_compiled_resource.php │ │ │ └── core.write_file.php │ │ └── plugins │ │ │ ├── block.textformat.php │ │ │ ├── compiler.assign.php │ │ │ ├── function.assign_debug_info.php │ │ │ ├── function.config_load.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.debug.php │ │ │ ├── function.eval.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── function.popup.php │ │ │ ├── function.popup_init.php │ │ │ ├── function.substr.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.cat.php │ │ │ ├── modifier.count_characters.php │ │ │ ├── modifier.count_paragraphs.php │ │ │ ├── modifier.count_sentences.php │ │ │ ├── modifier.count_words.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.default.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.indent.php │ │ │ ├── modifier.lower.php │ │ │ ├── modifier.nl2br.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.string_format.php │ │ │ ├── modifier.strip.php │ │ │ ├── modifier.strip_tags.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifier.upper.php │ │ │ ├── modifier.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ └── shared.make_timestamp.php │ ├── templates │ │ ├── default │ │ │ ├── _index.tpl │ │ │ ├── index.tpl │ │ │ ├── index_login.tpl │ │ │ ├── index_restart_sequence.tpl │ │ │ ├── page_footer.tpl │ │ │ ├── page_footer_light.tpl │ │ │ ├── page_header.tpl │ │ │ ├── page_header_light.tpl │ │ │ ├── tool_actions.tpl │ │ │ ├── tool_administration.tpl │ │ │ ├── tool_administration_applications.tpl │ │ │ ├── tool_administration_domains.tpl │ │ │ ├── tool_administration_groups.tpl │ │ │ ├── tool_administration_logs.tpl │ │ │ ├── tool_administration_restarts.tpl │ │ │ ├── tool_administration_shards.tpl │ │ │ ├── tool_administration_users.tpl │ │ │ ├── tool_administration_users.tpl.backup │ │ │ ├── tool_event_entities.tpl │ │ │ ├── tool_graphs.tpl │ │ │ ├── tool_graphs_ccu.tpl │ │ │ ├── tool_graphs_hires.tpl │ │ │ ├── tool_graphs_tech.tpl │ │ │ ├── tool_guild_locator.tpl │ │ │ ├── tool_log_analyser.tpl │ │ │ ├── tool_log_analyser_file_view.tpl │ │ │ ├── tool_mfs.tpl │ │ │ ├── tool_notes.tpl │ │ │ ├── tool_player_locator.tpl │ │ │ ├── tool_preferences.tpl │ │ │ └── tool_shop.tpl │ │ └── default_c │ │ │ └── placeholder │ ├── tool_actions.php │ ├── tool_administration.php │ ├── tool_event_entities.php │ ├── tool_graphs.php │ ├── tool_guild_locator.php │ ├── tool_log_analyser.php │ ├── tool_mfs.php │ ├── tool_notes.php │ ├── tool_player_locator.php │ ├── tool_preferences.php │ └── tool_shop.php ├── sql │ ├── d_mt_account.sql │ ├── d_mt_player_procedure.sql │ ├── d_mt_player_table.sql │ └── nel_tool.sql └── www │ ├── login │ ├── code2accesstoken.php │ ├── config.php │ ├── login_test.php │ ├── logs │ │ └── placeholder │ ├── pay_service_itf.php │ └── public_func.php │ └── tools │ └── nel_message.php └── xlsx2json ├── LICENSE ├── README.md ├── config.json ├── excel └── GameConfig.xlsx ├── export.bat ├── export.sh ├── index.js ├── lib └── xlsx-to-json.js └── package.json /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/README.md -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeLists.txt -------------------------------------------------------------------------------- /code/CMakeModules/AndroidToolChain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/AndroidToolChain.cmake -------------------------------------------------------------------------------- /code/CMakeModules/CheckDepends.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/CheckDepends.cmake -------------------------------------------------------------------------------- /code/CMakeModules/ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/ConfigureChecks.cmake -------------------------------------------------------------------------------- /code/CMakeModules/Find3dsMaxSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/Find3dsMaxSDK.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindCEGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindCEGUI.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindCppTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindCppTest.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindCrashRpt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindCrashRpt.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindCurl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindCurl.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindCustomMFC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindCustomMFC.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindDInput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindDInput.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindDSound.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindDSound.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindDirectXSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindDirectXSDK.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindEFXUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindEFXUtil.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindExternal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindExternal.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindFMOD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindFMOD.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindFreeType.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindFreeType.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindGTK2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindGTK2.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindIconv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindIconv.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindJpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindJpeg.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLibEvent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLibEvent.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLibOVR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLibOVR.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLibVR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLibVR.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLibwww.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLibwww.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLua51.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLua51.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLua52.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLua52.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLua53.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLua53.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindLuabind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindLuabind.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindMSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindMSVC.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindMercurial.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindMercurial.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindMySQL.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindMysqlConnector.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindMysqlConnector.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindOgg.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindOpenGLES.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindOpenSSL.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindPBC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindPBC.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindProtoBuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindProtoBuf.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindS3TC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindS3TC.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindSTLport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindSTLport.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindSquish.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindSquish.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindTinyXml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindTinyXml.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindToLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindToLua.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindVorbis.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindWindowsSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindWindowsSDK.cmake -------------------------------------------------------------------------------- /code/CMakeModules/FindXF86VidMode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/FindXF86VidMode.cmake -------------------------------------------------------------------------------- /code/CMakeModules/GetRevision.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/GetRevision.cmake -------------------------------------------------------------------------------- /code/CMakeModules/PCHSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/PCHSupport.cmake -------------------------------------------------------------------------------- /code/CMakeModules/iOSToolChain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/iOSToolChain.cmake -------------------------------------------------------------------------------- /code/CMakeModules/nel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakeModules/nel.cmake -------------------------------------------------------------------------------- /code/CMakePackaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CMakePackaging.txt -------------------------------------------------------------------------------- /code/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/COPYING -------------------------------------------------------------------------------- /code/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/CTestConfig.cmake -------------------------------------------------------------------------------- /code/EVA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/_del_log.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/_del_log.bat -------------------------------------------------------------------------------- /code/EVA/server/_robot_start .bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/_robot_start .bat -------------------------------------------------------------------------------- /code/EVA/server/_robot_stop .bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/_robot_stop .bat -------------------------------------------------------------------------------- /code/EVA/server/_shard_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/_shard_start.bat -------------------------------------------------------------------------------- /code/EVA/server/_shard_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/_shard_stop.bat -------------------------------------------------------------------------------- /code/EVA/server/admin_executor_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_executor_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/admin_modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_modules/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/admin_modules/aes_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_modules/aes_module.cpp -------------------------------------------------------------------------------- /code/EVA/server/admin_modules/as_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_modules/as_module.cpp -------------------------------------------------------------------------------- /code/EVA/server/admin_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/admin_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/admin_service/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/client_robot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/client_robot.cfg -------------------------------------------------------------------------------- /code/EVA/server/client_robot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/client_robot/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/client_robot/client_robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/client_robot/client_robot.cpp -------------------------------------------------------------------------------- /code/EVA/server/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/common.cfg -------------------------------------------------------------------------------- /code/EVA/server/frontend_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/frontend_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/frontend_service/stdpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/frontend_service/stdpch.cpp -------------------------------------------------------------------------------- /code/EVA/server/frontend_service/stdpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/frontend_service/stdpch.h -------------------------------------------------------------------------------- /code/EVA/server/msg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/msg.xml -------------------------------------------------------------------------------- /code/EVA/server/naming_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/naming_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/naming_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/naming_service/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/player_logic_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/player_logic_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/player_logic_service/stdpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/player_logic_service/stdpch.h -------------------------------------------------------------------------------- /code/EVA/server/save_shard/rrd_graphs/hold_dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/EVA/server/schedule_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/schedule_service.cfg -------------------------------------------------------------------------------- /code/EVA/server/script/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /code/EVA/server/script/.vs/script/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/.vs/script/v15/.suo -------------------------------------------------------------------------------- /code/EVA/server/script/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/.vs/slnx.sqlite -------------------------------------------------------------------------------- /code/EVA/server/script/BaseService.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/BaseService.luaprj -------------------------------------------------------------------------------- /code/EVA/server/script/DataTable/ProtoMsg.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/DataTable/ProtoMsg.pb -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/CJsonUtil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/CJsonUtil.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/Class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/Class.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/List.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/List.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/Map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/Map.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/MapMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/MapMap.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/Queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/Queue.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/Stack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/Stack.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/StateFul.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/StateFul.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/TimerMgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/TimerMgr.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/Utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/Utils.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Framework/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Framework/functions.lua -------------------------------------------------------------------------------- /code/EVA/server/script/Robot.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/Robot.luaprj -------------------------------------------------------------------------------- /code/EVA/server/script/_FES.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_FES.luaprj -------------------------------------------------------------------------------- /code/EVA/server/script/_FES/Client/Client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_FES/Client/Client.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_FES/Msg/MsgLogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_FES/Msg/MsgLogin.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_FES/_FESMain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_FES/_FESMain.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS.luaprj -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/DB/DBMgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/DB/DBMgr.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/DB/DBProc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/DB/DBProc.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/DB/DBSubProc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/DB/DBSubProc.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/DB/DBSubStart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/DB/DBSubStart.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/Msg/MsgLogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/Msg/MsgLogin.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/Msg/MsgRoom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/Msg/MsgRoom.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/Room/RoomBase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/Room/RoomBase.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/Room/RoomMgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/Room/RoomMgr.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/_PLSConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/_PLSConfig.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_PLS/_PLSMain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_PLS/_PLSMain.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH.luaprj -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH/Msg/MsgLogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH/Msg/MsgLogin.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH/Msg/MsgRoom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH/Msg/MsgRoom.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH/Room/RoomInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH/Room/RoomInfo.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH/Room/RoomMgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH/Room/RoomMgr.lua -------------------------------------------------------------------------------- /code/EVA/server/script/_SCH/_SCHMain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/_SCH/_SCHMain.lua -------------------------------------------------------------------------------- /code/EVA/server/script/__Robot/ThreadMgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/script/__Robot/ThreadMgr.lua -------------------------------------------------------------------------------- /code/EVA/server/server_share/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/CMakeLists.txt -------------------------------------------------------------------------------- /code/EVA/server/server_share/base_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/base_object.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/bit_set_ext2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/bit_set_ext2.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/buf_fifo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/buf_fifo2.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/buf_fifo_ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/buf_fifo_ring.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/dtoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/dtoa.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/fpconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/fpconv.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/fpconv.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/g_fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/g_fmt.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/strbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/strbuf.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/cjson/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/cjson/strbuf.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/client_msg_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/client_msg_desc.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/game_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/game_def.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/i18n_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/i18n_def.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/i18n_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/i18n_def.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/id_generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/id_generate.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/id_generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/id_generate.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/lua/lua_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/lua/lua_engine.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/lua/lua_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/lua/lua_param.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/lua/lua_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/lua/lua_param.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/lua/lua_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/lua/lua_thread.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/lua/script_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/lua/script_mgr.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/msg_leaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/msg_leaf.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/msg_leaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/msg_leaf.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/object_pool.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/alloc.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/alloc.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/array.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/array.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/bootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/bootstrap.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/bootstrap.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/context.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/context.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/decode.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/map.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/map.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/pattern.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/pattern.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/pbc-lua53.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/pbc-lua53.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/pbc.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/proto.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/proto.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/register.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/rmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/rmessage.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/stringpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/stringpool.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/varint.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/varint.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/pbc/wmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/pbc/wmessage.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/ranking_slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/ranking_slot.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/server_def.cpp: -------------------------------------------------------------------------------- 1 | #include "server_def.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /code/EVA/server/server_share/server_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/server_def.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/sigslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/sigslot.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/stdpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/stdpch.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/stdpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/stdpch.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/timer.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/timer.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/tools.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/tools.h -------------------------------------------------------------------------------- /code/EVA/server/server_share/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/utils.cpp -------------------------------------------------------------------------------- /code/EVA/server/server_share/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/server_share/utils.h -------------------------------------------------------------------------------- /code/EVA/server/shard.screen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/server/shard.screen.rc -------------------------------------------------------------------------------- /code/EVA/tools/rrdtool/rrdtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/tools/rrdtool/rrdtool.exe -------------------------------------------------------------------------------- /code/EVA/tools/scripts/linux/clean_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/tools/scripts/linux/clean_log.sh -------------------------------------------------------------------------------- /code/EVA/tools/scripts/linux/loop_aes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/tools/scripts/linux/loop_aes.sh -------------------------------------------------------------------------------- /code/EVA/tools/scripts/linux/shard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/tools/scripts/linux/shard -------------------------------------------------------------------------------- /code/EVA/tools/scripts/linux/utilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/EVA/tools/scripts/linux/utilities -------------------------------------------------------------------------------- /code/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/changelog.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/changelog.template -------------------------------------------------------------------------------- /code/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/config.h.cmake -------------------------------------------------------------------------------- /code/nel/AUTHORS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /code/nel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/COPYING -------------------------------------------------------------------------------- /code/nel/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/ChangeLog -------------------------------------------------------------------------------- /code/nel/INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please check www.nevrax.org for more information 3 | -------------------------------------------------------------------------------- /code/nel/NEWS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /code/nel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/README -------------------------------------------------------------------------------- /code/nel/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SUBDIRS(nel) 2 | 3 | -------------------------------------------------------------------------------- /code/nel/include/nel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/georges/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/georges/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/form.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/form_dfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/form_dfn.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/form_elm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/form_elm.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/form_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/form_loader.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/header.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/load_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/load_form.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/type.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/u_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/u_form.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/u_form_dfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/u_form_dfn.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/u_form_elm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/u_form_elm.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/u_form_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/u_form_loader.h -------------------------------------------------------------------------------- /code/nel/include/nel/georges/u_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/georges/u_type.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/ligo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/ligo_config.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/primitive.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/primitive_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/primitive_class.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/primitive_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/primitive_utils.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/zone_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/zone_bank.h -------------------------------------------------------------------------------- /code/nel/include/nel/ligo/zone_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/ligo/zone_region.h -------------------------------------------------------------------------------- /code/nel/include/nel/logic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/logic/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/logic/logic_condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/logic/logic_condition.h -------------------------------------------------------------------------------- /code/nel/include/nel/logic/logic_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/logic/logic_event.h -------------------------------------------------------------------------------- /code/nel/include/nel/logic/logic_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/logic/logic_state.h -------------------------------------------------------------------------------- /code/nel/include/nel/logic/logic_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/logic/logic_variable.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/misc/aabbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/aabbox.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/algo.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/app_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/app_context.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/array_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/array_2d.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/async_file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/async_file_manager.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/base64.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/big_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/big_file.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/bit_mem_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/bit_mem_stream.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/bit_set.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/bitmap.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/block_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/block_memory.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/bsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/bsphere.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/buf_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/buf_fifo.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/callback.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb_bank_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb_bank_handler.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb_branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb_branch.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb_check_sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb_check_sum.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb_leaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb_leaf.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cdb_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cdb_manager.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/check_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/check_fpu.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/class_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/class_id.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/class_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/class_registry.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cmd_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cmd_args.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/co_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/co_task.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/command.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/common.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/config_file.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/cpu_time_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/cpu_time_stat.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/debug.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/di_event_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/di_event_emitter.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/diff_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/diff_tool.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/dummy_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/dummy_window.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/dynloadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/dynloadlib.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/eid_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/eid_translator.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/entity_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/entity_id.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/enum_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/enum_bitset.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/eval_num_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/eval_num_expr.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/event_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/event_emitter.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/event_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/event_listener.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/event_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/event_server.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/events.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/factory.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/fast_floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/fast_floor.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/fast_id_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/fast_id_map.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/fast_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/fast_mem.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/file.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/game_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/game_device.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/game_device_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/game_device_events.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/geom_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/geom_ext.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/grid_traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/grid_traversal.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/gtk_displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/gtk_displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/heap_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/heap_memory.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/hierarchical_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/hierarchical_timer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/historic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/historic.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/i18n.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/i_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/i_xml.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/input_device.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/keyboard_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/keyboard_device.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/line.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/log.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/matrix.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/md5.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mem_displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mem_displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mem_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mem_stream.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mouse_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mouse_device.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mouse_smoother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mouse_smoother.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mutable_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mutable_container.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/mutex.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/noise_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/noise_value.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/o_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/o_xml.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/object_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/object_vector.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/p_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/p_thread.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/path.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/plane.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/plane_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/plane_inline.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/polygon.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/pool_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/pool_memory.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/progress_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/progress_callback.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/quad.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/quat.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/random.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/reader_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/reader_writer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/rect.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/report.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/resource_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/resource_ptr.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/rgba.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/sha1.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/shared_memory.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/sheet_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/sheet_id.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/singleton.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/smart_ptr.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/smart_ptr_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/smart_ptr_inline.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/speaker_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/speaker_listener.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/sstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/sstring.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/static_map.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/stl_block_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/stl_block_list.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/stop_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/stop_watch.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/stream.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/stream_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/stream_inline.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/string_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/string_common.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/string_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/string_conversion.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/string_id_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/string_id_array.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/string_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/string_mapper.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/string_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/string_stream.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/system_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/system_info.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/system_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/system_utils.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/task_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/task_manager.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/tds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/tds.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/thread.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/time_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/time_nl.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/traits_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/traits_nl.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/triangle.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/twin_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/twin_map.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/types_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/types_nl.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/ucstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/ucstring.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/uv.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/value_smoother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/value_smoother.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/variable.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vector.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vector_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vector_2d.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vector_2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vector_2f.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vector_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vector_h.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vector_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vector_inline.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vectord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vectord.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/vectord_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/vectord_inline.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/voter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/voter.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/win32_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/win32_util.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/win_displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/win_displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/win_event_emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/win_event_emitter.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/win_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/win_thread.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/win_tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/win_tray.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/window_displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/window_displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/words_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/words_dictionary.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/xml_auto_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/xml_auto_ptr.h -------------------------------------------------------------------------------- /code/nel/include/nel/misc/xml_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/misc/xml_pack.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/include/nel/net/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/admin.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_client.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_net_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_net_base.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_server.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_server_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_server_tcp.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_server_tcp_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_server_tcp_func.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/buf_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/buf_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/callback_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/callback_client.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/callback_net_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/callback_net_base.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/callback_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/callback_server.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/callback_server_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/callback_server_tcp.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/cvar_log_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/cvar_log_filter.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/dummy_tcp_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/dummy_tcp_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/email.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/inet_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/inet_address.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/listen_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/listen_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/login_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/login_client.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/login_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/login_cookie.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/login_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/login_server.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/message.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/message_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/message_recorder.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module_common.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module_gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module_gateway.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module_manager.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module_message.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/module_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/module_socket.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/naming_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/naming_client.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/net_displayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/net_displayer.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/net_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/net_log.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/net_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/net_manager.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/pacs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/pacs_client.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/service.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/tcp_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/tcp_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/transport_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/transport_class.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/udp_sim_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/udp_sim_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/udp_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/udp_sock.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/unified_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/unified_network.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/unitime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/unitime.h -------------------------------------------------------------------------------- /code/nel/include/nel/net/varpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/include/nel/net/varpath.h -------------------------------------------------------------------------------- /code/nel/nel-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/nel-config.in -------------------------------------------------------------------------------- /code/nel/resources/nel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/resources/nel.bmp -------------------------------------------------------------------------------- /code/nel/resources/nel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/resources/nel.png -------------------------------------------------------------------------------- /code/nel/resources/nevraxpill.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/resources/nevraxpill.ico -------------------------------------------------------------------------------- /code/nel/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/georges/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/georges/boolean.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/boolean.typ -------------------------------------------------------------------------------- /code/nel/samples/georges/coolfilesinfo.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/coolfilesinfo.dfn -------------------------------------------------------------------------------- /code/nel/samples/georges/default.sample_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/default.sample_config -------------------------------------------------------------------------------- /code/nel/samples/georges/int.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/int.typ -------------------------------------------------------------------------------- /code/nel/samples/georges/log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/log.log -------------------------------------------------------------------------------- /code/nel/samples/georges/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/georges/positiondata.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/positiondata.dfn -------------------------------------------------------------------------------- /code/nel/samples/georges/sample_config.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/sample_config.dfn -------------------------------------------------------------------------------- /code/nel/samples/georges/sheet_id.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/sheet_id.bin -------------------------------------------------------------------------------- /code/nel/samples/georges/string.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/georges/string.typ -------------------------------------------------------------------------------- /code/nel/samples/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/command/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/command/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/command/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/command/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/configfile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/configfile/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/debug/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/debug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/debug/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/i18n/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/i18n/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/i18n/de.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/i18n/de.uxt -------------------------------------------------------------------------------- /code/nel/samples/misc/i18n/en.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/i18n/en.uxt -------------------------------------------------------------------------------- /code/nel/samples/misc/i18n/fr.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/i18n/fr.uxt -------------------------------------------------------------------------------- /code/nel/samples/misc/i18n/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/i18n/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/log/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/log/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/log/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/strings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/strings/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/misc/strings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/strings/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/misc/types_check/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/misc/types_check/main.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/net/chat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/net/chat/chat_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/chat_service.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/chat/client.cfg: -------------------------------------------------------------------------------- 1 | 2 | LSHost = "localhost"; 3 | -------------------------------------------------------------------------------- /code/nel/samples/net/chat/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/chat/kbhit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/kbhit.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/chat/kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/kbhit.h -------------------------------------------------------------------------------- /code/nel/samples/net/chat/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/chat/server.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/login_system/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/login_system/client.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/login_system/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/login_system/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/multi_shards/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/multi_shards/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/multi_shards/shard_config/shard1_config/naming_service.cfg: -------------------------------------------------------------------------------- 1 | 2 | WindowStyle = "WIN"; 3 | -------------------------------------------------------------------------------- /code/nel/samples/net/net_layer3/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/net_layer3/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/net_layer4/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/net_layer4/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/service/chat_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/service/chat_service.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/service/chat_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/service/chat_service.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/samples/net/udp/bench_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/bench_service.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/udp/bench_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/bench_service.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/client.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/udp/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/graph.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/graph.h -------------------------------------------------------------------------------- /code/nel/samples/net/udp/n019003l.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/n019003l.pfb -------------------------------------------------------------------------------- /code/nel/samples/net/udp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/readme.txt -------------------------------------------------------------------------------- /code/nel/samples/net/udp/receive_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/receive_task.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/receive_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/receive_task.h -------------------------------------------------------------------------------- /code/nel/samples/net/udp/simlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/simlag.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp/simlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp/simlag.h -------------------------------------------------------------------------------- /code/nel/samples/net/udp_ping/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp_ping/client.cpp -------------------------------------------------------------------------------- /code/nel/samples/net/udp_ping/udp_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp_ping/udp_service.cfg -------------------------------------------------------------------------------- /code/nel/samples/net/udp_ping/udp_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/samples/net/udp_ping/udp_service.cpp -------------------------------------------------------------------------------- /code/nel/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/georges/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/georges/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/form.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/form_dfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/form_dfn.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/form_elm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/form_elm.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/form_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/form_loader.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/georges_file_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/georges_file_format.txt -------------------------------------------------------------------------------- /code/nel/src/georges/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/header.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/load_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/load_form.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/nel-georges.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/nel-georges.pc.in -------------------------------------------------------------------------------- /code/nel/src/georges/stdgeorges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/stdgeorges.cpp -------------------------------------------------------------------------------- /code/nel/src/georges/stdgeorges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/stdgeorges.h -------------------------------------------------------------------------------- /code/nel/src/georges/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/georges/type.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/ligo/ligo_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/ligo_config.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/ligo_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/ligo_error.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/ligo_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/ligo_error.h -------------------------------------------------------------------------------- /code/nel/src/ligo/ligo_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/ligo_material.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/ligo_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/ligo_material.h -------------------------------------------------------------------------------- /code/nel/src/ligo/nel-ligo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/nel-ligo.pc.in -------------------------------------------------------------------------------- /code/nel/src/ligo/primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/primitive.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/primitive_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/primitive_class.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/primitive_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/primitive_configuration.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/primitive_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/primitive_utils.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/stdligo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/stdligo.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/stdligo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/stdligo.h -------------------------------------------------------------------------------- /code/nel/src/ligo/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/transition.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/transition.h -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_bank.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_edge.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_edge.h -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_region.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_template.cpp -------------------------------------------------------------------------------- /code/nel/src/ligo/zone_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/ligo/zone_template.h -------------------------------------------------------------------------------- /code/nel/src/logic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/logic/logic_condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/logic_condition.cpp -------------------------------------------------------------------------------- /code/nel/src/logic/logic_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/logic_event.cpp -------------------------------------------------------------------------------- /code/nel/src/logic/logic_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/logic_state.cpp -------------------------------------------------------------------------------- /code/nel/src/logic/logic_state_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/logic_state_machine.cpp -------------------------------------------------------------------------------- /code/nel/src/logic/logic_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/logic/logic_variable.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/misc/aabbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/aabbox.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/algo.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/app_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/app_context.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/async_file_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/async_file_manager.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/base64.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/big_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/big_file.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bit_mem_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bit_mem_stream.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bit_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bit_set.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bitmap.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bitmap_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bitmap_jpeg.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bitmap_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bitmap_png.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/block_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/block_memory.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/bsphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/bsphere.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/buf_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/buf_fifo.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb_bank_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb_bank_handler.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb_branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb_branch.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb_check_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb_check_sum.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb_leaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb_leaf.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cdb_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cdb_manager.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/check_fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/check_fpu.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/class_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/class_id.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/class_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/class_registry.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/cmd_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cmd_args.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/co_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/co_task.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/command.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/common.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/cf_bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/cf_bison.simple -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/cf_flex.skl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/cf_flex.skl -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/cf_gramatical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/cf_gramatical.h -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/cf_lexical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/cf_lexical.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/cf_lexical.lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/cf_lexical.lpp -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/config_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/config_file.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/config_file/do.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/config_file/do.bat -------------------------------------------------------------------------------- /code/nel/src/misc/cpu_time_stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/cpu_time_stat.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/debug.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/diff_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/diff_tool.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/dummy_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/dummy_window.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/dynloadlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/dynloadlib.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/eid_translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/eid_translator.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/entity_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/entity_id.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/eval_num_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/eval_num_expr.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/event_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/event_emitter.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/event_emitter_multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/event_emitter_multi.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/event_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/event_listener.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/event_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/event_server.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/events.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/fast_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/fast_floor.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/fast_id_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/fast_id_map.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/fast_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/fast_mem.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/file.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/fixed_size_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/fixed_size_allocator.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/game_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/game_device.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/game_device_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/game_device_events.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/geom_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/geom_ext.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/grid_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/grid_traversal.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/gtk_displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/gtk_displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/heap_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/heap_memory.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/hierarchical_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/hierarchical_timer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/i18n.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/i_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/i_xml.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/input_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/input_device.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/input_device_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/input_device_server.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/inter_window_msg_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/inter_window_msg_queue.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/keyboard_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/keyboard_device.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/line.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/log.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/matrix.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/md5.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/mem_displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/mem_displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/mem_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/mem_stream.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/mouse_smoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/mouse_smoother.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/mutex.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/nel-misc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/nel-misc.pc -------------------------------------------------------------------------------- /code/nel/src/misc/nel-misc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/nel-misc.pc.in -------------------------------------------------------------------------------- /code/nel/src/misc/noise_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/noise_value.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/o_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/o_xml.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/object_arena_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/object_arena_allocator.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/object_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/object_vector.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/p_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/p_thread.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/path.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/plane.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/polygon.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/progress_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/progress_callback.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/quad.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/quat.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/reader_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/reader_writer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/rect.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/report.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/rgba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/rgba.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/sha1.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/shared_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/shared_memory.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/sheet_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/sheet_id.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/smart_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/smart_ptr.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/sstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/sstring.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/stdmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stdmisc.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/stdmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stdmisc.h -------------------------------------------------------------------------------- /code/nel/src/misc/stl_block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stl_block_allocator.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/stl_block_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stl_block_list.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/stop_watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stop_watch.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/stream.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/string_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/string_common.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/string_id_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/string_id_array.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/string_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/string_mapper.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/system_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/system_info.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/system_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/system_utils.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/task_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/task_manager.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/tds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/tds.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/time_nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/time_nl.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/triangle.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/unicode.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/uv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/uv.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/value_smoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/value_smoother.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/variable.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/vector.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/vector_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/vector_2d.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/vector_2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/vector_2f.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/vector_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/vector_h.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/vectord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/vectord.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/win32_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/win32_util.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/win_displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/win_displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/win_event_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/win_event_emitter.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/win_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/win_thread.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/win_tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/win_tray.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/window_displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/window_displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/words_dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/words_dictionary.cpp -------------------------------------------------------------------------------- /code/nel/src/misc/xml_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/misc/xml_pack.cpp -------------------------------------------------------------------------------- /code/nel/src/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/src/net/admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/admin.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_client.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_net_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_net_base.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_server.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_server_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_server_tcp.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_server_tcp_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_server_tcp_func.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_server_websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_server_websocket.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_server_websocket_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_server_websocket_func.cpp -------------------------------------------------------------------------------- /code/nel/src/net/buf_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/buf_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/callback_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/callback_client.cpp -------------------------------------------------------------------------------- /code/nel/src/net/callback_net_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/callback_net_base.cpp -------------------------------------------------------------------------------- /code/nel/src/net/callback_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/callback_server.cpp -------------------------------------------------------------------------------- /code/nel/src/net/callback_server_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/callback_server_tcp.cpp -------------------------------------------------------------------------------- /code/nel/src/net/callback_server_websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/callback_server_websocket.cpp -------------------------------------------------------------------------------- /code/nel/src/net/define_sys.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/define_sys.pb.cc -------------------------------------------------------------------------------- /code/nel/src/net/dummy_tcp_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/dummy_tcp_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/email.cpp -------------------------------------------------------------------------------- /code/nel/src/net/inet_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/inet_address.cpp -------------------------------------------------------------------------------- /code/nel/src/net/listen_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/listen_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/login_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/login_client.cpp -------------------------------------------------------------------------------- /code/nel/src/net/login_cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/login_cookie.cpp -------------------------------------------------------------------------------- /code/nel/src/net/login_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/login_server.cpp -------------------------------------------------------------------------------- /code/nel/src/net/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/message.cpp -------------------------------------------------------------------------------- /code/nel/src/net/message_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/message_recorder.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_common.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_gateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_gateway.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_gateway_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_gateway_transport.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_l5_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_l5_transport.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_local_gateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_local_gateway.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_manager.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_message.cpp -------------------------------------------------------------------------------- /code/nel/src/net/module_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/module_socket.cpp -------------------------------------------------------------------------------- /code/nel/src/net/naming_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/naming_client.cpp -------------------------------------------------------------------------------- /code/nel/src/net/nel-net.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/nel-net.pc.in -------------------------------------------------------------------------------- /code/nel/src/net/net_displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/net_displayer.cpp -------------------------------------------------------------------------------- /code/nel/src/net/net_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/net_log.cpp -------------------------------------------------------------------------------- /code/nel/src/net/net_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/net_manager.cpp -------------------------------------------------------------------------------- /code/nel/src/net/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/service.cpp -------------------------------------------------------------------------------- /code/nel/src/net/sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/stdin_monitor_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/stdin_monitor_thread.cpp -------------------------------------------------------------------------------- /code/nel/src/net/stdin_monitor_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/stdin_monitor_thread.h -------------------------------------------------------------------------------- /code/nel/src/net/stdnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/stdnet.cpp -------------------------------------------------------------------------------- /code/nel/src/net/stdnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/stdnet.h -------------------------------------------------------------------------------- /code/nel/src/net/tcp_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/tcp_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/transport_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/transport_class.cpp -------------------------------------------------------------------------------- /code/nel/src/net/udp_sim_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/udp_sim_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/udp_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/udp_sock.cpp -------------------------------------------------------------------------------- /code/nel/src/net/unified_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/unified_network.cpp -------------------------------------------------------------------------------- /code/nel/src/net/unitime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/unitime.cpp -------------------------------------------------------------------------------- /code/nel/src/net/varpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/src/net/varpath.cpp -------------------------------------------------------------------------------- /code/nel/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/CMakeLists.txt -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/__ligo_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/__ligo_class.xml -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/nel_unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/nel_unit_test.cpp -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/nel_unit_test.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/nel_unit_test.exp -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/result.html -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/run_test.bat -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_ligo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_ligo.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_co_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_co_task.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_command.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_debug.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_file.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_files/included_cfg.cfg: -------------------------------------------------------------------------------- 1 | 2 | IncludedCfg = "ok"; 3 | 4 | -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_sstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_sstring.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_stream.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_misc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_misc_types.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_net.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_net_layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_net_layer3.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_net_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_net_message.h -------------------------------------------------------------------------------- /code/nel/tools/nel_unit_test/ut_net_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nel/tools/nel_unit_test/ut_net_module.h -------------------------------------------------------------------------------- /code/nelDashBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nelDashBuild.cmd -------------------------------------------------------------------------------- /code/nelDashBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/nelDashBuild.sh -------------------------------------------------------------------------------- /code/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/code/revision.h.in -------------------------------------------------------------------------------- /tools/protobuf/JS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/JS/README.md -------------------------------------------------------------------------------- /tools/protobuf/JS/protobuf/protofile/hold: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/protobuf/JS/protobuf_gen_js.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/JS/protobuf_gen_js.bat -------------------------------------------------------------------------------- /tools/protobuf/define_attrib.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/define_attrib.proto -------------------------------------------------------------------------------- /tools/protobuf/define_pro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/define_pro.proto -------------------------------------------------------------------------------- /tools/protobuf/lua/protobuf_gen_lua.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/lua/protobuf_gen_lua.bat -------------------------------------------------------------------------------- /tools/protobuf/lua/protoc-3.2.0rc2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/lua/protoc-3.2.0rc2.exe -------------------------------------------------------------------------------- /tools/protobuf/msg_client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/msg_client.proto -------------------------------------------------------------------------------- /tools/protobuf/msg_doudizhu.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/msg_doudizhu.proto -------------------------------------------------------------------------------- /tools/protobuf/msg_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/protobuf/msg_service.proto -------------------------------------------------------------------------------- /tools/server/admin/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/common.php -------------------------------------------------------------------------------- /tools/server/admin/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/config.php -------------------------------------------------------------------------------- /tools/server/admin/crons/cron_harddisk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/crons/cron_harddisk.php -------------------------------------------------------------------------------- /tools/server/admin/crons/cron_harddisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/crons/cron_harddisk.sh -------------------------------------------------------------------------------- /tools/server/admin/crons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/H38.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/H38.css -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/Hd36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/Hd36.xml -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/Hf69.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/Hf69.htm -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/Hn68.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/Hn68.htm -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/Hu37.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/Hu37.js -------------------------------------------------------------------------------- /tools/server/admin/docs/shard_restart/Hz63.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/docs/shard_restart/Hz63.htm -------------------------------------------------------------------------------- /tools/server/admin/functions_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_auth.php -------------------------------------------------------------------------------- /tools/server/admin/functions_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_common.php -------------------------------------------------------------------------------- /tools/server/admin/functions_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_mysql.php -------------------------------------------------------------------------------- /tools/server/admin/functions_mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_mysqli.php -------------------------------------------------------------------------------- /tools/server/admin/functions_tool_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_tool_graphs.php -------------------------------------------------------------------------------- /tools/server/admin/functions_tool_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_tool_main.php -------------------------------------------------------------------------------- /tools/server/admin/functions_tool_mfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_tool_mfs.php -------------------------------------------------------------------------------- /tools/server/admin/functions_tool_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_tool_notes.php -------------------------------------------------------------------------------- /tools/server/admin/functions_tool_shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/functions_tool_shop.php -------------------------------------------------------------------------------- /tools/server/admin/graphs_output/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/server/admin/imgs/bg_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/bg_live.png -------------------------------------------------------------------------------- /tools/server/admin/imgs/getfirefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/getfirefox.png -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_admin.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_entity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_entity.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_graphs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_graphs.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_guild_locator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_guild_locator.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_log_analyser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_log_analyser.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_logout.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_main.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_notes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_notes.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_preferences.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_preferences.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/icon_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/icon_unknown.png -------------------------------------------------------------------------------- /tools/server/admin/imgs/nel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/nel.gif -------------------------------------------------------------------------------- /tools/server/admin/imgs/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/imgs/shop.png -------------------------------------------------------------------------------- /tools/server/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/index.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/flags.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/flags.dat -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/imgdata_balls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/imgdata_balls.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/imgdata_bevels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/imgdata_bevels.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/imgdata_squares.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/imgdata_squares.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/imgdata_stars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/imgdata_stars.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpg-config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpg-config.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_bar.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_canvas.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_date.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_error.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_flags.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_gantt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_gantt.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_gb2312.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_gb2312.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_line.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_log.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_pie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_pie.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_pie3d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_pie3d.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_polar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_polar.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_radar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_radar.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_regstat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_regstat.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_scatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_scatter.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_stock.php -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/jpgraph_utils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/jpgraph_utils.inc -------------------------------------------------------------------------------- /tools/server/admin/jpgraph/lang/en.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/jpgraph/lang/en.inc.php -------------------------------------------------------------------------------- /tools/server/admin/logs/empty.txt: -------------------------------------------------------------------------------- 1 | Empty file, just to keep directory alive! -------------------------------------------------------------------------------- /tools/server/admin/nel/nel_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/nel/nel_message.php -------------------------------------------------------------------------------- /tools/server/admin/neltool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/neltool.css -------------------------------------------------------------------------------- /tools/server/admin/overlib/handgrab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/overlib/handgrab.gif -------------------------------------------------------------------------------- /tools/server/admin/overlib/makemini.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/overlib/makemini.pl -------------------------------------------------------------------------------- /tools/server/admin/overlib/overlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/overlib/overlib.js -------------------------------------------------------------------------------- /tools/server/admin/overlib/overlib_mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/overlib/overlib_mini.js -------------------------------------------------------------------------------- /tools/server/admin/scripts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/server/admin/scripts/run_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/scripts/run_script.sh -------------------------------------------------------------------------------- /tools/server/admin/smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/smarty/Smarty.class.php -------------------------------------------------------------------------------- /tools/server/admin/smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/smarty/debug.tpl -------------------------------------------------------------------------------- /tools/server/admin/templates/default/page_footer_light.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/server/admin/templates/default_c/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/server/admin/tool_actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_actions.php -------------------------------------------------------------------------------- /tools/server/admin/tool_administration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_administration.php -------------------------------------------------------------------------------- /tools/server/admin/tool_event_entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_event_entities.php -------------------------------------------------------------------------------- /tools/server/admin/tool_graphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_graphs.php -------------------------------------------------------------------------------- /tools/server/admin/tool_guild_locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_guild_locator.php -------------------------------------------------------------------------------- /tools/server/admin/tool_log_analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_log_analyser.php -------------------------------------------------------------------------------- /tools/server/admin/tool_mfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_mfs.php -------------------------------------------------------------------------------- /tools/server/admin/tool_notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_notes.php -------------------------------------------------------------------------------- /tools/server/admin/tool_player_locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_player_locator.php -------------------------------------------------------------------------------- /tools/server/admin/tool_preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_preferences.php -------------------------------------------------------------------------------- /tools/server/admin/tool_shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/admin/tool_shop.php -------------------------------------------------------------------------------- /tools/server/sql/d_mt_account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/sql/d_mt_account.sql -------------------------------------------------------------------------------- /tools/server/sql/d_mt_player_procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/sql/d_mt_player_procedure.sql -------------------------------------------------------------------------------- /tools/server/sql/d_mt_player_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/sql/d_mt_player_table.sql -------------------------------------------------------------------------------- /tools/server/sql/nel_tool.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/sql/nel_tool.sql -------------------------------------------------------------------------------- /tools/server/www/login/code2accesstoken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/login/code2accesstoken.php -------------------------------------------------------------------------------- /tools/server/www/login/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/login/config.php -------------------------------------------------------------------------------- /tools/server/www/login/login_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/login/login_test.php -------------------------------------------------------------------------------- /tools/server/www/login/logs/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/server/www/login/pay_service_itf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/login/pay_service_itf.php -------------------------------------------------------------------------------- /tools/server/www/login/public_func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/login/public_func.php -------------------------------------------------------------------------------- /tools/server/www/tools/nel_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/server/www/tools/nel_message.php -------------------------------------------------------------------------------- /tools/xlsx2json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/LICENSE -------------------------------------------------------------------------------- /tools/xlsx2json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/README.md -------------------------------------------------------------------------------- /tools/xlsx2json/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/config.json -------------------------------------------------------------------------------- /tools/xlsx2json/excel/GameConfig.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/excel/GameConfig.xlsx -------------------------------------------------------------------------------- /tools/xlsx2json/export.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/export.bat -------------------------------------------------------------------------------- /tools/xlsx2json/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/export.sh -------------------------------------------------------------------------------- /tools/xlsx2json/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/index.js -------------------------------------------------------------------------------- /tools/xlsx2json/lib/xlsx-to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/lib/xlsx-to-json.js -------------------------------------------------------------------------------- /tools/xlsx2json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li9chuan/BaseService/HEAD/tools/xlsx2json/package.json --------------------------------------------------------------------------------